Pascal Dreissen
2016-07-08 a481a62a13c241df0b3269f7f915789f4451d51b
commit | author | age
9f94a1 1 <?php
MF 2
3 /*
4 Copyright (c) 2007, Till Brehm, projektfarm Gmbh
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 class xmpp_module {
32
33     var $module_name = 'xmpp_module';
34     var $class_name = 'xmpp_module';
35     var $actions_available = array(
36         'xmpp_domain_insert',
37         'xmpp_domain_update',
38         'xmpp_domain_delete',
39         'xmpp_user_insert',
40         'xmpp_user_update',
41         'xmpp_user_delete'
42     );
43
44     //* This function is called during ispconfig installation to determine
45     //  if a symlink shall be created for this plugin.
46     function onInstall() {
47         global $conf;
48
49         if($conf['services']['xmpp'] == true) {
50             return true;
51         } else {
52             return false;
53         }
54
55     }
56
57     /*
58          This function is called when the module is loaded
59     */
60
61     function onLoad() {
62         global $app;
63
64         /*
65         Annonce the actions that where provided by this module, so plugins
66         can register on them.
67         */
68
69         $app->plugins->announceEvents($this->module_name, $this->actions_available);
70
71         /*
72         As we want to get notified of any changes on several database tables,
73         we register for them.
74
75         The following function registers the function "functionname"
76          to be executed when a record for the table "dbtable" is
77          processed in the sys_datalog. "classname" is the name of the
78          class that contains the function functionname.
79         */
80
81         $app->modules->registerTableHook('xmpp_domain', 'xmpp_module', 'process');
f52de0 82         $app->services->registerService('metronome', 'xmpp_module', 'reloadXMPP');
MF 83         $app->services->registerService('metronome', 'xmpp_module', 'restartXMPP');
9f94a1 84
MF 85     }
86
87     /*
88      This function is called when a change in one of the registered tables is detected.
89      The function then raises the events for the plugins.
90     */
91
92     function process($tablename, $action, $data) {
93         global $app;
94
95         switch ($tablename) {
96             case 'xmpp_domain':
97                 if($action == 'i') $app->plugins->raiseEvent('xmpp_domain_insert', $data);
98                 if($action == 'u') $app->plugins->raiseEvent('xmpp_domain_update', $data);
99                 if($action == 'd') $app->plugins->raiseEvent('xmpp_domain_delete', $data);
100                 break;
101             case 'xmpp_user':
102                 if($action == 'i') $app->plugins->raiseEvent('xmpp_user_insert', $data);
103                 if($action == 'u') $app->plugins->raiseEvent('xmpp_user_update', $data);
104                 if($action == 'd') $app->plugins->raiseEvent('xmpp_user_delete', $data);
105                 break;
106         } // end switch
107     } // end function
108
f52de0 109
MF 110     function restartXMPP($action = 'restart') {
111         global $app, $conf;
112
113         // load the server configuration options
114         $app->uses('getconf,system');
115
116         $daemon = 'metronome';
117
118         $retval = array('output' => '', 'retval' => 0);
119         if($action == 'restart') {
120             $cmd = $app->system->getinitcommand($daemon, 'restart');
121         } else {
122             $cmd = $app->system->getinitcommand($daemon, 'reload');
123         }
124         exec($cmd.' 2>&1', $retval['output'], $retval['retval']);
125         $app->log("Restarting xmpp: $cmd", LOGLEVEL_DEBUG);
126         return $retval;
127     }
9f94a1 128 } // end class
MF 129
130 ?>