3 * Table Definition for foreign_link
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
7 class Foreign_link extends Memcached_DataObject
10 /* the code below is auto generated do not remove the above tag */
12 public $__table = 'foreign_link'; // table name
13 public $user_id; // int(4) primary_key not_null
14 public $foreign_id; // bigint(8) primary_key not_null unsigned
15 public $service; // int(4) primary_key not_null
16 public $credentials; // varchar(255)
17 public $noticesync; // tinyint(1) not_null default_1
18 public $friendsync; // tinyint(1) not_null default_2
19 public $profilesync; // tinyint(1) not_null default_1
20 public $last_noticesync; // datetime()
21 public $last_friendsync; // datetime()
22 public $created; // datetime() not_null
23 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
26 function staticGet($k,$v=null)
27 { return Memcached_DataObject::staticGet('Foreign_link',$k,$v); }
29 /* the code above is auto generated do not remove the tag below */
32 static function getByUserID($user_id, $service)
34 if (empty($user_id) || empty($service)) {
38 $flink = new Foreign_link();
40 $flink->service = $service;
41 $flink->user_id = $user_id;
44 $result = $flink->find(true);
46 return empty($result) ? null : $flink;
49 static function getByForeignID($foreign_id, $service)
51 if (empty($foreign_id) || empty($service)) {
54 $flink = new Foreign_link();
55 $flink->service = $service;
56 $flink->foreign_id = $foreign_id;
59 $result = $flink->find(true);
61 return empty($result) ? null : $flink;
65 function set_flags($noticesend, $noticerecv, $replysync, $friendsync)
68 $this->noticesync |= FOREIGN_NOTICE_SEND;
70 $this->noticesync &= ~FOREIGN_NOTICE_SEND;
74 $this->noticesync |= FOREIGN_NOTICE_RECV;
76 $this->noticesync &= ~FOREIGN_NOTICE_RECV;
80 $this->noticesync |= FOREIGN_NOTICE_SEND_REPLY;
82 $this->noticesync &= ~FOREIGN_NOTICE_SEND_REPLY;
86 $this->friendsync |= FOREIGN_FRIEND_RECV;
88 $this->friendsync &= ~FOREIGN_FRIEND_RECV;
91 $this->profilesync = 0;
95 function getForeignUser()
97 $fuser = new Foreign_user();
98 $fuser->service = $this->service;
99 $fuser->id = $this->foreign_id;
103 if ($fuser->find(true)) {
112 return User::staticGet($this->user_id);
115 // Make sure we only ever delete one record at a time
116 function safeDelete()
118 if (!empty($this->user_id)
119 && !empty($this->foreign_id)
120 && !empty($this->service))
122 return $this->delete();
124 common_debug(LOG_WARNING,
125 'Foreign_link::safeDelete() tried to delete a '
126 . 'Foreign_link without a fully specified compound key: '
127 . var_export($this, true));