]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - xmppdaemon.php
restrict avatars to certain sizes in SQL
[quix0rs-gnu-social.git] / 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 function xmppdaemon_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
22     switch ($errno) {
23      case E_USER_ERROR:
24         echo "ERROR: [$errno] $errstr\n";
25         echo "  Fatal error on line $errline in file $errfile";
26         echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")\n";
27         echo "Aborting...\n";
28         exit(1);
29         break;
30         
31      case E_USER_WARNING:
32         echo "WARNING [$errno] $errstr\n";
33         break;
34         
35      case E_USER_NOTICE:
36         echo "My NOTICE [$errno] $errstr\n";
37         break;
38         
39      default:
40         echo "Unknown error type: [$errno] $errstr\n";
41         break;
42     }
43     
44     /* Don't execute PHP internal error handler */
45     return true;
46 }
47
48 set_error_handler('xmppdaemon_error_handler');
49
50 # Abort if called from a web server
51 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
52         print "This script must be run from the command line\n";
53         exit();
54 }
55
56 define('INSTALLDIR', dirname(__FILE__));
57 define('LACONICA', true);
58
59 require_once(INSTALLDIR . '/lib/common.php');
60 require_once(INSTALLDIR . '/lib/jabber.php');
61
62 # This is kind of clunky; we create a class to call the global functions
63 # in jabber.php, which create a new XMPP class. A more elegant (?) solution
64 # might be to use make this a subclass of XMPP.
65
66 class XMPPDaemon {
67
68         function XMPPDaemon($resource=NULL) {
69                 static $attrs = array('server', 'port', 'user', 'password', 'host');
70
71                 foreach ($attrs as $attr)
72                 {
73                         $this->$attr = common_config('xmpp', $attr);
74                 }
75
76                 if ($resource) {
77                         $this->resource = $resource;
78                 } else {
79                         $this->resource = common_config('xmpp', 'resource') . 'daemon';
80                 }
81
82                 $this->log(LOG_INFO, "{$this->user}@{$this->server}/{$this->resource}");
83         }
84
85         function connect() {
86
87                 $connect_to = ($this->host) ? $this->host : $this->server;
88
89                 $this->log(LOG_INFO, "Connecting to $connect_to on port $this->port");
90
91                 $this->conn = jabber_connect($this->resource);
92
93                 if (!$this->conn) {
94                         return false;
95                 }
96             
97                 return !$this->conn->isDisconnected();
98         }
99
100         function handle() {
101
102                 static $parts = array('message', 'presence',
103                                                           'end_stream', 'session_start');
104
105                 while(!$this->conn->isDisconnected()) {
106
107                         $payloads = $this->conn->processUntil($parts, 10);
108
109                         if ($payloads) {
110                                 foreach($payloads as $event) {
111                                         $pl = $event[1];
112                                         switch($event[0]) {
113                                          case 'message':
114                                                 $this->handle_message($pl);
115                                                 break;
116                                          case 'presence':
117                                                 $this->handle_presence($pl);
118                                                 break;
119                                          case 'session_start':
120                                                 $this->handle_session($pl);
121                                                 break;
122                                         }
123                                 }
124                         }
125
126                         $this->broadcast_queue();
127                         $this->confirmation_queue();
128                 }
129         }
130         
131         function handle_session($pl) {
132                 # XXX what to do here?
133                 return true;
134         }
135         
136         function get_user($from) {
137                 $user = User::staticGet('jabber', jabber_normalize_jid($from));
138                 return $user;
139         }
140
141         function get_confirmation($from) {
142                 $confirm = new Confirm_address();
143                 $confirm->address = $from;
144                 $confirm->address_type = 'jabber';
145                 if ($confirm->find(TRUE)) {
146                         return $confirm;
147                 } else {
148                         return NULL;
149                 }
150         }
151
152         function handle_message(&$pl) {
153                 if ($pl['type'] != 'chat') {
154                         return;
155                 }
156                 if (strlen($pl['body']) == 0) {
157                         return;
158                 }
159
160                 $from = jabber_normalize_jid($pl['from']);
161                 $user = $this->get_user($from);
162
163                 if (!$user) {
164                         $this->from_site($from, 'Unknown user; go to ' .
165                                                          common_local_url('imsettings') .
166                                                          ' to add your address to your account');
167                         $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
168                         return;
169                 }
170                 if ($this->handle_command($user, $pl['body'])) {
171                         return;
172                 } else if ($this->is_autoreply($pl['body'])) {
173                         $this->log(LOG_INFO, 'Ignoring auto reply from ' . $from);
174                         return;
175                 } else {
176                         $this->add_notice($user, $pl);
177                 }
178         }
179
180         function is_autoreply($txt) {
181                 if (preg_match('/[\[\(]?[Aa]uto-?[Rr]eply[\]\)]/', $txt)) {
182                         return true;
183                 } else {
184                         return false;
185                 }
186         }
187         
188         function from_site($address, $msg) {
189                 $text = '['.common_config('site', 'name') . '] ' . $msg;
190                 jabber_send_message($address, $text);
191         }
192
193         function handle_command($user, $body) {
194                 # XXX: localise
195                 switch(trim($body)) {
196                  case 'on':
197                         $this->set_notify($user, true);
198                         $this->from_site($user->jabber, 'notifications on');
199                         return true;
200                  case 'off':
201                         $this->set_notify($user, false);
202                         $this->from_site($user->jabber, 'notifications off');
203                         return true;
204                  default:
205                         return false;
206                 }
207         }
208
209         function set_notify(&$user, $notify) {
210                 $orig = clone($user);
211                 $user->jabbernotify = $notify;
212                 $result = $user->update($orig);
213                 if (!$id) {
214                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
215                         $this->log(LOG_ERROR,
216                                            'Could not set notify flag to ' . $notify .
217                                            ' for user ' . common_log_objstring($user) .
218                                            ': ' . $last_error->message);
219                 } else {
220                         $this->log(LOG_INFO,
221                                            'User ' . $user->nickname . ' set notify flag to ' . $notify);
222                 }
223         }
224
225         function add_notice(&$user, &$pl) {
226                 $notice = new Notice();
227                 $notice->profile_id = $user->id;
228                 $notice->content = trim(substr($pl['body'], 0, 140));
229                 $notice->rendered = common_render_content($notice->content, $notice);
230                 $notice->created = DB_DataObject_Cast::dateTime();
231                 $notice->query('BEGIN');
232                 $id = $notice->insert();
233                 if (!$id) {
234                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
235                         $this->log(LOG_ERROR,
236                                            'Could not insert ' . common_log_objstring($notice) .
237                                            ' for user ' . common_log_objstring($user) .
238                                            ': ' . $last_error->message);
239                         return;
240                 }
241                 $orig = clone($notice);
242                 $notice->uri = common_notice_uri($notice);
243                 $result = $notice->update($orig);
244                 if (!$result) {
245                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
246                         $this->log(LOG_ERROR,
247                                            'Could not add URI to ' . common_log_objstring($notice) .
248                                            ' for user ' . common_log_objstring($user) .
249                                            ': ' . $last_error->message);
250                         return;
251                 }
252                 $notice->query('COMMIT');
253         common_save_replies($notice);   
254                 common_real_broadcast($notice);
255                 $this->log(LOG_INFO,
256                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
257         }
258
259         function handle_presence(&$pl) {
260                 $from = jabber_normalize_jid($pl['from']);
261                 switch ($pl['type']) {
262                  case 'subscribe':
263                         # We let anyone subscribe
264                         $this->subscribed($from);
265                         $this->log(LOG_INFO,
266                                            'Accepted subscription from ' . $from);
267                         break;
268                  case 'subscribed':
269                  case 'unsubscribed':
270                  case 'unsubscribe':
271                         $this->log(LOG_INFO,
272                                            'Ignoring  "' . $pl['type'] . '" from ' . $from);
273                         break;
274                  default:
275                         if (!$pl['type']) {
276                                 $user = User::staticGet('jabber', $from);
277                                 if (!$user) {
278                                         $this->log(LOG_WARNING, 'Presence from unknown user ' . $from);
279                                         return;
280                                 }
281                                 if ($user->updatefrompresence) {
282                                         $this->log(LOG_INFO, 'Updating ' . $user->nickname .
283                                                            ' status from presence.');
284                                         $this->add_notice($user, $pl);
285                                 }
286                         }
287                         break;
288                 }
289         }
290
291         function log($level, $msg) {
292                 common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
293         }
294
295         function subscribed($to) {
296                 jabber_special_presence('subscribed', $to);
297         }
298
299         function set_status($status) {
300                 $this->log(LOG_INFO, 'Setting status to "' . $status . '"');
301                 jabber_send_presence($status);
302         }
303
304         function top_queue_item() {
305
306                 $qi = new Queue_item();
307                 $qi->orderBy('created');
308                 $qi->whereAdd('claimed is NULL');
309
310                 $qi->limit(1);
311
312                 $cnt = $qi->find(TRUE);
313
314                 if ($cnt) {
315                         # XXX: potential race condition
316                         # can we force it to only update if claimed is still NULL
317                         # (or old)?
318                         $this->log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id);
319                         $orig = clone($qi);
320                         $qi->claimed = DB_DataObject_Cast::dateTime();
321                         $result = $qi->update($orig);
322                         if ($result) {
323                                 $this->log(LOG_INFO, 'claim succeeded.');
324                                 return $qi;
325                         } else {
326                                 $this->log(LOG_INFO, 'claim failed.');
327                         }
328                 }
329                 $qi = NULL;
330                 return NULL;
331         }
332
333         function broadcast_queue() {
334                 $this->clear_old_claims();
335                 $this->log(LOG_INFO, 'checking for queued notices');
336                 do {
337                         $qi = $this->top_queue_item();
338                         if ($qi) {
339                                 $this->log(LOG_INFO, 'Got item enqueued '.common_exact_date($qi->created));
340                                 $notice = Notice::staticGet($qi->notice_id);
341                                 if ($notice) {
342                                         $this->log(LOG_INFO, 'broadcasting notice ID = ' . $notice->id);
343                                         # XXX: what to do if broadcast fails?
344                                         $result = common_real_broadcast($notice, $this->is_remote($notice));
345                                         if (!$result) {
346                                                 $this->log(LOG_WARNING, 'Failed broadcast for notice ID = ' . $notice->id);
347                                                 $orig = $qi;
348                                                 $qi->claimed = NULL;
349                                                 $qi->update($orig);
350                                                 $this->log(LOG_WARNING, 'Abandoned claim for notice ID = ' . $notice->id);
351                                                 continue;
352                                         }
353                                         $this->log(LOG_INFO, 'finished broadcasting notice ID = ' . $notice->id);
354                                         $notice = NULL;
355                                 } else {
356                                         $this->log(LOG_WARNING, 'queue item for notice that does not exist');
357                                 }
358                                 $qi->delete();
359                         }
360                 } while ($qi);
361         }
362
363         function clear_old_claims() {
364                 $qi = new Queue_item();
365                 $qi->claimed = NULL;
366                 $qi->whereAdd('now() - claimed > '.CLAIM_TIMEOUT);
367                 $qi->update(DB_DATAOBJECT_WHEREADD_ONLY);
368         }
369
370         function is_remote($notice) {
371                 $user = User::staticGet($notice->profile_id);
372                 return !$user;
373         }
374         
375         function confirmation_queue() {
376             # $this->clear_old_confirm_claims();
377                 $this->log(LOG_INFO, 'checking for queued confirmations');
378                 do {
379                         $confirm = $this->next_confirm();
380                         if ($confirm) {
381                                 $this->log(LOG_INFO, 'Sending confirmation for ' . $confirm->address);
382                                 $user = User::staticGet($confirm->user_id);
383                                 if (!$user) {
384                                         $this->log(LOG_WARNING, 'Confirmation for unknown user ' . $confirm->user_id);
385                                         continue;
386                                 }
387                                 $success = jabber_confirm_address($confirm->code,
388                                                                   $user->nickname,
389                                                                   $confirm->address);
390                                 if (!$success) {
391                                         $this->log(LOG_ERROR, 'Confirmation failed for ' . $confirm->address);
392                                         # Just let the claim age out; hopefully things work then
393                                         continue;
394                                 } else {
395                                         $this->log(LOG_INFO, 'Confirmation sent for ' . $confirm->address);
396                                         # Mark confirmation sent
397                                         $original = clone($confirm);
398                                         $confirm->sent = $confirm->claimed;
399                                         $result = $confirm->update($original);
400                                         if (!$result) {
401                                                 $this->log(LOG_ERROR, 'Cannot mark sent for ' . $confirm->address);
402                                                 # Just let the claim age out; hopefully things work then
403                                                 continue;
404                                         }
405                                 }
406                         }
407                 } while ($confirm);
408         }
409         
410         function next_confirm() {
411                 $confirm = new Confirm_address();
412                 $confirm->whereAdd('claimed IS NULL');
413                 $confirm->whereAdd('sent IS NULL');
414                 # XXX: eventually we could do other confirmations in the queue, too
415                 $confirm->address_type = 'jabber';
416                 $confirm->orderBy('modified DESC');
417                 $confirm->limit(1);
418                 if ($confirm->find(TRUE)) {
419                         $this->log(LOG_INFO, 'Claiming confirmation for ' . $confirm->address);
420                         # working around some weird DB_DataObject behaviour
421                         $confirm->whereAdd(''); # clears where stuff
422                         $original = clone($confirm);
423                         $confirm->claimed = DB_DataObject_Cast::dateTime();
424                         $result = $confirm->update($original);
425                         if ($result) {
426                                 $this->log(LOG_INFO, 'Succeeded in claim! '. $result);
427                                 return $confirm;
428                         } else {
429                                 $this->log(LOG_INFO, 'Failed in claim!');
430                                 return false;
431                         }
432                 }
433                 return NULL;
434         }
435         
436         function clear_old_confirm_claims() {
437                 $confirm = new Confirm();
438                 $confirm->claimed = NULL;
439                 $confirm->whereAdd('now() - claimed > '.CLAIM_TIMEOUT);
440                 $confirm->update(DB_DATAOBJECT_WHEREADD_ONLY);
441         }
442         
443 }
444
445 $resource = ($argc > 1) ? $argv[1] : NULL;
446
447 $daemon = new XMPPDaemon($resource);
448
449 if ($daemon->connect()) {
450         $daemon->set_status("Send me a message to post a notice");
451         $daemon->handle();
452 }
453
454 ?>