]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - xmppdaemon.php
1a77c4340af1d5310be1c1eb3cf8b120805c7c2f
[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 handle_message(&$pl) {
92                 if ($pl['type'] != 'chat') {
93                         return;
94                 }
95                 if (strlen($pl['body']) == 0) {
96                         return;
97                 }
98                 $from = jabber_normalize_jid($pl['from']);
99                 $user = User::staticGet('jabber', $from);
100                 if (!$user) {
101                         $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
102                         return;
103                 }
104                 if ($this->handle_command($user, $pl['body'])) {
105                         return;
106                 } else {
107                         $this->add_notice($user, $pl);
108                 }
109         }
110
111         function handle_command($user, $body) {
112                 # XXX: localise
113                 switch(trim($body)) {
114                  case 'on':
115                         $this->set_notify($user, true);
116                         return true;
117                  case 'off':
118                         $this->set_notify($user, false);
119                         return true;
120                  default:
121                         return false;
122                 }
123         }
124
125         function set_notify(&$user, $notify) {
126                 $orig = clone($user);
127                 $user->jabbernotify = $notify;
128                 $result = $user->update($orig);
129                 if (!$id) {
130                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
131                         $this->log(LOG_ERROR,
132                                            'Could not set notify flag to ' . $notify .
133                                            ' for user ' . common_log_objstring($user) .
134                                            ': ' . $last_error->message);
135                 } else {
136                         $this->log(LOG_INFO,
137                                            'User ' . $user->nickname . ' set notify flag to ' . $notify);
138                 }
139         }
140
141         function add_notice(&$user, &$pl) {
142                 $notice = new Notice();
143                 $notice->profile_id = $user->id;
144                 $notice->content = trim(substr($pl['body'], 0, 140));
145                 $notice->created = DB_DataObject_Cast::dateTime();
146                 $notice->query('BEGIN');
147                 $id = $notice->insert();
148                 if (!$id) {
149                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
150                         $this->log(LOG_ERROR,
151                                            'Could not insert ' . common_log_objstring($notice) .
152                                            ' for user ' . common_log_objstring($user) .
153                                            ': ' . $last_error->message);
154                         return;
155                 }
156                 $orig = clone($notice);
157                 $notice->uri = common_notice_uri($notice);
158                 $result = $notice->update($orig);
159                 if (!$result) {
160                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
161                         $this->log(LOG_ERROR,
162                                            'Could not add URI to ' . common_log_objstring($notice) .
163                                            ' for user ' . common_log_objstring($user) .
164                                            ': ' . $last_error->message);
165                         return;
166                 }
167                 $notice->query('COMMIT');
168                 common_broadcast_notice($notice);
169                 $this->log(LOG_INFO,
170                                    'Added notice ' . $notice->id . ' from user ' . $user->nickname);
171         }
172
173         function handle_presence(&$pl) {
174                 $from = jabber_normalize_jid($pl['from']);
175                 switch ($pl['type']) {
176                         case 'subscribe':
177                             # We let anyone subscribe
178                                 $this->subscribed($from);
179                                 $this->log(LOG_INFO,
180                                    'Accepted subscription from ' . $from);
181                                 break;
182                         case 'subscribed':
183                         case 'unsubscribe':
184                         case 'unsubscribed':
185                                 $this->log(LOG_INFO,
186                                    'Ignoring  "' . $pl['type'] . '" from ' . $from);
187                                 break;
188                         default:
189                                 if (!$pl['type']) {
190                                         $user = User::staticGet('jabber', $from);
191                                         if (!$user) {
192                                                 $this->log(LOG_WARNING, 'Message from unknown user ' . $from);
193                                                 return;
194                                         }
195                                         if ($user->updatefrompresence) {
196                                                 $this->log(LOG_INFO, 'Updating ' . $user->nickname .
197                                                                                          ' status from presence.');
198                                                 $this->add_notice($user, $pl);
199                                         }
200                                 }
201                                 break;
202                 }
203         }
204
205         function log($level, $msg) {
206                 common_log($level, 'XMPPDaemon('.$this->resource.'): '.$msg);
207         }
208
209         function subscribed($to) {
210                 jabber_special_presence('subscribed', $to);
211         }
212
213         function set_status($status) {
214                 $this->log(LOG_INFO, 'Setting status to "' . $status . '"');
215                 jabber_send_presence($status);
216         }
217 }
218
219 $resource = ($argc > 1) ? $argv[1] : NULL;
220
221 $daemon = new XMPPDaemon($resource);
222
223 if ($daemon->connect()) {
224         $daemon->set_status("Send me a message to post a notice");
225         $daemon->handle();
226 }
227
228 ?>