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