3 * Table Definition for subscription_queue
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
7 class Subscription_queue extends Managed_DataObject
10 /* the code below is auto generated do not remove the above tag */
12 public $__table = 'subscription_queue'; // table name
18 function staticGet($k,$v=null)
19 { return Memcached_DataObject::staticGet('Subscription_queue',$k,$v); }
23 { return Memcached_DataObject::pkeyGet('Subscription_queue',$k); }
25 /* the code above is auto generated do not remove the tag below */
28 public static function schemaDef()
31 'description' => 'Holder for subscription requests awaiting moderation.',
33 'subscriber' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile making the request'),
34 'subscribed' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile being subscribed to'),
35 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
37 'primary key' => array('subscriber', 'subscribed'),
39 'subscription_queue_subscriber_created_idx' => array('subscriber', 'created'),
40 'subscription_queue_subscribed_created_idx' => array('subscribed', 'created'),
42 'foreign keys' => array(
43 'subscription_queue_subscriber_fkey' => array('profile', array('subscriber' => 'id')),
44 'subscription_queue_subscribed_fkey' => array('profile', array('subscribed' => 'id')),
49 public static function saveNew(Profile $subscriber, Profile $subscribed)
51 $rq = new Subscription_queue();
52 $rq->subscriber = $subscriber->id;
53 $rq->subscribed = $subscribed->id;
54 $rq->created = common_sql_now();
59 function exists($subscriber, $other)
61 $sub = Subscription_queue::pkeyGet(array('subscriber' => $subscriber->id,
62 'subscribed' => $other->id));
63 return (empty($sub)) ? false : true;
67 * Complete a pending subscription, as we've got approval of some sort.
69 * @return Subscription
71 public function complete()
73 $subscriber = Profile::staticGet('id', $this->subscriber);
74 $subscribed = Profile::staticGet('id', $this->subscribed);
75 $sub = Subscription::start($subscriber, $subscribed, Subscription::FORCE);
83 * Cancel an outstanding subscription request to the other profile.
85 public function abort()
87 $subscriber = Profile::staticGet('id', $this->subscriber);
88 $subscribed = Profile::staticGet('id', $this->subscribed);
89 if (Event::handle('StartCancelSubscription', array($subscriber, $subscribed))) {
91 Event::handle('EndCancelSubscription', array($subscriber, $subscribed));
96 * Send notifications via email etc to group administrators about
97 * this exciting new pending moderation queue item!
99 public function notify()
101 $other = Profile::staticGet('id', $this->subscriber);
102 $listenee = User::staticGet('id', $this->subscribed);
103 mail_subscribe_pending_notify_profile($listenee, $other);