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