]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Group_join_queue.php
Tweaking request_queue -> group_join_queue, easier to deal with the indexes and keys...
[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     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23
24     public static function schemaDef()
25     {
26         return array(
27             'description' => 'Holder for group join requests awaiting moderation.',
28             'fields' => array(
29                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'remote or local profile making the request'),
30                 'group_id' => array('type' => 'int', 'description' => 'remote or local group to join, if any'),
31                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
32             ),
33             'primary key' => array('profile_id', 'group_id'),
34             'indexes' => array(
35                 'group_join_queue_profile_id_created_idx' => array('profile_id', 'created'),
36                 'group_join_queue_group_id_created_idx' => array('group_id', 'created'),
37             ),
38             'foreign keys' => array(
39                 'group_join_queue_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
40                 'group_join_queue_group_id_fkey' => array('user_group', array('group_id' => 'id')),
41             )
42         );
43     }
44
45     public static function saveNew(Profile $profile, User_group $group)
46     {
47         $rq = new Group_join_queue();
48         $rq->profile_id = $profile->id;
49         $rq->group_id = $group->id;
50         $rq->created = common_sql_now();
51         $rq->insert();
52         return $rq;
53     }
54 }