]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Fave.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / classes / Fave.php
1 <?php
2 /**
3  * Table Definition for fave
4  */
5 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
6
7 class Fave extends Memcached_DataObject
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
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
16
17     /* Static get */
18     function staticGet($k,$v=null)
19     { return Memcached_DataObject::staticGet('Fave',$k,$v); }
20
21     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23
24     static function addNew($profile, $notice) {
25
26         $fave = null;
27
28         if (Event::handle('StartFavorNotice', array($profile, $notice, &$fave))) {
29
30             $fave = new Fave();
31
32             $fave->user_id   = $profile->id;
33             $fave->notice_id = $notice->id;
34
35             if (!$fave->insert()) {
36                 common_log_db_error($fave, 'INSERT', __FILE__);
37                 return false;
38             }
39
40             Event::handle('EndFavorNotice', array($profile, $notice));
41         }
42
43         return $fave;
44     }
45
46     function delete()
47     {
48         $profile = Profile::staticGet('id', $this->user_id);
49         $notice  = Notice::staticGet('id', $this->notice_id);
50
51         $result = null;
52
53         if (Event::handle('StartDisfavorNotice', array($profile, $notice, &$result))) {
54
55             $result = parent::delete();
56
57             if ($result) {
58                 Event::handle('EndDisfavorNotice', array($profile, $notice));
59             }
60         }
61
62         return $result;
63     }
64
65     function pkeyGet($kv)
66     {
67         return Memcached_DataObject::pkeyGet('Fave', $kv);
68     }
69
70     function stream($user_id, $offset=0, $limit=NOTICES_PER_PAGE, $own=false)
71     {
72         $ids = Notice::stream(array('Fave', '_streamDirect'),
73                               array($user_id, $own),
74                               ($own) ? 'fave:ids_by_user_own:'.$user_id :
75                               'fave:ids_by_user:'.$user_id,
76                               $offset, $limit);
77         return $ids;
78     }
79
80     function _streamDirect($user_id, $own, $offset, $limit, $since_id, $max_id, $since)
81     {
82         $fav = new Fave();
83         $qry = null;
84
85         if ($own) {
86             $qry  = 'SELECT fave.* FROM fave ';
87             $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
88         } else {
89              $qry =  'SELECT fave.* FROM fave ';
90              $qry .= 'INNER JOIN notice ON fave.notice_id = notice.id ';
91              $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
92              $qry .= 'AND notice.is_local != ' . Notice::GATEWAY . ' ';
93         }
94
95         if ($since_id != 0) {
96             $qry .= 'AND notice_id > ' . $since_id . ' ';
97         }
98
99         if ($max_id != 0) {
100             $qry .= 'AND notice_id <= ' . $max_id . ' ';
101         }
102
103         if (!is_null($since)) {
104             $qry .= 'AND modified > \'' . date('Y-m-d H:i:s', $since) . '\' ';
105         }
106
107         // NOTE: we sort by fave time, not by notice time!
108
109         $qry .= 'ORDER BY modified DESC ';
110
111         if (!is_null($offset)) {
112             $qry .= "LIMIT $limit OFFSET $offset";
113         }
114
115         $fav->query($qry);
116
117         $ids = array();
118
119         while ($fav->fetch()) {
120             $ids[] = $fav->notice_id;
121         }
122
123         $fav->free();
124         unset($fav);
125
126         return $ids;
127     }
128 }