]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/jabber.php
97d02544d668c96f2995f572489de0a24c9cba0a
[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('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_connect($resource=NULL) {
41         static $conn = NULL;
42         if (!$conn) {
43                 $conn = new XMPP(common_config('xmpp', 'server'),
44                                              common_config('xmpp', 'port'),
45                                              common_config('xmpp', 'user'),
46                                              common_config('xmpp', 'password'),
47                                          ($resource) ? $resource : 
48                                                 common_config('xmpp', 'resource'));
49                                         
50                 if (!$conn) {
51                         return false;
52                 }
53                 $conn->connect(true); # try to get a persistent connection
54                 if ($conn->disconnected) {
55                         return false;
56                 }
57         $conn->processUntil('session_start');
58         }
59         return $conn;
60 }
61
62 function jabber_send_message($to, $body, $type='chat', $subject=NULL) {
63         $conn = jabber_connect();
64         if (!$conn) {
65                 return false;
66         }
67         $conn->message($to, $body, $type, $subject);
68         return true;
69 }
70
71 function jabber_send_presence($status=Null, $show='available', $to=Null) {
72         $conn = jabber_connect();
73         if (!$conn) {
74                 return false;
75         }
76         $conn->presence($status, $show, $to);
77         return true;
78 }
79
80 function jabber_confirm_address($code, $nickname, $address) {
81
82         # FIXME: do we have to request presence first?
83         
84         $body = "Hey, $nickname.";
85         $body .= "\n\n";
86         $body .= 'Someone just entered this IM address on ';
87         $body .= common_config('site', 'name') . '.';
88         $body .= "\n\n";
89         $body .= 'If it was you, and you want to confirm your entry, ';
90         $body .= 'use the URL below:';
91         $body .= "\n\n";
92         $body .= "\t".common_local_url('confirmaddress',
93                                                                    array('code' => $code));
94         $body .= "\n\n";
95         $body .= 'If not, just ignore this message.';
96         $body .= "\n\n";
97         $body .= 'Thanks for your time, ';
98         $body .= "\n";
99         $body .= common_config('site', 'name');
100         $body .= "\n";
101
102         jabber_send_message($address, $body);
103 }
104         
105 function jabber_broadcast_notice($notice) {
106         # First, get users subscribed to this profile
107         # XXX: use a join here rather than looping through results
108         $profile = Profile::staticGet($notice->profile_id);
109         if (!$profile) {
110                 common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
111                            'unknown profile ' . common_log_objstring($notice),
112                            __FILE__);
113                 return false;
114         }
115         $sub = new Subscription();
116         $sub->subscribed = $notice->profile_id;
117         if ($sub->find()) {
118                 $msg = jabber_format_notice($profile, $notice);
119                 while ($sub->fetch()) {
120                         $user = User::staticGet($sub->subscriber);
121                         if ($user && $user->jabber) {
122                                 jabber_send_message($user->jabber,
123                                                     $msg);
124                         }
125                 }
126         }
127 }
128
129 function jabber_format_notice(&$profile, &$notice) {
130         return $profile->nickname . ': ' . $notice->content;
131 }