3 * Table Definition for fave
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
7 class Fave extends Memcached_DataObject
10 /* the code below is auto generated do not remove the above tag */
12 public $__table = 'fave'; // table name
13 public $notice_id; // int(4) primary_key not_null
14 public $user_id; // int(4) primary_key not_null
15 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
18 function staticGet($k,$v=null)
19 { return Memcached_DataObject::staticGet('Fave',$k,$v); }
21 /* the code above is auto generated do not remove the tag below */
24 static function addNew($user, $notice) {
26 $fave->user_id = $user->id;
27 $fave->notice_id = $notice->id;
28 if (!$fave->insert()) {
29 common_log_db_error($fave, 'INSERT', __FILE__);
35 function &pkeyGet($kv)
37 return Memcached_DataObject::pkeyGet('Fave', $kv);
40 function stream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $own=false)
42 $ids = Notice::stream(array('Fave', '_streamDirect'),
43 array($user_id, $own),
44 ($own) ? 'fave:ids_by_user_own:'.$user_id :
45 'fave:ids_by_user:'.$user_id,
50 function _streamDirect($user_id, $own, $offset, $limit, $since_id, $max_id, $since)
56 $qry = 'SELECT fave.* FROM fave ';
57 $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
59 $qry = 'SELECT fave.* FROM fave ';
60 $qry .= 'INNER JOIN notice ON fave.notice_id = notice.id ';
61 $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
62 $qry .= 'AND notice.is_local != ' . Notice::GATEWAY . ' ';
66 $qry .= 'AND notice_id > ' . $since_id . ' ';
70 $qry .= 'AND notice_id <= ' . $max_id . ' ';
73 if (!is_null($since)) {
74 $qry .= 'AND modified > \'' . date('Y-m-d H:i:s', $since) . '\' ';
77 // NOTE: we sort by fave time, not by notice time!
79 $qry .= 'ORDER BY modified DESC ';
81 if (!is_null($offset)) {
82 $qry .= "LIMIT $limit OFFSET $offset";
89 while ($fav->fetch()) {
90 $ids[] = $fav->notice_id;