fixed module loading
[ZNCAdmin.git] / zncadmin / ZNCServerV1.class.php
1 <?php
2 /* ZNCServerV1.class.php - ZNC Server Class - ZNCAdmin
3  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
4  * 
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License 
16  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
17  */
18
19 $classinfo = array(
20         "name" => "ZNCServerV1",
21         "version" => 1.000,
22 );
23
24 class ZNCServerV1 {
25         private $host, $port;
26         private $connector;
27         
28         public function ZNCServerV1($host, $port, $connector = NULL) {
29                 $this->host = $host;
30                 $this->port = $port;
31                 if($connector == NULL)
32                         $connector = new HTTPConnector();
33                 $this->connector = $connector;
34         }
35
36     public function login($user, $pass) {
37         $post = array(
38             "user" => $user,
39             "pass" => $pass,
40             "submitted" => "1"
41         );
42         $this->connector->post("http://".$this->host.":".$this->port."/login", $post);
43         $http = $this->connector->get("http://".$this->host.":".$this->port."/?cookie_check=true");
44         $logged_in = !preg_match("/errorbar/i", $http);
45
46         return $logged_in;
47     }
48
49     public function getUserList() {
50         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/listusers");
51         $exp = explode('<div class="toptable">', $html);
52         $exp = explode('</div>', $exp[1]);
53         $exp = explode('<tbody>', $exp[0]);
54         $exp = explode('</tbody>', $exp[1]);
55         $list = explode('<tr class=', $exp[0]);
56         $userlist = array();
57         for($i = 1; $i < count($list); $i++) {
58             $userdata = array();
59             $exp = explode('<td>', $list[$i]);
60             $exp2 = explode('</td>', $exp[2]);
61             $userdata['user'] = $exp2[0];
62             $exp2 = explode('</td>', $exp[3]);
63             $userdata['server'] = $exp2[0];
64             $exp2 = explode('</td>', $exp[4]);
65             $userdata['clients'] = $exp2[0];
66             $userlist[] = $userdata;
67         }
68         return $userlist;
69     }
70
71     public function getSeenList() {
72         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/lastseen/");
73         $exp = explode('<div class="toptable">', $html);
74         $exp = explode('</div>', $exp[1]);
75         $exp = explode('<tbody>', $exp[0]);
76         $exp = explode('</tbody>', $exp[1]);
77         $list = explode('<tr class=', $exp[0]);
78         $seenlist = array();
79         for($i = 1; $i < count($list); $i++) {
80             $userdata = array();
81             $exp = explode('<td>', $list[$i]);
82
83             $exp2 = explode('</td>', $exp[1]);
84             $userdata['user'] = $exp2[0];
85             $exp2 = explode('</td>', $exp[2]);
86             $userdata['seen'] = $exp2[0];
87             $userdata['seen_unix'] = strtotime($exp2[0]);
88             $exp2 = explode('</td>', $exp[3]);
89             $userdata['info'] = $exp2[0];
90             $seenlist[] = $userdata;
91         }
92         return $seenlist;
93     }
94
95     /*
96     $settings array elements:
97         nick
98         altnick
99         ident
100     */
101     public function addZNC($username, $password, $settings, $servers, $modules, $netmodules, $others) {
102         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/adduser");
103         $exp = explode('name="_CSRF_Check" value="', $html);
104         $exp = explode('"', $exp[1]);
105         $csrf = $exp[0];
106         $post = array();
107         $post['_CSRF_Check'] = $csrf;
108         $post['submitted'] = '1';
109         //$post['doconnect'] = '1';
110         $post['user'] = $username;
111         $post['password'] = $password;
112         $post['password2'] = $password;
113         $post['nick'] = $settings['nick'];
114         $post['altnick'] = $settings['altnick'];
115         $post['ident'] = $settings['ident'];
116         $post['statusprefix'] = '*';
117         $post['loadmod'] = array();
118         foreach($modules as $name => $args) {
119             $post['loadmod'][] = $name;
120             if($args != "")
121                 $post['modargs_'.$name] = $args;
122         }
123
124         foreach($others as $name => $value) {
125             $post[$name] = $value;
126         }
127
128         $html = $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/adduser", $post);
129
130         if(!preg_match("/Invalid Submission/i", $html)) {
131             if(!$this->addNetwork($username, $settings, $servers, $netmodules, $others)) {
132                 return false;
133             }
134             return !preg_match("/Invalid Submission/i", $html);
135         }
136         return !preg_match("/Invalid Submission/i", $html);
137     }
138
139     public function addNetwork($username, $settings, $servers, $modules, $others) {
140         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/addnetwork?user=".$username);
141         $exp = explode('name="_CSRF_Check" value="', $html);
142         $exp = explode('"', $exp[1]);
143         $csrf = $exp[0];
144         $post = array();
145         $post['_CSRF_Check'] = $csrf;
146         $post['submitted'] = '1';
147         $post['network'] = 'default';
148         $post['nick'] = $settings['nick'];
149         $post['altnick'] = $settings['altnick'];
150         $post['ident'] = $settings['ident'];
151         $post['servers'] = implode("\n", $servers);
152         $post['doconnect'] = '1';
153         $post['floodprotection'] = '1';
154         $post['floodrate'] = '1.0';
155         $post['floodburst'] = '4';
156         $post['user'] = $username;
157                 
158                 $post['loadmod'] = array();
159         foreach($modules as $name => $args) {
160             $post['loadmod'][] = $name;
161             if($args != "")
162                 $post['modargs_'.$name] = $args;
163         }
164
165         foreach($others as $name => $value) {
166             $post[$name] = $value;
167         }
168
169         $html = $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/addnetwork", $post);
170         return !preg_match("/Invalid Submission/i", $html);
171     }
172
173     public function delZNC($username) {
174         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/deluser?user=".$username);
175         $exp = explode('name="_CSRF_Check" value="', $html);
176         $exp = explode('"', $exp[1]);
177         $csrf = $exp[0];
178         $post = array();
179         $post['_CSRF_Check'] = $csrf;
180         $post['submitted'] = '1';
181         $post['user'] = $username;
182         $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/deluser", $post);
183     }
184
185     private function parseHTMLFields($html, &$post) {
186         preg_match_all("<input ([^\>]*)>", $html, $matches);
187         foreach($matches[0] as $input) {
188             $fields = array(0 => "");
189             $esc = false; $str = false;
190             $fieldid = 0;
191             for($i = 0; $i < strlen($input); $i++) {
192                 if($esc) {
193                     $esc = false;
194                     $fields[$fieldid] .= $input[$i];
195                     continue;
196                 }
197                 if($input[$i] == "\\") {
198                     $esc = true;
199                 }
200                 if($input[$i] == "\"") {
201                     $str = !$str;
202                     continue;
203                 }
204                 if($input[$i] == " " && !$str) {
205                     $fields[++$fieldid] = "";
206                     continue;
207                 }
208                 $fields[$fieldid] .= $input[$i];
209             }
210             $cfields = array();
211             foreach($fields as $field) {
212                 $fieldexp = explode("=", $field, 2);
213                 if(count($fieldexp) != 2) continue;
214                 $cfields[$fieldexp[0]] = $fieldexp[1];
215             }
216             $name = $cfields['name'];
217             switch($cfields['type']) {
218                 case "text":
219                 case "hidden":
220                     $value = $cfields['value'];
221                     break;
222                 case "checkbox":
223                     if($cfields['checked']) {
224                         $value = ($cfields['value'] ? $cfields['value'] : "1");
225                     } else
226                         $value = null;
227                     break;
228                 default:
229                     $value = null;
230             }
231             if($name && $value) {
232                 if(array_key_exists($name, $post)) {
233                     if(!is_array($post[$name])) {
234                         $cvalue = $post[$name];
235                         $post[$name] = array();
236                         $post[$name][] = $cvalue;
237                     }
238                     $post[$name][] = $value;
239                 } else
240                     $post[$name] = $value;
241             }
242         }
243         //textareas
244         $textareas = explode("<textarea ", $html);
245         for($i = 1; $i < count($textareas); $i++) {
246             $exp = explode(">", $textareas[$i]);
247             $name = explode("name=\"", $exp[0]);
248             $name = explode("\"", $name[1]);
249             $name = $name[0];
250             $content = explode("</textarea", $exp[1]);
251             $content = $content[0];
252             $post[$name] = $content;
253         }
254         //select boxes
255         $selectboxes = explode("<select ", $html);
256         for($j = 1; $j < count($selectboxes); $j++) {
257             $exp = explode(">", $selectboxes[$j], 2);
258             $name = explode("name=\"", $exp[0]);
259             $name = explode("\"", $name[1]);
260             $name = $name[0];
261             $content = explode("</select", $exp[1]);
262             $content = $content[0];
263             preg_match_all("<option ([^\>]*)>", $content, $matches);
264             foreach($matches[0] as $input) {
265                 $fields = array(0 => "");
266                 $esc = false; $str = false;
267                 $fieldid = 0;
268                 for($i = 0; $i < strlen($input); $i++) {
269                     if($esc) {
270                         $esc = false;
271                         $fields[$fieldid] .= $input[$i];
272                         continue;
273                     }
274                     if($input[$i] == "\\") {
275                         $esc = true;
276                     }
277                     if($input[$i] == "\"") {
278                         $str = !$str;
279                         continue;
280                     }
281                     if($input[$i] == " " && !$str) {
282                         $fields[++$fieldid] = "";
283                         continue;
284                     }
285                     $fields[$fieldid] .= $input[$i];
286                 }
287                 $cfields = array();
288                 foreach($fields as $field) {
289                     $fieldexp = explode("=", $field, 2);
290                     if(count($fieldexp) != 2) continue;
291                     $cfields[$fieldexp[0]] = $fieldexp[1];
292                 }
293                 if(!$post[$name] || $cfields['selected']) {
294                     $post[$name] = $cfields['value'];
295                 }
296             }
297         }
298     }
299
300     public function editZNC($username, $password = NULL, $new_servers = NULL, $add_modules = NULL, $del_modules = NULL, $others = NULL) {
301         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/edituser?user=".$username);
302         if(preg_match("/No such username/i", $html)) return false;
303         $post = array();
304         $post['loadmod'] = array();
305         $this->parseHTMLFields($html, $post);
306         if($password) {
307             $post['password'] = $password;
308             $post['password2'] = $password;
309         }
310         if($new_servers) {
311             $post['servers'] = implode("\n", $new_servers);
312         }
313         if($add_modules) {
314             foreach($add_modules as $name => $args) {
315                 $post['loadmod'][] = $name;
316                 if($args != "")
317                     $post['modargs_'.$name] = $args;
318             }
319         }
320         if($del_modules) {
321             foreach($del_modules as $name => $args) {
322                 foreach($post['loadmod'] as $index => $mod) {
323                     if(strtolower($mod) == strtolower($name))
324                         unset($post['loadmod'][$index]);
325                 }
326             }
327         }
328         if($others) {
329             foreach($others as $name => $value) {
330                 $post[$name] = $value;
331             }
332         }
333         $html = $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/edituser?user=".$username, $post);
334         return !preg_match("/Invalid Submission/i", $html);
335     }
336
337     public function blockZNC($username, $block) {
338         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/edituser?user=".$username);
339         $handle = fopen('/home/srvx/neonserv/log.txt', 'a');
340         fwrite($handle, "$html\r\n");
341         fclose($handle);
342         if(preg_match("/No such username/i", $html)) return ERR_USER_NOT_FOUND;
343         $post = array();
344         $post['user'] = $username;
345         $post['loadmod'] = array();
346         $this->parseHTMLFields($html, $post);
347         if(!$post['embed_blockuser_presented']) return ERR_MODULE_NOT_FOUND;
348         if(!($post['embed_blockuser_block'] xor $block)) return ERR_OK;
349         $post['embed_blockuser_block'] = ($block ? "1" : null);
350         if(!$block) {
351             $post['doconnect'] = 1;
352         }
353         $html = $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/edituser", $post);
354         $handle = fopen('/home/srvx/neonserv/log.txt', 'a');
355         fwrite($handle, "$html\r\n");
356         fclose($handle);
357         return (preg_match("/Invalid Submission/i", $html) ? ERR_UNKNOWN : ERR_OK);
358     }
359
360     public function simulZNC($username, $raw, &$errmsg, $server = true) {
361         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/user/send_raw/");
362         if(preg_match("/Not Found/i", $html)) return ERR_MODULE_NOT_FOUND;
363         $exp = explode('name="_CSRF_Check" value="', $html);
364         $exp = explode('"', $exp[1]);
365         $csrf = $exp[0];
366         $post = array();
367         $post['_CSRF_Check'] = $csrf;
368         $post['submitted'] = '1';
369         $post['network'] = $username.'/default';
370         $post['send_to'] = ($server ? "server" : "client");
371         $post['line'] = $raw;
372         $html = $this->connector->post("http://".$this->host.":".$this->port."/mods/user/send_raw/", $post);
373         return ERR_OK;
374     }
375
376     public function addChan($username, $channel, $key = NULL, $buffer = NULL) {
377         $html = $this->connector->get("http://".$this->host.":".$this->port."/mods/global/webadmin/addchan?user=".$username.'&network=default');
378         if(preg_match("/No such username/i", $html)) return false;
379         $exp = explode('name="_CSRF_Check" value="', $html);
380         $exp = explode('"', $exp[1]);
381         $csrf = $exp[0];
382         $post = array();
383         $post['_CSRF_Check'] = $csrf;
384         $post['submitted'] = '1';
385         $post['network'] = 'default';
386         $post['user'] = $username;
387         $post['name'] = $channel;
388         $exp = explode('name="key" value="', $html);
389         $exp = explode('"', $exp[1]);
390         $default_key = $exp[0];
391         $post['key'] = ($key ? $key : $default_key);
392         $exp = explode('name="buffercount" value="', $html);
393         $exp = explode('"', $exp[1]);
394         $default_buffer = $exp[0];
395         $post['buffercount'] = ($buffer ? $buffer : $default_buffer);
396         $post['defmodes'] = '';
397         $post['save'] = 'true';
398         $post['autoclearchanbuffer'] = 'true';
399         $this->connector->post("http://".$this->host.":".$this->port."/mods/global/webadmin/addchan?user=".$username.'&network=default', $post);
400     }
401         
402 }
403
404 ?>