]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User_username.php
652e7bd14125bee483b9d1aae4a6795e587d0e3a
[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 Managed_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     {
22         return Memcached_DataObject::staticGet('User_username',$k,$v);
23     }
24
25     /* the code above is auto generated do not remove the tag below */
26     ###END_AUTOCODE
27
28     /**
29     * Register a user with a username on a given provider
30     * @param User User object
31     * @param string username on the given provider
32     * @param provider_name string name of the provider
33     * @return mixed User_username instance if the registration succeeded, false if it did not
34     */
35     static function register($user, $username, $provider_name)
36     {
37         $user_username = new User_username();
38         $user_username->user_id = $user->id;
39         $user_username->provider_name = $provider_name;
40         $user_username->username = $username;
41         $user_username->created = DB_DataObject_Cast::dateTime();
42
43         if($user_username->insert()){
44             return $user_username;
45         }else{
46             return false;
47         }
48     }
49
50     function table() {
51         return array(
52             'user_id'     => DB_DATAOBJECT_INT,
53             'username'   => DB_DATAOBJECT_STR,
54             'provider_name'   => DB_DATAOBJECT_STR ,
55             'created'   => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME
56         );
57     }
58
59     // now define the keys.
60     function keys() {
61         return array('provider_name' => 'K', 'username' => 'K');
62     }
63 }