]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/jabber.php
66ff24e63a792eb4fa43a861eb47b9e2558a5848
[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 function jabber_valid_base_jid($jid) {
25         # Cheap but effective
26         return Validate::email($jid);
27 }
28
29 function jabber_normalize_jid($jid) {
30         if (preg_match("/(?:([^\@]+)\@)?([^\/]+)(?:\/(.*))?$/", $jid, $matches)) {
31                 $node = $matches[1];
32                 $server = $matches[2];
33                 $resource = $matches[3];
34                 return strtolower($node.'@'.$server);
35         } else {
36                 return NULL;
37         }
38 }
39
40 function jabber_daemon_address() {
41         return common_config('xmpp', 'user') . '@' . common_config('xmpp', 'server');
42 }
43
44 function jabber_connect($resource=NULL) {
45         static $conn = NULL;
46         if (!$conn) {
47                 $conn = new XMPPHP_XMPP(common_config('xmpp', 'host') ?
48                                          common_config('xmpp', 'host') :
49                                          common_config('xmpp', 'server'),
50                                          common_config('xmpp', 'port'),
51                                              common_config('xmpp', 'user'),
52                                              common_config('xmpp', 'password'),
53                                          ($resource) ? $resource :
54                                                 common_config('xmpp', 'resource'),
55                                          common_config('xmpp', 'server'));
56                 $conn->autoSubscribe();
57
58                 if (!$conn) {
59                         return false;
60                 }
61                 $conn->connect(true); # true = persistent connection
62                 if ($conn->isDisconnected()) {
63                         return false;
64                 }
65         $conn->processUntil('session_start');
66         }
67         return $conn;
68 }
69
70 function jabber_send_message($to, $body, $type='chat', $subject=NULL) {
71         $conn = jabber_connect();
72         if (!$conn) {
73                 return false;
74         }
75         $conn->message($to, $body, $type, $subject);
76         return true;
77 }
78
79 function jabber_send_presence($status, $show='available', $to=Null) {
80         $conn = jabber_connect();
81         if (!$conn) {
82                 return false;
83         }
84         $conn->presence($status, $show, $to);
85         return true;
86 }
87
88 function jabber_confirm_address($code, $nickname, $address) {
89         $body = 'User "' . $nickname . '" on ' . common_config('site', 'name') . ' ' .
90                         'has said that your Jabber ID belongs to them. ' .
91             'If that\'s true, you can confirm by clicking on this URL: ' .
92                 common_local_url('confirmaddress', array('code' => $code)) .
93                 ' . (If you cannot click it, copy-and-paste it into the ' .
94                 'address bar of your browser). If that user isn\'t you, ' .
95                 'or if you didn\'t request this confirmation, just ignore this message.';
96
97         return jabber_send_message($address, $body);
98 }
99
100 function jabber_special_presence($type, $to=NULL, $show=NULL, $status=NULL) {
101         $conn = jabber_connect();
102
103         $to = htmlspecialchars($to);
104         $status = htmlspecialchars($status);
105         $out = "<presence";
106         if($to) $out .= " to='$to'";
107         if($type) $out .= " type='$type'";
108         if($show == 'available' and !$status) {
109                 $out .= "/>";
110         } else {
111                 $out .= ">";
112                 if($show && ($show != 'available')) $out .= "<show>$show</show>";
113                 if($status) $out .= "<status>$status</status>";
114                 $out .= "</presence>";
115         }
116         $conn->send($out);
117 }
118
119 function jabber_broadcast_notice($notice) {
120         # First, get users subscribed to this profile
121         # XXX: use a join here rather than looping through results
122         $profile = Profile::staticGet($notice->profile_id);
123         if (!$profile) {
124                 common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
125                            'unknown profile ' . common_log_objstring($notice),
126                            __FILE__);
127                 return false;
128         }
129         $sub = new Subscription();
130         $sub->subscribed = $notice->profile_id;
131         if ($sub->find()) {
132                 $msg = jabber_format_notice($profile, $notice);
133                 while ($sub->fetch()) {
134                         $user = User::staticGet($sub->subscriber);
135                         if ($user && $user->jabber && $user->jabbernotify) {
136                                 common_log(LOG_INFO, 
137                                                    'Sending notice ' . $notice->id . ' to ' . $user->jabber,
138                                                    __FILE__);
139                                 $success = jabber_send_message($user->jabber, $msg);
140                                 if (!$success) {
141                                         # XXX: Not sure, but I think that's the right thing to do
142                                         return false;
143                                 }
144                         }
145                 }
146         }
147         return true;
148 }
149
150 function jabber_format_notice(&$profile, &$notice) {
151         return $profile->nickname . ': ' . $notice->content;
152 }