3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
23 * Table Definition for subscription
25 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
27 class Subscription extends Managed_DataObject
29 const CACHE_WINDOW = 201;
33 /* the code below is auto generated do not remove the above tag */
35 public $__table = 'subscription'; // table name
36 public $subscriber; // int(4) primary_key not_null
37 public $subscribed; // int(4) primary_key not_null
38 public $jabber; // tinyint(1) default_1
39 public $sms; // tinyint(1) default_1
40 public $token; // varchar(255)
41 public $secret; // varchar(255)
42 public $uri; // varchar(255)
43 public $created; // datetime() not_null
44 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
46 public static function schemaDef()
50 'subscriber' => array('type' => 'int', 'not null' => true, 'description' => 'profile listening'),
51 'subscribed' => array('type' => 'int', 'not null' => true, 'description' => 'profile being listened to'),
52 'jabber' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver jabber messages'),
53 'sms' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver sms messages'),
54 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'authorization token'),
55 'secret' => array('type' => 'varchar', 'length' => 255, 'description' => 'token secret'),
56 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier'),
57 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
58 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
60 'primary key' => array('subscriber', 'subscribed'),
61 'unique keys' => array(
62 'subscription_uri_key' => array('uri'),
65 'subscription_subscriber_idx' => array('subscriber', 'created'),
66 'subscription_subscribed_idx' => array('subscribed', 'created'),
67 'subscription_token_idx' => array('token'),
73 function staticGet($k,$v=null)
74 { return Memcached_DataObject::staticGet('Subscription',$k,$v); }
76 /* the code above is auto generated do not remove the tag below */
81 return Memcached_DataObject::pkeyGet('Subscription', $kv);
85 * Make a new subscription
87 * @param Profile $subscriber party to receive new notices
88 * @param Profile $other party sending notices; publisher
89 * @param bool $force pass Subscription::FORCE to override local subscription approval
91 * @return mixed Subscription or Subscription_queue: new subscription info
94 static function start($subscriber, $other, $force=false)
96 // @fixme should we enforce this as profiles in callers instead?
97 if ($subscriber instanceof User) {
98 $subscriber = $subscriber->getProfile();
100 if ($other instanceof User) {
101 $other = $other->getProfile();
104 if (!$subscriber->hasRight(Right::SUBSCRIBE)) {
105 // TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
106 throw new Exception(_('You have been banned from subscribing.'));
109 if (self::exists($subscriber, $other)) {
110 // TRANS: Exception thrown when trying to subscribe while already subscribed.
111 throw new Exception(_('Already subscribed!'));
114 if ($other->hasBlocked($subscriber)) {
115 // TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
116 throw new Exception(_('User has blocked you.'));
119 if (Event::handle('StartSubscribe', array($subscriber, $other))) {
120 $otherUser = User::staticGet('id', $other->id);
121 if ($otherUser && $otherUser->subscribe_policy == User::SUBSCRIBE_POLICY_MODERATE && !$force) {
122 $sub = Subscription_queue::saveNew($subscriber, $other);
125 $sub = self::saveNew($subscriber->id, $other->id);
128 self::blow('user:notices_with_friends:%d', $subscriber->id);
130 self::blow('subscription:by-subscriber:'.$subscriber->id);
131 self::blow('subscription:by-subscribed:'.$other->id);
133 $subscriber->blowSubscriptionCount();
134 $other->blowSubscriberCount();
136 if (!empty($otherUser) &&
137 $otherUser->autosubscribe &&
138 !self::exists($other, $subscriber) &&
139 !$subscriber->hasBlocked($other)) {
142 self::start($other, $subscriber);
143 } catch (Exception $e) {
144 common_log(LOG_ERR, "Exception during autosubscribe of {$other->nickname} to profile {$subscriber->id}: {$e->getMessage()}");
149 Event::handle('EndSubscribe', array($subscriber, $other));
156 * Low-level subscription save.
157 * Outside callers should use Subscription::start()
159 protected function saveNew($subscriber_id, $other_id)
161 $sub = new Subscription();
163 $sub->subscriber = $subscriber_id;
164 $sub->subscribed = $other_id;
167 $sub->created = common_sql_now();
168 $sub->uri = self::newURI($sub->subscriber,
172 $result = $sub->insert();
175 common_log_db_error($sub, 'INSERT', __FILE__);
176 // TRANS: Exception thrown when a subscription could not be stored on the server.
177 throw new Exception(_('Could not save subscription.'));
185 // XXX: add other notifications (Jabber, SMS) here
186 // XXX: queue this and handle it offline
187 // XXX: Whatever happens, do it in Twitter-like API, too
189 $this->notifyEmail();
192 function notifyEmail()
194 $subscribedUser = User::staticGet('id', $this->subscribed);
196 if (!empty($subscribedUser)) {
198 $subscriber = Profile::staticGet('id', $this->subscriber);
200 mail_subscribe_notify_profile($subscribedUser, $subscriber);
205 * Cancel a subscription
208 function cancel($subscriber, $other)
210 if (!self::exists($subscriber, $other)) {
211 // TRANS: Exception thrown when trying to unsibscribe without a subscription.
212 throw new Exception(_('Not subscribed!'));
215 // Don't allow deleting self subs
217 if ($subscriber->id == $other->id) {
218 // TRANS: Exception thrown when trying to unsubscribe a user from themselves.
219 throw new Exception(_('Could not delete self-subscription.'));
222 if (Event::handle('StartUnsubscribe', array($subscriber, $other))) {
224 $sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id,
225 'subscribed' => $other->id));
227 // note we checked for existence above
229 assert(!empty($sub));
231 $result = $sub->delete();
234 common_log_db_error($sub, 'DELETE', __FILE__);
235 // TRANS: Exception thrown when a subscription could not be deleted on the server.
236 throw new Exception(_('Could not delete subscription.'));
239 self::blow('user:notices_with_friends:%d', $subscriber->id);
241 self::blow('subscription:by-subscriber:'.$subscriber->id);
242 self::blow('subscription:by-subscribed:'.$other->id);
244 $subscriber->blowSubscriptionCount();
245 $other->blowSubscriberCount();
247 Event::handle('EndUnsubscribe', array($subscriber, $other));
253 function exists($subscriber, $other)
255 $sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id,
256 'subscribed' => $other->id));
257 return (empty($sub)) ? false : true;
260 function asActivity()
262 $subscriber = Profile::staticGet('id', $this->subscriber);
263 $subscribed = Profile::staticGet('id', $this->subscribed);
265 $act = new Activity();
267 $act->verb = ActivityVerb::FOLLOW;
269 // XXX: rationalize this with the URL
271 $act->id = $this->getURI();
273 $act->time = strtotime($this->created);
274 // TRANS: Activity title when subscribing to another person.
275 $act->title = _m('TITLE','Follow');
276 // TRANS: Notification given when one person starts following another.
277 // TRANS: %1$s is the subscriber, %2$s is the subscribed.
278 $act->content = sprintf(_('%1$s is now following %2$s.'),
279 $subscriber->getBestName(),
280 $subscribed->getBestName());
282 $act->actor = ActivityObject::fromProfile($subscriber);
283 $act->objects[] = ActivityObject::fromProfile($subscribed);
285 $url = common_local_url('AtomPubShowSubscription',
286 array('subscriber' => $subscriber->id,
287 'subscribed' => $subscribed->id));
289 $act->selfLink = $url;
290 $act->editLink = $url;
296 * Stream of subscriptions with the same subscriber
298 * Useful for showing pages that list subscriptions in reverse
299 * chronological order. Has offset & limit to make paging
302 * @param integer $subscriberId Profile ID of the subscriber
303 * @param integer $offset Offset from latest
304 * @param integer $limit Maximum number to fetch
306 * @return Subscription stream of subscriptions; use fetch() to iterate
308 static function bySubscriber($subscriberId,
310 $limit = PROFILES_PER_PAGE)
312 if ($offset + $limit > self::CACHE_WINDOW) {
313 return new ArrayWrapper(self::realBySubscriber($subscriberId,
317 $key = 'subscription:by-subscriber:'.$subscriberId;
318 $window = self::cacheGet($key);
319 if ($window === false) {
320 $window = self::realBySubscriber($subscriberId,
323 self::cacheSet($key, $window);
325 return new ArrayWrapper(array_slice($window,
331 private static function realBySubscriber($subscriberId,
335 $sub = new Subscription();
337 $sub->subscriber = $subscriberId;
339 $sub->whereAdd('subscribed != ' . $subscriberId);
341 $sub->orderBy('created DESC');
342 $sub->limit($offset, $limit);
348 while ($sub->fetch()) {
349 $subs[] = clone($sub);
356 * Stream of subscriptions with the same subscribed profile
358 * Useful for showing pages that list subscribers in reverse
359 * chronological order. Has offset & limit to make paging
362 * @param integer $subscribedId Profile ID of the subscribed
363 * @param integer $offset Offset from latest
364 * @param integer $limit Maximum number to fetch
366 * @return Subscription stream of subscriptions; use fetch() to iterate
368 static function bySubscribed($subscribedId,
370 $limit = PROFILES_PER_PAGE)
372 if ($offset + $limit > self::CACHE_WINDOW) {
373 return new ArrayWrapper(self::realBySubscribed($subscribedId,
377 $key = 'subscription:by-subscribed:'.$subscribedId;
378 $window = self::cacheGet($key);
379 if ($window === false) {
380 $window = self::realBySubscribed($subscribedId,
383 self::cacheSet($key, $window);
385 return new ArrayWrapper(array_slice($window,
391 private static function realBySubscribed($subscribedId,
395 $sub = new Subscription();
397 $sub->subscribed = $subscribedId;
399 $sub->whereAdd('subscriber != ' . $subscribedId);
401 $sub->orderBy('created DESC');
402 $sub->limit($offset, $limit);
408 while ($sub->fetch()) {
409 $subs[] = clone($sub);
416 * Flush cached subscriptions when subscription is updated
418 * Because we cache subscriptions, it's useful to flush them
421 * @param mixed $orig Original version of object
423 * @return boolean success flag.
425 function update($orig=null)
427 $result = parent::update($orig);
429 self::blow('subscription:by-subscriber:'.$this->subscriber);
430 self::blow('subscription:by-subscribed:'.$this->subscribed);
437 if (!empty($this->uri)) {
440 return self::newURI($this->subscriber, $this->subscribed, $this->created);
444 static function newURI($subscriber_id, $subscribed_id, $created)
446 return TagURI::mint('follow:%d:%d:%s',
449 common_date_iso8601($created));