2008-08-27 12:24:23 +09:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Table Definition for foreign_link
|
|
|
|
*/
|
2008-09-27 01:18:24 +09:00
|
|
|
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
2008-08-27 12:24:23 +09:00
|
|
|
|
2009-01-05 10:04:07 +09:00
|
|
|
class Foreign_link extends Memcached_DataObject
|
2008-08-27 12:24:23 +09:00
|
|
|
{
|
|
|
|
###START_AUTOCODE
|
|
|
|
/* the code below is auto generated do not remove the above tag */
|
|
|
|
|
|
|
|
public $__table = 'foreign_link'; // table name
|
|
|
|
public $user_id; // int(4) primary_key not_null
|
2009-05-28 09:59:49 +09:00
|
|
|
public $foreign_id; // bigint(8) primary_key not_null unsigned
|
2008-08-27 12:24:23 +09:00
|
|
|
public $service; // int(4) primary_key not_null
|
2009-01-05 10:04:07 +09:00
|
|
|
public $credentials; // varchar(255)
|
2008-08-27 12:24:23 +09:00
|
|
|
public $noticesync; // tinyint(1) not_null default_1
|
|
|
|
public $friendsync; // tinyint(1) not_null default_2
|
|
|
|
public $profilesync; // tinyint(1) not_null default_1
|
2009-04-29 09:08:20 +09:00
|
|
|
public $last_noticesync; // datetime()
|
|
|
|
public $last_friendsync; // datetime()
|
2008-08-27 12:24:23 +09:00
|
|
|
public $created; // datetime() not_null
|
|
|
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
|
|
|
|
|
|
|
/* Static get */
|
2008-12-24 04:33:23 +09:00
|
|
|
function staticGet($k,$v=null)
|
|
|
|
{ return Memcached_DataObject::staticGet('Foreign_link',$k,$v); }
|
2008-08-27 12:24:23 +09:00
|
|
|
|
|
|
|
/* the code above is auto generated do not remove the tag below */
|
|
|
|
###END_AUTOCODE
|
2008-08-28 16:22:05 +09:00
|
|
|
|
2009-01-05 10:04:07 +09:00
|
|
|
static function getByUserID($user_id, $service)
|
|
|
|
{
|
2009-08-19 07:59:14 +09:00
|
|
|
if (empty($user_id) || empty($service)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$flink = new Foreign_link();
|
2009-08-19 07:59:14 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$flink->service = $service;
|
|
|
|
$flink->user_id = $user_id;
|
|
|
|
$flink->limit(1);
|
2008-08-28 16:22:05 +09:00
|
|
|
|
2009-08-19 07:59:14 +09:00
|
|
|
$result = $flink->find(true);
|
|
|
|
|
|
|
|
return empty($result) ? null : $flink;
|
2008-08-28 16:22:05 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2009-01-05 10:04:07 +09:00
|
|
|
|
|
|
|
static function getByForeignID($foreign_id, $service)
|
|
|
|
{
|
2009-08-19 07:59:14 +09:00
|
|
|
if (empty($foreign_id) || empty($service)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
$flink = new Foreign_link();
|
|
|
|
$flink->service = $service;
|
|
|
|
$flink->foreign_id = $foreign_id;
|
|
|
|
$flink->limit(1);
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2009-08-19 07:59:14 +09:00
|
|
|
$result = $flink->find(true);
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2009-08-19 07:59:14 +09:00
|
|
|
return empty($result) ? null : $flink;
|
|
|
|
}
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2009-01-05 10:04:07 +09:00
|
|
|
|
2009-04-14 11:19:26 +09:00
|
|
|
function set_flags($noticesend, $noticerecv, $replysync, $friendsync)
|
2009-01-05 13:02:12 +09:00
|
|
|
{
|
2009-04-14 11:19:26 +09:00
|
|
|
if ($noticesend) {
|
2009-01-05 13:02:12 +09:00
|
|
|
$this->noticesync |= FOREIGN_NOTICE_SEND;
|
|
|
|
} else {
|
|
|
|
$this->noticesync &= ~FOREIGN_NOTICE_SEND;
|
|
|
|
}
|
2009-08-19 07:59:14 +09:00
|
|
|
|
2009-04-14 11:19:26 +09:00
|
|
|
if ($noticerecv) {
|
|
|
|
$this->noticesync |= FOREIGN_NOTICE_RECV;
|
|
|
|
} else {
|
|
|
|
$this->noticesync &= ~FOREIGN_NOTICE_RECV;
|
|
|
|
}
|
2009-01-05 13:02:12 +09:00
|
|
|
|
|
|
|
if ($replysync) {
|
|
|
|
$this->noticesync |= FOREIGN_NOTICE_SEND_REPLY;
|
|
|
|
} else {
|
|
|
|
$this->noticesync &= ~FOREIGN_NOTICE_SEND_REPLY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($friendsync) {
|
|
|
|
$this->friendsync |= FOREIGN_FRIEND_RECV;
|
|
|
|
} else {
|
|
|
|
$this->friendsync &= ~FOREIGN_FRIEND_RECV;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->profilesync = 0;
|
|
|
|
}
|
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
# Convenience methods
|
2008-12-24 04:33:23 +09:00
|
|
|
function getForeignUser()
|
2009-01-05 10:04:07 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$fuser = new Foreign_user();
|
|
|
|
$fuser->service = $this->service;
|
|
|
|
$fuser->id = $this->foreign_id;
|
2009-01-05 10:04:07 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$fuser->limit(1);
|
2009-01-05 10:04:07 +09:00
|
|
|
|
2008-12-24 04:44:28 +09:00
|
|
|
if ($fuser->find(true)) {
|
2008-12-24 04:19:07 +09:00
|
|
|
return $fuser;
|
|
|
|
}
|
2009-01-05 10:04:07 +09:00
|
|
|
|
|
|
|
return null;
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2009-01-05 10:04:07 +09:00
|
|
|
|
2008-12-24 04:33:23 +09:00
|
|
|
function getUser()
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
return User::staticGet($this->user_id);
|
|
|
|
}
|
2009-01-05 10:04:07 +09:00
|
|
|
|
2010-03-05 12:14:40 +09:00
|
|
|
// Make sure we only ever delete one record at a time
|
|
|
|
function safeDelete()
|
|
|
|
{
|
|
|
|
if (!empty($this->user_id)
|
|
|
|
&& !empty($this->foreign_id)
|
|
|
|
&& !empty($this->service))
|
|
|
|
{
|
|
|
|
return $this->delete();
|
|
|
|
} else {
|
|
|
|
common_debug(LOG_WARNING,
|
|
|
|
'Foreign_link::safeDelete() tried to delete a '
|
|
|
|
. 'Foreign_link without a fully specified compound key: '
|
|
|
|
. var_export($this, true));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-27 12:24:23 +09:00
|
|
|
}
|