]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - xmppdaemon.php
afe248c8e4f2fa4394cef43d3325032a0a93dd8a
[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                 $connect_to = ($this->host) ? $this->host : $this->server;
58
59                 $this->log(LOG_INFO, "Connecting to $connect_to on port $this->port");
60
61                 $this->conn = jabber_connect($this->resource);
62
63                 if (!$this->conn) {
64                         return false;
65                 }
66                 return !$this->conn->disconnected;
67         }
68
69         function handle() {
70                 while(!$this->conn->disconnected) {
71                         $payloads = $this->conn->processUntil(array('message', 'presence',
72                                                                                                                 'end_stream', 'session_start'));
73                         foreach($payloads as $event) {
74                                 $pl = $event[1];
75                                 $this->log(LOG_DEBUG, "Received '$event[0]': " . print_r($pl, TRUE));
76                                 switch($event[0]) {
77                                  case 'message':
78                                         $this->handle_message($pl);
79                                         break;
80                                  case 'presence':
81                                         $this->handle_presence($pl);
82                                         break;
83                                  case 'session_start':
84                                         $this->handle_session($pl);
85                                         break;
86                                 }
87                         }
88                 }
89         }
90
91         function get_user($from) {
92                 $user = User::staticGet('jabber', jabber_normalize_jid($from));
93                 return $user;
94         }
95
96         function get_confirmation($from) {
97                 $confirm = new Confirm_address();
98                 $confirm->address = $from;
99                 $confirm->address_type = 'jabber';
100                 if ($confirm->find(TRUE)) {
101                         return $confirm;
102                 } else {
103                         return NULL;
104                 }
105         }
106
107         function handle_message(&$pl) {
108                 if ($pl['type'] != 'chat') {
109                         return;
110                 }
111                 if (strlen($pl['body']) == 0) {
112                         return;
113                 }
114
115                 $from = jabber_normalize_jid($pl['from']);
116                 $user = $this->get_user($from);
117
118                 if (!$user) {
119                         $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
120                         return;
121                 }
122                 if ($this->handle_command($user, $pl['body'])) {
123                         return;
124                 } else {
125                         $this->add_notice($user, $pl);
126                 }
127         }
128
129         function handle_command($user, $body) {
130                 # XXX: localise
131                 switch(trim($body)) {
132                  case 'on':
133                         $this->set_notify($user, true);
134                         return true;
135                  case 'off':
136                         $this->set_notify($user, false);
137                         return true;
138                  default:
139                         return false;
140                 }
141         }
142
143         function set_notify(&$user, $notify) {
144                 $orig = clone($user);
145                 $user->jabbernotify = $notify;
146                 $result = $user->update($orig);
147                 if (!$id) {
148                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
149                         $this->log(LOG_ERROR,
150                                            'Could not set notify flag to ' . $notify .
151                                            ' for user ' . common_log_objstring($user) .
152                                            ': ' . $last_error->message);
153                 } else {
154                         $this->log(LOG_INFO,
155                                            'User ' . $user->nickname . ' set notify flag to ' . $notify);
156                 }
157         }
158
159         function add_notice(&$user, &$pl) {
160                 $notice = new Notice();
161                 $notice->profile_id = $user->id;
162                 $notice->content = trim(substr($pl['body'], 0, 140));
163                 $notice->created = DB_DataObject_Cast::dateTime();
164                 $notice->query('BEGIN');
165                 $id = $notice->insert();
166                 if (!$id) {
167                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
168                         $this->log(LOG_ERROR,
169                                            'Could not insert ' . common_log_objstring($notice) .
170                                            ' for user ' . common_log_objstring($user) .
171                                            ': ' . $last_error->message);
172                         return;
173                 }
174                 $orig = clone($notice);
175                 $notice->uri = common_notice_uri($notice);
176                 $result = $notice->update($orig);
177                 if (!$result) {
178                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
179                         $this->log(LOG_ERROR,
180                                            'Could not add URI to ' . common_log_objstring($notice) .
181                                            ' for user ' . common_log_objstring($user) .
182                                            ': ' . $last_error->message);
183                         return;
184                 }
185                 $notice->query('COMMIT');
186                 common_broadcast_notice($notice);
187                 $this->log(LOG_INFO,
188                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
189         }
190
191         function handle_presence(&$pl) {
192                 $from = jabber_normalize_jid($pl['from']);
193                 switch ($pl['type']) {
194                         case 'subscribe':
195                             # We let anyone subscribe
196                                 $this->subscribed($from);
197                                 $this->log(LOG_INFO,
198                                    'Accepted subscription from ' . $from);
199                                 break;
200                         case 'subscribed':
201                         case 'unsubscribed':
202                         case 'unsubscribe':
203                                 $this->log(LOG_INFO,
204                                    'Ignoring  "' . $pl['type'] . '" from ' . $from);
205                                 break;
206                         default:
207                                 if (!$pl['type']) {
208                                         $user = User::staticGet('jabber', $from);
209                                         if (!$user) {
210                                                 $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
211                                                 return;
212                                         }
213                                         if ($user->updatefrompresence) {
214                                                 $this->log(LOG_INFO, 'Updating ' . $user->nickname .
215                                                                                          ' status from presence.');
216                                                 $this->add_notice($user, $pl);
217                                         }
218                                 }
219                                 break;
220                 }
221         }
222
223         function log($level, $msg) {
224                 common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
225         }
226
227         function subscribed($to) {
228                 jabber_special_presence('subscribed', $to);
229         }
230
231         function set_status($status) {
232                 $this->log(LOG_INFO, 'Setting status to "' . $status . '"');
233                 jabber_send_presence($status);
234         }
235 }
236
237 $resource = ($argc > 1) ? $argv[1] : NULL;
238
239 $daemon = new XMPPDaemon($resource);
240
241 if ($daemon->connect()) {
242         $daemon->set_status("Send me a message to post a notice");
243         $daemon->handle();
244 }
245
246 ?>