| 
									
										
										
										
											2008-06-17 09:35:01 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Table Definition for user_openid | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-10-08 11:23:53 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-06-17 09:35:01 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 12:10:44 +02:00
										 |  |  | class User_openid extends Managed_DataObject | 
					
						
							| 
									
										
										
										
											2008-06-17 09:35:01 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     ###START_AUTOCODE
 | 
					
						
							|  |  |  |     /* the code below is auto generated do not remove the above tag */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $__table = 'user_openid';                     // table name
 | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |     public $canonical;                       // varchar(191)  primary_key not_null
 | 
					
						
							|  |  |  |     public $display;                         // varchar(191)  unique_key not_null
 | 
					
						
							| 
									
										
										
										
											2008-06-18 07:01:26 -04:00
										 |  |  |     public $user_id;                         // int(4)   not_null
 | 
					
						
							| 
									
										
										
										
											2008-06-17 09:35:01 -04:00
										 |  |  |     public $created;                         // datetime()   not_null
 | 
					
						
							|  |  |  |     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* the code above is auto generated do not remove the tag below */ | 
					
						
							|  |  |  |     ###END_AUTOCODE
 | 
					
						
							| 
									
										
										
										
											2009-08-04 13:17:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |     public static function schemaDef() | 
					
						
							| 
									
										
										
										
											2009-11-26 02:21:23 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |         return array( | 
					
						
							|  |  |  |             'fields' => array( | 
					
						
							| 
									
										
										
										
											2015-02-12 18:18:55 +01:00
										 |  |  |                 'canonical' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'OpenID canonical string'), | 
					
						
							|  |  |  |                 'display' => array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'OpenID display string'), | 
					
						
							| 
									
										
										
										
											2013-08-19 17:08:18 +02:00
										 |  |  |                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'User ID for OpenID owner'), | 
					
						
							|  |  |  |                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), | 
					
						
							|  |  |  |                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'primary key' => array('canonical'), | 
					
						
							|  |  |  |             'unique keys' => array( | 
					
						
							|  |  |  |                 'user_openid_display_key' => array('display'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'indexes' => array( | 
					
						
							|  |  |  |                 'user_openid_user_id_idx' => array('user_id'), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             'foreign keys' => array( | 
					
						
							|  |  |  |                 'user_openid_user_id_fkey' => array('user', array('user_id' => 'id')), | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2009-11-25 23:12:24 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-27 17:42:31 -04:00
										 |  |  |     static function hasOpenID($user_id) | 
					
						
							| 
									
										
										
										
											2009-08-04 13:17:43 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $oid = new User_openid(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $oid->user_id = $user_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $cnt = $oid->find(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return ($cnt > 0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-06-17 09:35:01 -04:00
										 |  |  | } |