]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice_inbox.php
Merge branch '0.8.x' into group-rss-empty
[quix0rs-gnu-social.git] / classes / Notice_inbox.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
23
24 // We keep 5 pages of inbox notices in memcache, +1 for pagination check
25
26 define('INBOX_CACHE_WINDOW', 101);
27
28 define('NOTICE_INBOX_SOURCE_SUB', 1);
29 define('NOTICE_INBOX_SOURCE_GROUP', 2);
30 define('NOTICE_INBOX_SOURCE_GATEWAY', -1);
31
32 class Notice_inbox extends Memcached_DataObject
33 {
34     ###START_AUTOCODE
35     /* the code below is auto generated do not remove the above tag */
36
37     public $__table = 'notice_inbox';                    // table name
38     public $user_id;                         // int(4)  primary_key not_null
39     public $notice_id;                       // int(4)  primary_key not_null
40     public $created;                         // datetime()   not_null
41     public $source;                          // tinyint(1)   default_1
42
43     /* Static get */
44     function staticGet($k,$v=null)
45     { return Memcached_DataObject::staticGet('Notice_inbox',$k,$v); }
46
47     /* the code above is auto generated do not remove the tag below */
48     ###END_AUTOCODE
49
50     function stream($user_id, $offset, $limit, $since_id, $max_id, $since, $own=false)
51     {
52         return Notice::stream(array('Notice_inbox', '_streamDirect'),
53                               array($user_id, $own),
54                               ($own) ? 'notice_inbox:by_user:'.$user_id :
55                               'notice_inbox:by_user_own:'.$user_id,
56                               $offset, $limit, $since_id, $max_id, $since);
57     }
58
59     function _streamDirect($user_id, $own, $offset, $limit, $since_id, $max_id, $since)
60     {
61         $inbox = new Notice_inbox();
62
63         $inbox->user_id = $user_id;
64
65         if (!$own) {
66             $inbox->whereAdd('source != ' . NOTICE_INBOX_SOURCE_GATEWAY);
67         }
68
69         if ($since_id != 0) {
70             $inbox->whereAdd('notice_id > ' . $since_id);
71         }
72
73         if ($max_id != 0) {
74             $inbox->whereAdd('notice_id <= ' . $max_id);
75         }
76
77         if (!is_null($since)) {
78             $inbox->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
79         }
80
81         $inbox->orderBy('notice_id DESC');
82
83         if (!is_null($offset)) {
84             $inbox->limit($offset, $limit);
85         }
86
87         $ids = array();
88
89         if ($inbox->find()) {
90             while ($inbox->fetch()) {
91                 $ids[] = $inbox->notice_id;
92             }
93         }
94
95         return $ids;
96     }
97
98     function &pkeyGet($kv)
99     {
100         return Memcached_DataObject::pkeyGet('Notice_inbox', $kv);
101     }
102 }