]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/jabber.php
a0f5080d0fb9faeb641010704a3949eee606d02f
[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 .= "<a href='".common_profile_url($profile->nickname)."'>".$profile->nickname."</a>: ";
143         $html .= ($notice->rendered) ? $notice->rendered : common_render_content($notice->content, $notice);
144         $html .= "\n</body>\n";
145         $html .= "\n</html>\n";
146         
147         $event = "<event xmlns='http://jabber.org/protocol/pubsub#event'>\n";
148     $event .= "<items xmlns='http://jabber.org/protocol/pubsub' ";
149         $event .= "node='" . common_local_url('public') . "'>\n";
150         $event .= "<item id='" . $notice->uri ."' />\n";
151         $event .= "</items>\n";
152         $event .= "</event>\n";
153         # FIXME: include the pubsub event, too.
154         return $html . $entry;
155 #       return $entry . "\n" . $event;
156 }
157
158 function jabber_send_message($to, $body, $type='chat', $subject=NULL) {
159         $conn = jabber_connect();
160         if (!$conn) {
161                 return false;
162         }
163         $conn->message($to, $body, $type, $subject);
164         return true;
165 }
166
167 function jabber_send_presence($status, $show='available', $to=Null) {
168         $conn = jabber_connect();
169         if (!$conn) {
170                 return false;
171         }
172         $conn->presence($status, $show, $to);
173         return true;
174 }
175
176 function jabber_confirm_address($code, $nickname, $address) {
177         $body = 'User "' . $nickname . '" on ' . common_config('site', 'name') . ' ' .
178                         'has said that your Jabber ID belongs to them. ' .
179             'If that\'s true, you can confirm by clicking on this URL: ' .
180                 common_local_url('confirmaddress', array('code' => $code)) .
181                 ' . (If you cannot click it, copy-and-paste it into the ' .
182                 'address bar of your browser). If that user isn\'t you, ' .
183                 'or if you didn\'t request this confirmation, just ignore this message.';
184
185         return jabber_send_message($address, $body);
186 }
187
188 function jabber_special_presence($type, $to=NULL, $show=NULL, $status=NULL) {
189         $conn = jabber_connect();
190
191         $to = htmlspecialchars($to);
192         $status = htmlspecialchars($status);
193         $out = "<presence";
194         if($to) $out .= " to='$to'";
195         if($type) $out .= " type='$type'";
196         if($show == 'available' and !$status) {
197                 $out .= "/>";
198         } else {
199                 $out .= ">";
200                 if($show && ($show != 'available')) $out .= "<show>$show</show>";
201                 if($status) $out .= "<status>$status</status>";
202                 $out .= "</presence>";
203         }
204         $conn->send($out);
205 }
206
207 function jabber_broadcast_notice($notice) {
208         $profile = Profile::staticGet($notice->profile_id);
209         if (!$profile) {
210                 common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
211                            'unknown profile ' . common_log_objstring($notice),
212                            __FILE__);
213                 return false;
214         }
215         $sent_to = array();
216         # First, get users who this is a direct reply to
217         $reply = new Reply();
218         $reply->notice_id = $notice->id;
219         if ($reply->find()) {
220                 while ($reply->fetch()) {
221                         $user = User::staticGet($reply->profile_id);
222                         if ($user && $user->jabber && $user->jabbernotify && $user->jabberreplies) {
223                                 common_log(LOG_INFO,
224                                                    'Sending reply notice ' . $notice->id . ' to ' . $user->jabber,
225                                                    __FILE__);
226                                 $success = jabber_send_notice($user->jabber, $notice);
227                                 if ($success) {
228                                         # Remember so we don't send twice
229                                         $sent_to[$user->id] = true;
230                                 } else {
231                                         # XXX: Not sure, but I think that's the right thing to do
232                                         common_log(LOG_WARNING,
233                                                            'Sending reply notice ' . $notice->id . ' to ' . $user->jabber . ' FAILED, cancelling.',
234                                                            __FILE__);
235                                         return false;
236                                 }
237                         }
238                 }
239         }
240     # Now, get users subscribed to this profile
241         # XXX: use a join here rather than looping through results
242         $sub = new Subscription();
243         $sub->subscribed = $notice->profile_id;
244         
245         if ($sub->find()) {
246                 while ($sub->fetch()) {
247                         $user = User::staticGet($sub->subscriber);
248                         if ($user && $user->jabber && $user->jabbernotify && !$sent_to[$user->id]) {
249                                 common_log(LOG_INFO,
250                                                    'Sending notice ' . $notice->id . ' to ' . $user->jabber,
251                                                    __FILE__);
252                                 $success = jabber_send_notice($user->jabber, $notice);
253                                 if ($success) {
254                                         $sent_to[$user->id] = true;
255                                 } else {
256                                         # XXX: Not sure, but I think that's the right thing to do
257                                         common_log(LOG_WARNING,
258                                                            'Sending notice ' . $notice->id . ' to ' . $user->jabber . ' FAILED, cancelling.',
259                                                            __FILE__);
260                                         return false;
261                                 }
262                         }
263                 }
264         }
265
266         # Now, users who want everything
267         
268         $public = common_config('xmpp', 'public');
269         
270         # FIXME PRIV don't send out private messages here
271         
272         if ($public) {
273                 foreach ($public as $address) {
274                                 common_log(LOG_INFO,
275                                                    'Sending notice ' . $notice->id . ' to public listener ' . $address,
276                                                    __FILE__);
277                                 jabber_send_notice($address, $notice);
278                 }
279         }
280         
281         return true;
282 }
283
284 function jabber_format_notice(&$profile, &$notice) {
285         return $profile->nickname . ': ' . $notice->content;
286 }