]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - xmppdaemon.php
some UI changes to the IM settings
[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                 if (!$user) {
115                         $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
116                         return;
117                 }
118                 if ($this->handle_command($user, $pl['body'])) {
119                         return;
120                 } else {
121                         $this->add_notice($user, $pl);
122                 }
123         }
124
125         function handle_command($user, $body) {
126                 # XXX: localise
127                 switch(trim($body)) {
128                  case 'on':
129                         $this->set_notify($user, true);
130                         return true;
131                  case 'off':
132                         $this->set_notify($user, false);
133                         return true;
134                  default:
135                         return false;
136                 }
137         }
138
139         function set_notify(&$user, $notify) {
140                 $orig = clone($user);
141                 $user->jabbernotify = $notify;
142                 $result = $user->update($orig);
143                 if (!$id) {
144                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
145                         $this->log(LOG_ERROR,
146                                            'Could not set notify flag to ' . $notify .
147                                            ' for user ' . common_log_objstring($user) .
148                                            ': ' . $last_error->message);
149                 } else {
150                         $this->log(LOG_INFO,
151                                            'User ' . $user->nickname . ' set notify flag to ' . $notify);
152                 }
153         }
154
155         function add_notice(&$user, &$pl) {
156                 $notice = new Notice();
157                 $notice->profile_id = $user->id;
158                 $notice->content = trim(substr($pl['body'], 0, 140));
159                 $notice->created = DB_DataObject_Cast::dateTime();
160                 $notice->query('BEGIN');
161                 $id = $notice->insert();
162                 if (!$id) {
163                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
164                         $this->log(LOG_ERROR,
165                                            'Could not insert ' . common_log_objstring($notice) .
166                                            ' for user ' . common_log_objstring($user) .
167                                            ': ' . $last_error->message);
168                         return;
169                 }
170                 $orig = clone($notice);
171                 $notice->uri = common_notice_uri($notice);
172                 $result = $notice->update($orig);
173                 if (!$result) {
174                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
175                         $this->log(LOG_ERROR,
176                                            'Could not add URI to ' . common_log_objstring($notice) .
177                                            ' for user ' . common_log_objstring($user) .
178                                            ': ' . $last_error->message);
179                         return;
180                 }
181                 $notice->query('COMMIT');
182                 common_broadcast_notice($notice);
183                 $this->log(LOG_INFO,
184                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
185         }
186
187         function handle_presence(&$pl) {
188                 $from = jabber_normalize_jid($pl['from']);
189                 switch ($pl['type']) {
190                         case 'subscribe':
191                             # We let anyone subscribe
192                                 $this->subscribed($from);
193                                 $this->log(LOG_INFO,
194                                    'Accepted subscription from ' . $from);
195                                 break;
196                         case 'subscribed':
197                                 $confirm = $this->get_confirmation($from);
198                                 if ($confirm) {
199                                         $user = User::staticGet($confirm->user_id);
200                                         if ($user) {
201                                                 jabber_confirm_address($confirm->code,
202                                                                        $user->nickname,
203                                                                        $confirm->address);
204                                         } else {
205                                                 $this->log(LOG_WARNING,
206                                                         'got unexpected subscribed message from ' . $from);
207                                         }
208                                 }
209                         case 'unsubscribed':
210                                 $user = $this->get_user($from);
211                                 if ($user) {
212                                         $this->set_notify($user, false);
213                                 }
214
215                                 $confirm = $this->get_confirmation($from);
216                                 if ($confirm) {
217                                         $user = User::staticGet($confirm->user_id);
218                                         if ($user) {
219                                         }
220                                 }
221                         case 'unsubscribe':
222                                 $this->log(LOG_INFO,
223                                    'Ignoring  "' . $pl['type'] . '" from ' . $from);
224                                 break;
225                         default:
226                                 if (!$pl['type']) {
227                                         $user = User::staticGet('jabber', $from);
228                                         if (!$user) {
229                                                 $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
230                                                 return;
231                                         }
232                                         if ($user->updatefrompresence) {
233                                                 $this->log(LOG_INFO, 'Updating ' . $user->nickname .
234                                                                                          ' status from presence.');
235                                                 $this->add_notice($user, $pl);
236                                         }
237                                 }
238                                 break;
239                 }
240         }
241
242         function log($level, $msg) {
243                 common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
244         }
245
246         function subscribed($to) {
247                 jabber_special_presence('subscribed', $to);
248         }
249
250         function set_status($status) {
251                 $this->log(LOG_INFO, 'Setting status to "' . $status . '"');
252                 jabber_send_presence($status);
253         }
254 }
255
256 $resource = ($argc > 1) ? $argv[1] : NULL;
257
258 $daemon = new XMPPDaemon($resource);
259
260 if ($daemon->connect()) {
261         $daemon->set_status("Send me a message to post a notice");
262         $daemon->handle();
263 }
264
265 ?>