]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/xmppdaemon.php
correctly check for max notice length in xmppdaemon
[quix0rs-gnu-social.git] / scripts / xmppdaemon.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * Laconica - a distributed open-source microblogging tool
5  * Copyright (C) 2008, 2009, Control Yourself, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
22
23 $shortoptions = 'fi::';
24 $longoptions = array('id::', 'foreground');
25
26 $helptext = <<<END_OF_XMPP_HELP
27 Daemon script for receiving new notices from Jabber users.
28
29     -i --id           Identity (default none)
30     -f --foreground   Stay in the foreground (default background)
31
32 END_OF_XMPP_HELP;
33
34 require_once INSTALLDIR.'/scripts/commandline.inc';
35
36 require_once INSTALLDIR . '/lib/common.php';
37 require_once INSTALLDIR . '/lib/jabber.php';
38 require_once INSTALLDIR . '/lib/daemon.php';
39
40 # This is kind of clunky; we create a class to call the global functions
41 # in jabber.php, which create a new XMPP class. A more elegant (?) solution
42 # might be to use make this a subclass of XMPP.
43
44 class XMPPDaemon extends Daemon
45 {
46     function __construct($resource=null, $daemonize=true)
47     {
48         parent::__construct($daemonize);
49
50         static $attrs = array('server', 'port', 'user', 'password', 'host');
51
52         foreach ($attrs as $attr)
53         {
54             $this->$attr = common_config('xmpp', $attr);
55         }
56
57         if ($resource) {
58             $this->resource = $resource . 'daemon';
59         } else {
60             $this->resource = common_config('xmpp', 'resource') . 'daemon';
61         }
62
63         $this->jid = $this->user.'@'.$this->server.'/'.$this->resource;
64
65         $this->log(LOG_INFO, "INITIALIZE XMPPDaemon {$this->jid}");
66     }
67
68     function connect()
69     {
70         $connect_to = ($this->host) ? $this->host : $this->server;
71
72         $this->log(LOG_INFO, "Connecting to $connect_to on port $this->port");
73
74         $this->conn = jabber_connect($this->resource);
75
76         if (!$this->conn) {
77             return false;
78         }
79
80         $this->log(LOG_INFO, "Connected");
81
82         $this->conn->setReconnectTimeout(600);
83
84         $this->log(LOG_INFO, "Sending initial presence.");
85
86         jabber_send_presence("Send me a message to post a notice", 'available',
87                              null, 'available', 100);
88
89         $this->log(LOG_INFO, "Done connecting.");
90
91         return !$this->conn->isDisconnected();
92     }
93
94     function name()
95     {
96         return strtolower('xmppdaemon.'.$this->resource);
97     }
98
99     function run()
100     {
101         if ($this->connect()) {
102
103             $this->log(LOG_DEBUG, "Initializing stanza handlers.");
104
105             $this->conn->addEventHandler('message', 'handle_message', $this);
106             $this->conn->addEventHandler('presence', 'handle_presence', $this);
107             $this->conn->addEventHandler('reconnect', 'handle_reconnect', $this);
108
109             $this->log(LOG_DEBUG, "Beginning processing loop.");
110
111             while ($this->conn->processTime(60)) {
112                 $this->sendPing();
113             }
114         }
115     }
116
117     function sendPing()
118     {
119         if (!isset($this->pingid)) {
120             $this->pingid = 0;
121         } else {
122             $this->pingid++;
123         }
124
125         $this->log(LOG_DEBUG, "Sending ping #{$this->pingid}");
126
127                 $this->conn->send("<iq from='{$this->jid}' to='{$this->server}' id='ping_{$this->pingid}' type='get'><ping xmlns='urn:xmpp:ping'/></iq>");
128     }
129
130     function handle_reconnect(&$pl)
131     {
132         $this->log(LOG_DEBUG, "Got reconnection callback.");
133         $this->conn->processUntil('session_start');
134         $this->log(LOG_DEBUG, "Sending reconnection presence.");
135         $this->conn->presence('Send me a message to post a notice', 'available', null, 'available', 100);
136         unset($pl['xml']);
137         $pl['xml'] = null;
138
139         $pl = null;
140         unset($pl);
141     }
142
143     function get_user($from)
144     {
145         $user = User::staticGet('jabber', jabber_normalize_jid($from));
146         return $user;
147     }
148
149     function handle_message(&$pl)
150     {
151         $from = jabber_normalize_jid($pl['from']);
152
153         if ($pl['type'] != 'chat') {
154             $this->log(LOG_WARNING, "Ignoring message of type ".$pl['type']." from $from.");
155             return;
156         }
157
158         if (mb_strlen($pl['body']) == 0) {
159             $this->log(LOG_WARNING, "Ignoring message with empty body from $from.");
160             return;
161         }
162
163         # Forwarded from another daemon (probably a broadcaster) for
164         # us to handle
165
166         if ($this->is_self($from)) {
167             $this->log(LOG_INFO, "Got forwarded notice from self ($from).");
168             $from = $this->get_ofrom($pl);
169             $this->log(LOG_INFO, "Originally sent by $from.");
170             if (is_null($from) || $this->is_self($from)) {
171                 $this->log(LOG_INFO, "Ignoring notice originally sent by $from.");
172                 return;
173             }
174         }
175
176         $user = $this->get_user($from);
177
178         // For common_current_user to work
179         global $_cur;
180         $_cur = $user;
181
182         if (!$user) {
183             $this->from_site($from, 'Unknown user; go to ' .
184                              common_local_url('imsettings') .
185                              ' to add your address to your account');
186             $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
187             return;
188         }
189         if ($this->handle_command($user, $pl['body'])) {
190             $this->log(LOG_INFO, "Command messag by $from handled.");
191             return;
192         } else if ($this->is_autoreply($pl['body'])) {
193             $this->log(LOG_INFO, 'Ignoring auto reply from ' . $from);
194             return;
195         } else if ($this->is_otr($pl['body'])) {
196             $this->log(LOG_INFO, 'Ignoring OTR from ' . $from);
197             return;
198         } else if ($this->is_direct($pl['body'])) {
199             $this->log(LOG_INFO, 'Got a direct message ' . $from);
200
201             preg_match_all('/d[\ ]*([a-z0-9]{1,64})/', $pl['body'], $to);
202
203             $to = preg_replace('/^d([\ ])*/', '', $to[0][0]);
204             $body = preg_replace('/d[\ ]*('. $to .')[\ ]*/', '', $pl['body']);
205
206             $this->log(LOG_INFO, 'Direct message from '. $user->nickname . ' to ' . $to);
207
208             $this->add_direct($user, $body, $to, $from);
209         } else {
210
211             $this->log(LOG_INFO, 'Posting a notice from ' . $user->nickname);
212
213             $this->add_notice($user, $pl);
214         }
215
216         $user->free();
217         unset($user);
218         unset($_cur);
219
220         unset($pl['xml']);
221         $pl['xml'] = null;
222
223         $pl = null;
224         unset($pl);
225     }
226
227     function is_self($from)
228     {
229         return preg_match('/^'.strtolower(jabber_daemon_address()).'/', strtolower($from));
230     }
231
232     function get_ofrom($pl)
233     {
234         $xml = $pl['xml'];
235         $addresses = $xml->sub('addresses');
236         if (!$addresses) {
237             $this->log(LOG_WARNING, 'Forwarded message without addresses');
238             return null;
239         }
240         $address = $addresses->sub('address');
241         if (!$address) {
242             $this->log(LOG_WARNING, 'Forwarded message without address');
243             return null;
244         }
245         if (!array_key_exists('type', $address->attrs)) {
246             $this->log(LOG_WARNING, 'No type for forwarded message');
247             return null;
248         }
249         $type = $address->attrs['type'];
250         if ($type != 'ofrom') {
251             $this->log(LOG_WARNING, 'Type of forwarded message is not ofrom');
252             return null;
253         }
254         if (!array_key_exists('jid', $address->attrs)) {
255             $this->log(LOG_WARNING, 'No jid for forwarded message');
256             return null;
257         }
258         $jid = $address->attrs['jid'];
259         if (!$jid) {
260             $this->log(LOG_WARNING, 'Could not get jid from address');
261             return null;
262         }
263         $this->log(LOG_DEBUG, 'Got message forwarded from jid ' . $jid);
264         return $jid;
265     }
266
267     function is_autoreply($txt)
268     {
269         if (preg_match('/[\[\(]?[Aa]uto[-\s]?[Rr]e(ply|sponse)[\]\)]/', $txt)) {
270             return true;
271         } else if (preg_match('/^System: Message wasn\'t delivered. Offline storage size was exceeded.$/', $txt)) {
272             return true;
273         } else {
274             return false;
275         }
276     }
277
278     function is_otr($txt)
279     {
280         if (preg_match('/^\?OTR/', $txt)) {
281             return true;
282         } else {
283             return false;
284         }
285     }
286
287     function is_direct($txt)
288     {
289         if (strtolower(substr($txt, 0, 2))=='d ') {
290             return true;
291         } else {
292             return false;
293         }
294     }
295
296     function from_site($address, $msg)
297     {
298         $text = '['.common_config('site', 'name') . '] ' . $msg;
299         jabber_send_message($address, $text);
300     }
301
302     function handle_command($user, $body)
303     {
304         $inter = new CommandInterpreter();
305         $cmd = $inter->handle_command($user, $body);
306         if ($cmd) {
307             $chan = new XMPPChannel($this->conn);
308             $cmd->execute($chan);
309             return true;
310         } else {
311             return false;
312         }
313     }
314
315     function add_notice(&$user, &$pl)
316     {
317         $body = trim($pl['body']);
318         $content_shortened = common_shorten_links($body);
319         if (Notice::contentTooLong($content_shortened)) {
320           $from = jabber_normalize_jid($pl['from']);
321           $this->from_site($from, sprintf(_("Message too long - maximum is %d characters, you sent %d"),
322                                           Notice::maxContent(),
323                                           mb_strlen($content_shortened)));
324           return;
325         }
326         $notice = Notice::saveNew($user->id, $content_shortened, 'xmpp');
327         if (is_string($notice)) {
328             $this->log(LOG_ERR, $notice);
329             $this->from_site($user->jabber, $notice);
330             return;
331         }
332         common_broadcast_notice($notice);
333         $this->log(LOG_INFO,
334                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
335         $notice->free();
336         unset($notice);
337     }
338
339     function handle_presence(&$pl)
340     {
341         $from = jabber_normalize_jid($pl['from']);
342         switch ($pl['type']) {
343          case 'subscribe':
344             # We let anyone subscribe
345             $this->subscribed($from);
346             $this->log(LOG_INFO,
347                        'Accepted subscription from ' . $from);
348             break;
349          case 'subscribed':
350          case 'unsubscribed':
351          case 'unsubscribe':
352             $this->log(LOG_INFO,
353                        'Ignoring  "' . $pl['type'] . '" from ' . $from);
354             break;
355          default:
356             if (!$pl['type']) {
357                 $user = User::staticGet('jabber', $from);
358                 if (!$user) {
359                     $this->log(LOG_WARNING, 'Presence from unknown user ' . $from);
360                     return;
361                 }
362                 if ($user->updatefrompresence) {
363                     $this->log(LOG_INFO, 'Updating ' . $user->nickname .
364                                ' status from presence.');
365                     $this->add_notice($user, $pl);
366                 }
367                 $user->free();
368                 unset($user);
369             }
370             break;
371         }
372         unset($pl['xml']);
373         $pl['xml'] = null;
374
375         $pl = null;
376         unset($pl);
377     }
378
379     function log($level, $msg)
380     {
381         $text = 'XMPPDaemon('.$this->resource.'): '.$msg;
382         common_log($level, $text);
383         if (!$this->daemonize)
384         {
385             $line = common_log_line($level, $text);
386             echo $line;
387             echo "\n";
388         }
389     }
390
391     function subscribed($to)
392     {
393         jabber_special_presence('subscribed', $to);
394     }
395 }
396
397 // Abort immediately if xmpp is not enabled, otherwise the daemon chews up
398 // lots of CPU trying to connect to unconfigured servers
399 if (common_config('xmpp','enabled')==false) {
400     print "Aborting daemon - xmpp is disabled\n";
401     exit();
402 }
403
404 if (have_option('i', 'id')) {
405     $id = get_option_value('i', 'id');
406 } else if (count($args) > 0) {
407     $id = $args[0];
408 } else {
409     $id = null;
410 }
411
412 $foreground = have_option('f', 'foreground');
413
414 $daemon = new XMPPDaemon($id, !$foreground);
415
416 $daemon->runOnce();