]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Group_join_queue.php
Logic to have group joins turn into pending joins automatically when group is set...
[quix0rs-gnu-social.git] / classes / Group_join_queue.php
1 <?php
2 /**
3  * Table Definition for request_queue
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class Group_join_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 = 'group_join_queue';       // table name
13     public $profile_id;
14     public $group_id;
15     public $created;
16
17     /* Static get */
18     function staticGet($k,$v=null)
19     { return Memcached_DataObject::staticGet('Group_join_queue',$k,$v); }
20
21     /* Pkey get */
22     function pkeyGet($k)
23     { return Memcached_DataObject::pkeyGet('Group_join_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 group join requests awaiting moderation.',
32             'fields' => array(
33                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile making the request'),
34                 'group_id' => array('type' => 'int', 'description' => 'remote or local group to join, if any'),
35                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
36             ),
37             'primary key' => array('profile_id', 'group_id'),
38             'indexes' => array(
39                 'group_join_queue_profile_id_created_idx' => array('profile_id', 'created'),
40                 'group_join_queue_group_id_created_idx' => array('group_id', 'created'),
41             ),
42             'foreign keys' => array(
43                 'group_join_queue_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
44                 'group_join_queue_group_id_fkey' => array('user_group', array('group_id' => 'id')),
45             )
46         );
47     }
48
49     public static function saveNew(Profile $profile, User_group $group)
50     {
51         $rq = new Group_join_queue();
52         $rq->profile_id = $profile->id;
53         $rq->group_id = $group->id;
54         $rq->created = common_sql_now();
55         $rq->insert();
56         return $rq;
57     }
58 }