]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User_username.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / classes / User_username.php
1 <?php
2 /**
3  * Table Definition for user_username
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class User_username extends Memcached_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'user_username';                     // table name
13     public $user_id;                        // int(4)  not_null
14     public $provider_name;                  // varchar(255)  primary_key not_null
15     public $username;                       // varchar(255)  primary_key not_null
16     public $created;                        // datetime()   not_null
17     public $modified;                       // timestamp()   not_null default_CURRENT_TIMESTAMP
18
19     /* Static get */
20     function staticGet($k,$v=null)
21     { return Memcached_DataObject::staticGet('User_username',$k,$v); }
22
23     /* the code above is auto generated do not remove the tag below */
24     ###END_AUTOCODE
25
26     /**
27     * Register a user with a username on a given provider
28     * @param User User object
29     * @param string username on the given provider
30     * @param provider_name string name of the provider
31     * @return mixed User_username instance if the registration succeeded, false if it did not
32     */
33     static function register($user, $username, $provider_name)
34     {
35         $user_username = new User_username();
36         $user_username->user_id = $user->id;
37         $user_username->provider_name = $provider_name;
38         $user_username->username = $username;
39         $user_username->created = DB_DataObject_Cast::dateTime();
40         if($user_username->insert()){
41             return $user_username;
42         }else{
43             return false;
44         }
45     }
46
47     function table() {
48         return array(
49             'user_id'     => DB_DATAOBJECT_INT,
50             'username'   => DB_DATAOBJECT_STR,
51             'provider_name'   => DB_DATAOBJECT_STR ,
52             'created'   => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME
53         );
54     }
55
56     // now define the keys.
57     function keys() {
58         return array('provider_name', 'username');
59     }
60
61 }