]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/subs.php
c30a81a9871db85e739f109d05340443f68e24be
[quix0rs-gnu-social.git] / lib / subs.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, 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
31     $other = User::staticGet('nickname', $other_nickname);
32
33     if (!$other) {
34         return _('No such user.');
35     }
36
37     return subs_subscribe_to($user, $other);
38 }
39
40 /* Subscribe user $user to other user $other.
41  * Note: $other must be a local user, not a remote profile.
42  * Because the other way is quite a bit more complicated.
43  */
44
45 function subs_subscribe_to($user, $other)
46 {
47     if ($user->isSubscribed($other)) {
48         return _('Already subscribed!.');
49     }
50
51     if ($other->hasBlocked($user)) {
52         return _('User has blocked you.');
53     }
54
55     if (!$user->subscribeTo($other)) {
56         return _('Could not subscribe.');
57         return;
58     }
59
60     subs_notify($other, $user);
61
62     $cache = common_memcache();
63
64     if ($cache) {
65         $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
66         }
67
68     $profile = $user->getProfile();
69
70     $profile->blowSubscriptionsCount();
71     $other->blowSubscribersCount();
72
73     if ($other->autosubscribe && !$other->isSubscribed($user) && !$user->hasBlocked($other)) {
74         if (!$other->subscribeTo($user)) {
75             return _('Could not subscribe other to you.');
76         }
77         $cache = common_memcache();
78
79         if ($cache) {
80             $cache->delete(common_cache_key('user:notices_with_friends:' . $other->id));
81                 }
82
83         subs_notify($user, $other);
84     }
85
86     return true;
87 }
88
89 function subs_notify($listenee, $listener)
90 {
91     # XXX: add other notifications (Jabber, SMS) here
92     # XXX: queue this and handle it offline
93     # XXX: Whatever happens, do it in Twitter-like API, too
94     subs_notify_email($listenee, $listener);
95 }
96
97 function subs_notify_email($listenee, $listener)
98 {
99     mail_subscribe_notify($listenee, $listener);
100 }
101
102 /* Unsubscribe $user from nickname $other_nickname
103   Returns true or an error message.
104 */
105
106 function subs_unsubscribe_user($user, $other_nickname)
107 {
108
109     $other = User::staticGet('nickname', $other_nickname);
110
111     if (!$other) {
112         return _('No such user.');
113     }
114
115     return subs_unsubscribe_to($user, $other->getProfile());
116 }
117
118 /* Unsubscribe user $user from profile $other
119  * NB: other can be a remote user. */
120
121 function subs_unsubscribe_to($user, $other)
122 {
123     if (!$user->isSubscribed($other))
124         return _('Not subscribed!.');
125
126     $sub = DB_DataObject::factory('subscription');
127
128     $sub->subscriber = $user->id;
129     $sub->subscribed = $other->id;
130
131     $sub->find(true);
132
133     // note we checked for existence above
134
135     if (!$sub->delete())
136         return _('Couldn\'t delete subscription.');
137
138     $cache = common_memcache();
139
140     if ($cache) {
141         $cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
142         }
143
144     $profile = $user->getProfile();
145
146     $profile->blowSubscriptionsCount();
147     $other->blowSubscribersCount();
148
149     return true;
150 }
151