]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/subs.php
rationalize with repository version
[quix0rs-gnu-social.git] / lib / subs.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 /* Subscribe $user to nickname $other_nickname
25   Returns true or an error message.
26 */
27
28 function subs_subscribe_user($user,$other_nickname) {
29
30         $other = User::staticGet('nickname', $other_nickname);
31
32         if (!$other) {
33                 return _('No such user.');
34         }
35
36         return subs_subscribe_to($user, $other);
37 }
38
39 function subs_subscribe_to($user, $other) {
40
41         if ($user->isSubscribed($other)) {
42                 return _('Already subscribed!.');
43         }
44
45         if (!$user->subscribeTo($other)) {
46                 return _('Could not subscribe.');
47                 return;
48         }
49
50         subs_notify($other, $user);
51
52         if (common_config('memcached', 'enabled')) {
53                 $cache = new Memcache();
54                 if ($cache->connect(common_config('memcached', 'server'), common_config('memcached', 'port'))) {
55                         $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
56                 }
57         }
58         
59         if ($other->autosubscribe && !$other->isSubscribed($user)) {
60                 if (!$other->subscribeTo($user)) {
61                         return _('Could not subscribe other to you.');
62                 }
63                 if (common_config('memcached', 'enabled')) {
64                         $cache = new Memcache();
65                         if ($cache->connect(common_config('memcached', 'server'), common_config('memcached', 'port'))) {
66                                 $cache->delete(common_cache_key('user:notices_with_friends:' . $other->id));
67                         }
68                 }
69                 
70                 subs_notify($user, $other);
71         }
72
73         return true;
74 }
75
76 function subs_notify($listenee, $listener) {
77         # XXX: add other notifications (Jabber, SMS) here
78         # XXX: queue this and handle it offline
79         # XXX: Whatever happens, do it in Twitter-like API, too
80         subs_notify_email($listenee, $listener);
81 }
82
83 function subs_notify_email($listenee, $listener) {
84         mail_subscribe_notify($listenee, $listener);
85 }
86
87 /* Unsubscribe $user from nickname $other_nickname
88   Returns true or an error message.
89 */
90 function subs_unsubscribe_user($user, $other_nickname) {
91
92         $other = User::staticGet('nickname', $other_nickname);
93
94         if (!$other) {
95                 return _('No such user.');
96         }
97
98         return subs_unsubscribe_to($user, $other);
99 }
100
101 function subs_unsubscribe_to($user, $other) {
102
103         if (!$user->isSubscribed($other))
104                 return _('Not subscribed!.');
105
106         $sub = DB_DataObject::factory('subscription');
107
108         $sub->subscriber = $user->id;
109         $sub->subscribed = $other->id;
110
111         $sub->find(true);
112
113         // note we checked for existence above
114
115         if (!$sub->delete())
116                 return _('Couldn\'t delete subscription.');
117
118         if (common_config('memcached', 'enabled')) {
119                 $cache = new Memcache();
120                 if ($cache->connect(common_config('memcached', 'server'), common_config('memcached', 'port'))) {
121                         $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
122                 }
123         }
124         
125         return true;
126 }
127