]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Subscription_queue.php
Subscription_queue class for subscription approval
[quix0rs-gnu-social.git] / classes / Subscription_queue.php
1 <?php
2 /**
3  * Table Definition for subscription_queue
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class Subscription_queue extends Managed_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'subscription_queue';       // table name
13     public $subscriber;
14     public $subscribed;
15     public $created;
16
17     /* Static get */
18     function staticGet($k,$v=null)
19     { return Memcached_DataObject::staticGet('Subscription_queue',$k,$v); }
20
21     /* Pkey get */
22     function pkeyGet($k)
23     { return Memcached_DataObject::pkeyGet('Subscription_queue',$k); }
24
25     /* the code above is auto generated do not remove the tag below */
26     ###END_AUTOCODE
27
28     public static function schemaDef()
29     {
30         return array(
31             'description' => 'Holder for subscription requests awaiting moderation.',
32             'fields' => array(
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'),
36             ),
37             'primary key' => array('subscriber', 'subscribed'),
38             'indexes' => array(
39                 'group_join_queue_profile_id_created_idx' => array('subscriber', 'created'),
40                 'group_join_queue_group_id_created_idx' => array('subscribed', 'created'),
41             ),
42             'foreign keys' => array(
43                 'group_join_queue_subscriber_fkey' => array('profile', array('subscriber' => 'id')),
44                 'group_join_queue_subscribed_fkey' => array('profile', array('subscribed' => 'id')),
45             )
46         );
47     }
48
49     public static function saveNew(Profile $subscriber, Profile $other)
50     {
51         $rq = new Group_join_queue();
52         $rq->subscriber = $subscriber->id;
53         $rq->subscribed = $subscribed->id;
54         $rq->created = common_sql_now();
55         $rq->insert();
56         return $rq;
57     }
58
59     /**
60      * Send notifications via email etc to group administrators about
61      * this exciting new pending moderation queue item!
62      */
63     public function notify()
64     {
65         $subscriber = Profile::staticGet('id', $this->subscriber);
66         $subscribed = Profile::staticGet('id', $this->subscribed);
67         mail_notify_subscription_pending($subscribed, $subscriber);
68     }
69 }