]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/xmppdaemon.php
less sleeping, slightly
[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, Controlez-Vous, 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 # Abort if called from a web server
22 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
23         print "This script must be run from the command line\n";
24         exit();
25 }
26
27 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
28 define('LACONICA', true);
29
30 require_once(INSTALLDIR . '/lib/common.php');
31 require_once(INSTALLDIR . '/lib/jabber.php');
32
33 set_error_handler('common_error_handler');
34
35 # This is kind of clunky; we create a class to call the global functions
36 # in jabber.php, which create a new XMPP class. A more elegant (?) solution
37 # might be to use make this a subclass of XMPP.
38
39 class XMPPDaemon {
40
41         function XMPPDaemon($resource=NULL) {
42                 static $attrs = array('server', 'port', 'user', 'password', 'host');
43
44                 foreach ($attrs as $attr)
45                 {
46                         $this->$attr = common_config('xmpp', $attr);
47                 }
48
49                 if ($resource) {
50                         $this->resource = $resource;
51                 } else {
52                         $this->resource = common_config('xmpp', 'resource') . 'daemon';
53                 }
54
55                 $this->log(LOG_INFO, "{$this->user}@{$this->server}/{$this->resource}");
56         }
57
58         function connect() {
59
60                 $connect_to = ($this->host) ? $this->host : $this->server;
61
62                 $this->log(LOG_INFO, "Connecting to $connect_to on port $this->port");
63
64                 $this->conn = jabber_connect($this->resource, "Send me a message to post a notice", 100);
65
66                 if (!$this->conn) {
67                         return false;
68                 }
69
70                 return !$this->conn->isDisconnected();
71         }
72
73         function handle() {
74                 $this->conn->addEventHandler('message', 'handle_message', $this);
75                 $this->conn->addEventHandler('presence', 'handle_presence', $this);
76
77                 $this->conn->process();
78         }
79
80         function get_user($from) {
81                 $user = User::staticGet('jabber', jabber_normalize_jid($from));
82                 return $user;
83         }
84
85         function handle_message(&$pl) {
86                 if ($pl['type'] != 'chat') {
87                         return;
88                 }
89                 if (mb_strlen($pl['body']) == 0) {
90                         return;
91                 }
92
93                 $from = jabber_normalize_jid($pl['from']);
94
95                 # Forwarded from another daemon (probably a broadcaster) for
96                 # us to handle
97
98                 if (preg_match('/^'.strtolower(jabber_daemon_address()).'/', strtolower($from))) {
99                         $from = $this->get_ofrom($pl);
100                         if (is_null($from)) {
101                                 return;
102                         }
103                 }
104
105                 $user = $this->get_user($from);
106
107                 if (!$user) {
108                         $this->from_site($from, 'Unknown user; go to ' .
109                                                          common_local_url('imsettings') .
110                                                          ' to add your address to your account');
111                         $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
112                         return;
113                 }
114                 if ($this->handle_command($user, $pl['body'])) {
115                         return;
116                 } else if ($this->is_autoreply($pl['body'])) {
117                         $this->log(LOG_INFO, 'Ignoring auto reply from ' . $from);
118                         return;
119                 } else if ($this->is_otr($pl['body'])) {
120                         $this->log(LOG_INFO, 'Ignoring OTR from ' . $from);
121                         return;
122                 } else {
123                         $len = mb_strlen($pl['body']);
124                         if($len > 140) {
125                                 $this->from_site($from, 'Message too long - maximum is 140 characters, you sent ' . $len);
126                                 return;
127                         }
128                         $this->add_notice($user, $pl);
129                 }
130         }
131
132         function get_ofrom($pl) {
133                 $xml = $pl['raw'];
134                 $addresses = $xml->sub('addresses');
135                 if (!$addresses) {
136                         $this->log(LOG_WARNING, 'Forwarded message without addresses');
137                         return NULL;
138                 }
139                 $address = $addresses->sub('address');
140                 if (!$address) {
141                         $this->log(LOG_WARNING, 'Forwarded message without address');
142                         return NULL;
143                 }
144                 if (!array_key_exists('type', $address->attrs)) {
145                         $this->log(LOG_WARNING, 'No type for forwarded message');
146                         return NULL;
147                 }
148                 $type = $address->attrs['type'];
149                 if ($type != 'ofrom') {
150                         $this->log(LOG_WARNING, 'Type of forwarded message is not ofrom');
151                         return NULL;
152                 }
153                 if (!array_key_exists('jid', $address->attrs)) {
154                         $this->log(LOG_WARNING, 'No jid for forwarded message');
155                         return NULL;
156                 }
157                 $jid = $address->attrs['jid'];
158                 if (!$jid) {
159                         $this->log(LOG_WARNING, 'Could not get jid from address');
160                         return NULL;
161                 }
162                 $this->log(LOG_DEBUG, 'Got message forwarded from jid ' . $jid);
163                 return $jid;
164         }
165
166         function is_autoreply($txt) {
167                 if (preg_match('/[\[\(]?[Aa]uto-?[Rr]eply[\]\)]/', $txt)) {
168                         return true;
169                 } else {
170                         return false;
171                 }
172         }
173
174         function is_otr($txt) {
175                 if (preg_match('/^\?OTR/', $txt)) {
176                         return true;
177                 } else {
178                         return false;
179                 }
180         }
181
182         function from_site($address, $msg) {
183                 $text = '['.common_config('site', 'name') . '] ' . $msg;
184                 jabber_send_message($address, $text);
185         }
186
187         function handle_command($user, $body) {
188                 # XXX: localise
189                 $p=explode(' ',$body);
190                 if(count($p)>2)
191                         return false;
192                 switch($p[0]) {
193                  case 'help':
194                         if(count($p)!=1)
195                                 return false;
196                         $this->from_site($user->jabber, "Commands:\n on     - turn on notifications\n off    - turn off notifications\n help   - show this help \n sub - subscribe to user\n unsub - unsubscribe from user");
197                         return true;
198                  case 'on':
199                         if(count($p)!=1)
200                                 return false;
201                         $this->set_notify($user, true);
202                         $this->from_site($user->jabber, 'notifications on');
203                         return true;
204                  case 'off':
205                         if(count($p)!=1)
206                                 return false;
207                         $this->set_notify($user, false);
208                         $this->from_site($user->jabber, 'notifications off');
209                         return true;
210                  case 'sub':
211                         if(count($p)==1) {
212                                 $this->from_site($user->jabber, 'Specify the name of the user to subscribe to');
213                                 return true;
214                         }
215                         $result=subs_subscribe_user($user, $p[1]);
216                         if($result=='true')
217                                 $this->from_site($user->jabber, 'Subscribed to ' . $p[1]);
218                         else
219                                 $this->from_site($user->jabber, $result);
220                         return true;
221                  case 'unsub':
222                         if(count($p)==1) {
223                                 $this->from_site($user->jabber, 'Specify the name of the user to unsubscribe from');
224                                 return true;
225                         }
226                         $result=subs_unsubscribe_user($user, $p[1]);
227                         if($result=='true')
228                                 $this->from_site($user->jabber, 'Unsubscribed from ' . $p[1]);
229                         else
230                                 $this->from_site($user->jabber, $result);
231                         return true;
232                  default:
233                         return false;
234                 }
235         }
236
237         function set_notify(&$user, $notify) {
238                 $orig = clone($user);
239                 $user->jabbernotify = $notify;
240                 $result = $user->update($orig);
241                 if (!$result) {
242                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
243                         $this->log(LOG_ERR,
244                                            'Could not set notify flag to ' . $notify .
245                                            ' for user ' . common_log_objstring($user) .
246                                            ': ' . $last_error->message);
247                 } else {
248                         $this->log(LOG_INFO,
249                                            'User ' . $user->nickname . ' set notify flag to ' . $notify);
250                 }
251         }
252
253         function add_notice(&$user, &$pl) {
254                 $notice = Notice::saveNew($user->id, trim(mb_substr($pl['body'], 0, 140)), 'xmpp');
255                 if (is_string($notice)) {
256                         $this->log(LOG_ERR, $notice);
257                         return;
258                 }
259                 common_broadcast_notice($notice);
260                 $this->log(LOG_INFO,
261                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
262         }
263
264         function handle_presence(&$pl) {
265                 $from = jabber_normalize_jid($pl['from']);
266                 switch ($pl['type']) {
267                  case 'subscribe':
268                         # We let anyone subscribe
269                         $this->subscribed($from);
270                         $this->log(LOG_INFO,
271                                            'Accepted subscription from ' . $from);
272                         break;
273                  case 'subscribed':
274                  case 'unsubscribed':
275                  case 'unsubscribe':
276                         $this->log(LOG_INFO,
277                                            'Ignoring  "' . $pl['type'] . '" from ' . $from);
278                         break;
279                  default:
280                         if (!$pl['type']) {
281                                 $user = User::staticGet('jabber', $from);
282                                 if (!$user) {
283                                         $this->log(LOG_WARNING, 'Presence from unknown user ' . $from);
284                                         return;
285                                 }
286                                 if ($user->updatefrompresence) {
287                                         $this->log(LOG_INFO, 'Updating ' . $user->nickname .
288                                                            ' status from presence.');
289                                         $this->add_notice($user, $pl);
290                                 }
291                         }
292                         break;
293                 }
294         }
295
296         function log($level, $msg) {
297                 common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
298         }
299
300         function subscribed($to) {
301                 jabber_special_presence('subscribed', $to);
302         }
303 }
304
305 mb_internal_encoding('UTF-8');
306
307 $resource = ($argc > 1) ? $argv[1] : (common_config('xmpp','resource') . '-listen');
308
309 $daemon = new XMPPDaemon($resource);
310
311 if ($daemon->connect()) {
312         $daemon->handle();
313 }