]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/jabber.php
77bc316dd75aabbcfb69217afe2ec1859f0d46d6
[quix0rs-gnu-social.git] / lib / jabber.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once('XMPPHP/XMPP.php');
23
24 # XXX: something of a hack to work around problems with the XMPPHP lib
25
26 class Laconica_XMPP extends XMPPHP_XMPP {
27     
28     function messageplus($to, $body, $type = 'chat', $subject = null, $payload = null) {
29         $to       = htmlspecialchars($to);
30         $body   = htmlspecialchars($body);
31         $subject = htmlspecialchars($subject);
32
33         $jid = jabber_daemon_address();
34         
35         $out = "<message from='$jid' to='$to' type='$type'>";
36         if($subject) $out .= "<subject>$subject</subject>";
37         $out .= "<body>$body</body>";
38         if($payload) $out .= $payload;
39         $out .= "</message>";
40
41                 $cnt = strlen($out);
42                 common_log(LOG_DEBUG, "Sending $cnt chars to $to");
43         $this->send($out);
44                 common_log(LOG_DEBUG, 'Done.');
45     }
46 }
47
48 function jabber_valid_base_jid($jid) {
49         # Cheap but effective
50         return Validate::email($jid);
51 }
52
53 function jabber_normalize_jid($jid) {
54         if (preg_match("/(?:([^\@]+)\@)?([^\/]+)(?:\/(.*))?$/", $jid, $matches)) {
55                 $node = $matches[1];
56                 $server = $matches[2];
57                 $resource = $matches[3];
58                 return strtolower($node.'@'.$server);
59         } else {
60                 return NULL;
61         }
62 }
63
64 function jabber_daemon_address() {
65         return common_config('xmpp', 'user') . '@' . common_config('xmpp', 'server');
66 }
67
68 function jabber_connect($resource=NULL) {
69         static $conn = NULL;
70         if (!$conn) {
71                 $conn = new Laconica_XMPP(common_config('xmpp', 'host') ?
72                                                                 common_config('xmpp', 'host') :
73                                                                 common_config('xmpp', 'server'),
74                                                                 common_config('xmpp', 'port'),
75                                                                 common_config('xmpp', 'user'),
76                                                                 common_config('xmpp', 'password'),
77                                                                 ($resource) ? $resource :
78                                                                 common_config('xmpp', 'resource'),
79                                                                 common_config('xmpp', 'server'),
80                                                                 common_config('xmpp', 'debug') ?
81                                                                 true : false,
82                                                                 common_config('xmpp', 'debug') ?
83                                                                 XMPPHP_Log::LEVEL_VERBOSE :  NULL
84                                                                 );
85                 $conn->autoSubscribe();
86
87                 if (!$conn) {
88                         return false;
89                 }
90                 $conn->connect(true); # true = persistent connection
91                 if ($conn->isDisconnected()) {
92                         return false;
93                 }
94         $conn->processUntil('session_start');
95         }
96         return $conn;
97 }
98
99 function jabber_send_notice($to, $notice) {
100         $conn = jabber_connect();
101         if (!$conn) {
102                 return false;
103         }
104         $profile = Profile::staticGet($notice->profile_id);
105         if (!$profile) {
106                 common_log(LOG_WARNING, 'Refusing to send notice with ' .
107                            'unknown profile ' . common_log_objstring($notice),
108                            __FILE__);
109                 return false;
110         }
111         $msg = jabber_format_notice($profile, $notice);
112         $entry = jabber_format_entry($profile, $notice);
113         $conn->messageplus($to, $msg, 'chat', NULL, $entry);
114         return true;
115 }
116
117 # Extra stuff defined by Twitter, needed by twitter clients
118
119 function jabber_format_entry($profile, $notice) {
120         
121         $noticeurl = common_local_url('shownotice',
122                                                                   array('notice' => $notice->id));
123         $msg = jabber_format_notice($profile, $notice);
124         $entry = "\n<entry xmlns='http://www.w3.org/2005/Atom'>\n";
125         $entry .= "<source>\n";
126         $entry .= "<title>" . $profile->nickname . " - " . common_config('site', 'name') . "</title>\n";
127         $entry .= "<link href='" . $profile->profileurl . "'/>\n";
128         $entry .= "<link rel='self' type='application/rss+xml' href='" . common_local_url('userrss', array('nickname' => $profile->nickname)) . "'/>\n";
129         $entry .= "<author><name>" . $profile->nickname . "</name></author>\n";
130         $entry .= "<icon>" . common_profile_avatar_url($profile, AVATAR_PROFILE_SIZE) . "</icon>\n";
131         $entry .= "</source>\n";
132         $entry .= "<title>" . htmlspecialchars($msg) . "</title>\n";
133         $entry .= "<summary>" . htmlspecialchars($msg) . "</summary>\n";
134         $entry .= "<link rel='alternate' href='" . $noticeurl . "' />\n";
135         $entry .= "<id>". $notice->uri . "</id>\n";
136         $entry .= "<published>".common_date_w3dtf($notice->created)."</published>\n";
137         $entry .= "<updated>".common_date_w3dtf($notice->modified)."</updated>\n";
138         $entry .= "</entry>\n";
139
140         $html = "\n<html xmlns='http://jabber.org/protocol/xhtml-im'>\n";
141         $html .= "<body xmlns='http://www.w3.org/1999/xhtml'>\n";
142         $html .= ($notice->rendered) ? $notice->rendered : common_render_content($notice->content, $notice);
143         $html .= "\n</body>\n";
144         $html .= "\n</html>\n";
145         
146         $event = "<event xmlns='http://jabber.org/protocol/pubsub#event'>\n";
147     $event .= "<items xmlns='http://jabber.org/protocol/pubsub' ";
148         $event .= "node='" . common_local_url('public') . "'>\n";
149         $event .= "<item id='" . $notice->uri ."' />\n";
150         $event .= "</items>\n";
151         $event .= "</event>\n";
152         # FIXME: include the pubsub event, too.
153         return $html . $entry;
154 #       return $entry . "\n" . $event;
155 }
156
157 function jabber_send_message($to, $body, $type='chat', $subject=NULL) {
158         $conn = jabber_connect();
159         if (!$conn) {
160                 return false;
161         }
162         $conn->message($to, $body, $type, $subject);
163         return true;
164 }
165
166 function jabber_send_presence($status, $show='available', $to=Null) {
167         $conn = jabber_connect();
168         if (!$conn) {
169                 return false;
170         }
171         $conn->presence($status, $show, $to);
172         return true;
173 }
174
175 function jabber_confirm_address($code, $nickname, $address) {
176         $body = 'User "' . $nickname . '" on ' . common_config('site', 'name') . ' ' .
177                         'has said that your Jabber ID belongs to them. ' .
178             'If that\'s true, you can confirm by clicking on this URL: ' .
179                 common_local_url('confirmaddress', array('code' => $code)) .
180                 ' . (If you cannot click it, copy-and-paste it into the ' .
181                 'address bar of your browser). If that user isn\'t you, ' .
182                 'or if you didn\'t request this confirmation, just ignore this message.';
183
184         return jabber_send_message($address, $body);
185 }
186
187 function jabber_special_presence($type, $to=NULL, $show=NULL, $status=NULL) {
188         $conn = jabber_connect();
189
190         $to = htmlspecialchars($to);
191         $status = htmlspecialchars($status);
192         $out = "<presence";
193         if($to) $out .= " to='$to'";
194         if($type) $out .= " type='$type'";
195         if($show == 'available' and !$status) {
196                 $out .= "/>";
197         } else {
198                 $out .= ">";
199                 if($show && ($show != 'available')) $out .= "<show>$show</show>";
200                 if($status) $out .= "<status>$status</status>";
201                 $out .= "</presence>";
202         }
203         $conn->send($out);
204 }
205
206 function jabber_broadcast_notice($notice) {
207         $profile = Profile::staticGet($notice->profile_id);
208         if (!$profile) {
209                 common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
210                            'unknown profile ' . common_log_objstring($notice),
211                            __FILE__);
212                 return false;
213         }
214         $sent_to = array();
215         # First, get users who this is a direct reply to
216         $reply = new Reply();
217         $reply->notice_id = $notice->id;
218         if ($reply->find()) {
219                 while ($reply->fetch()) {
220                         $user = User::staticGet($reply->profile_id);
221                         if ($user && $user->jabber && $user->jabbernotify && $user->jabberreplies) {
222                                 common_log(LOG_INFO,
223                                                    'Sending reply notice ' . $notice->id . ' to ' . $user->jabber,
224                                                    __FILE__);
225                                 $success = jabber_send_notice($user->jabber, $notice);
226                                 if ($success) {
227                                         # Remember so we don't send twice
228                                         $sent_to[$user->id] = true;
229                                 } else {
230                                         # XXX: Not sure, but I think that's the right thing to do
231                                         common_log(LOG_WARNING,
232                                                            'Sending reply notice ' . $notice->id . ' to ' . $user->jabber . ' FAILED, cancelling.',
233                                                            __FILE__);
234                                         return false;
235                                 }
236                         }
237                 }
238         }
239     # Now, get users subscribed to this profile
240         # XXX: use a join here rather than looping through results
241         $sub = new Subscription();
242         $sub->subscribed = $notice->profile_id;
243         
244         if ($sub->find()) {
245                 while ($sub->fetch()) {
246                         $user = User::staticGet($sub->subscriber);
247                         if ($user && $user->jabber && $user->jabbernotify && !$sent_to[$user->id]) {
248                                 common_log(LOG_INFO,
249                                                    'Sending notice ' . $notice->id . ' to ' . $user->jabber,
250                                                    __FILE__);
251                                 $success = jabber_send_notice($user->jabber, $notice);
252                                 if ($success) {
253                                         $sent_to[$user->id] = true;
254                                 } else {
255                                         # XXX: Not sure, but I think that's the right thing to do
256                                         common_log(LOG_WARNING,
257                                                            'Sending notice ' . $notice->id . ' to ' . $user->jabber . ' FAILED, cancelling.',
258                                                            __FILE__);
259                                         return false;
260                                 }
261                         }
262                 }
263         }
264
265         # Now, users who want everything
266         
267         $public = common_config('xmpp', 'public');
268         
269         # FIXME PRIV don't send out private messages here
270         
271         if ($public) {
272                 foreach ($public as $address) {
273                                 common_log(LOG_INFO,
274                                                    'Sending notice ' . $notice->id . ' to public listener ' . $address,
275                                                    __FILE__);
276                                 jabber_send_notice($address, $notice);
277                 }
278         }
279         
280         return true;
281 }
282
283 function jabber_format_notice(&$profile, &$notice) {
284         return $profile->nickname . ': ' . $notice->content;
285 }