]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Inbox.php
Revert "Revert "don't insert the same notice twice into an inbox""
[quix0rs-gnu-social.git] / classes / Inbox.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Data class for user location preferences
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Data
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2009 StatusNet Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
31
32 class Inbox extends Memcached_DataObject
33 {
34     const BOXCAR = 128;
35     const MAX_NOTICES = 1024;
36
37     ###START_AUTOCODE
38     /* the code below is auto generated do not remove the above tag */
39
40     public $__table = 'inbox';                           // table name
41     public $user_id;                         // int(4)  primary_key not_null
42     public $notice_ids;                      // blob
43
44     /* Static get */
45     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Inbox',$k,$v); }
46
47     /* the code above is auto generated do not remove the tag below */
48     ###END_AUTOCODE
49
50     function sequenceKey()
51     {
52         return array(false, false, false);
53     }
54
55     /**
56      * Create a new inbox from existing Notice_inbox stuff
57      */
58
59     static function initialize($user_id)
60     {
61         $inbox = Inbox::fromNoticeInbox($user_id);
62
63         unset($inbox->fake);
64
65         $result = $inbox->insert();
66
67         if (!$result) {
68             common_log_db_error($inbox, 'INSERT', __FILE__);
69             return null;
70         }
71
72         return $inbox;
73     }
74
75     static function fromNoticeInbox($user_id)
76     {
77         $ids = array();
78
79         $ni = new Notice_inbox();
80
81         $ni->user_id = $user_id;
82         $ni->selectAdd();
83         $ni->selectAdd('notice_id');
84         $ni->orderBy('notice_id DESC');
85         $ni->limit(0, self::MAX_NOTICES);
86
87         if ($ni->find()) {
88             while($ni->fetch()) {
89                 $ids[] = $ni->notice_id;
90             }
91         }
92
93         $ni->free();
94         unset($ni);
95
96         $inbox = new Inbox();
97
98         $inbox->user_id = $user_id;
99         $inbox->notice_ids = call_user_func_array('pack', array_merge(array('N*'), $ids));
100         $inbox->fake = true;
101
102         return $inbox;
103     }
104
105     static function insertNotice($user_id, $notice_id)
106     {
107         $inbox = DB_DataObject::staticGet('inbox', 'user_id', $user_id);
108
109         if (empty($inbox)) {
110             $inbox = Inbox::initialize($user_id);
111         }
112
113         if (empty($inbox)) {
114             return false;
115         }
116
117         $ids = unpack('N*', $inbox->notice_ids);
118
119         // bulk inserts sometimes fail and get restarted.
120         // Skip if this one has been inserted before.
121
122         if (in_array($notice_id, $ids)) {
123             // effectively successful
124             return true;
125         }
126
127         $result = $inbox->query(sprintf('UPDATE inbox '.
128                                         'set notice_ids = concat(cast(0x%08x as binary(4)), '.
129                                         'substr(notice_ids, 1, %d)) '.
130                                         'WHERE user_id = %d',
131                                         $notice_id,
132                                         4 * (self::MAX_NOTICES - 1),
133                                         $user_id));
134
135         if ($result) {
136             self::blow('inbox:user_id:%d', $user_id);
137         }
138
139         return $result;
140     }
141
142     static function bulkInsert($notice_id, $user_ids)
143     {
144         foreach ($user_ids as $user_id)
145         {
146             Inbox::insertNotice($user_id, $notice_id);
147         }
148     }
149
150     function stream($user_id, $offset, $limit, $since_id, $max_id, $own=false)
151     {
152         $inbox = Inbox::staticGet('user_id', $user_id);
153
154         if (empty($inbox)) {
155             $inbox = Inbox::fromNoticeInbox($user_id);
156             if (empty($inbox)) {
157                 return array();
158             } else {
159                 $inbox->encache();
160             }
161         }
162
163         $ids = unpack('N*', $inbox->notice_ids);
164
165         if (!empty($since_id)) {
166             $newids = array();
167             foreach ($ids as $id) {
168                 if ($id > $since_id) {
169                     $newids[] = $id;
170                 }
171             }
172             $ids = $newids;
173         }
174
175         if (!empty($max_id)) {
176             $newids = array();
177             foreach ($ids as $id) {
178                 if ($id <= $max_id) {
179                     $newids[] = $id;
180                 }
181             }
182             $ids = $newids;
183         }
184
185         $ids = array_slice($ids, $offset, $limit);
186
187         return $ids;
188     }
189
190     /**
191      * Wrapper for Inbox::stream() and Notice::getStreamByIds() returning
192      * additional items up to the limit if we were short due to deleted
193      * notices still being listed in the inbox.
194      *
195      * The fast path (when no items are deleted) should be just as fast; the
196      * offset parameter is applied *before* lookups for maximum efficiency.
197      *
198      * This means offset-based paging may show duplicates, but similar behavior
199      * already exists when new notices are posted between page views, so we
200      * think people will be ok with this until id-based paging is introduced
201      * to the user interface.
202      *
203      * @param int $user_id
204      * @param int $offset skip past the most recent N notices (after since_id checks)
205      * @param int $limit
206      * @param mixed $since_id return only notices after but not including this id
207      * @param mixed $max_id return only notices up to and including this id
208      * @param mixed $own ignored?
209      * @return array of Notice objects
210      *
211      * @todo consider repacking the inbox when this happens?
212      * @fixme reimplement $own if we need it?
213      */
214     function streamNotices($user_id, $offset, $limit, $since_id, $max_id, $own=false)
215     {
216         $ids = self::stream($user_id, $offset, self::MAX_NOTICES, $since_id, $max_id, $own);
217
218         // Do a bulk lookup for the first $limit items
219         // Fast path when nothing's deleted.
220         $firstChunk = array_slice($ids, 0, $limit);
221         $notices = Notice::getStreamByIds($firstChunk);
222
223         $wanted = count($firstChunk); // raw entry count in the inbox up to our $limit
224         if ($notices->N >= $wanted) {
225             return $notices;
226         }
227
228         // There were deleted notices, we'll need to look for more.
229         assert($notices instanceof ArrayWrapper);
230         $items = $notices->_items;
231         $remainder = array_slice($ids, $limit);
232
233         while (count($items) < $wanted && count($remainder) > 0) {
234             $notice = Notice::staticGet(array_shift($remainder));
235             if ($notice) {
236                 $items[] = $notice;
237             } else {
238             }
239         }
240         return new ArrayWrapper($items);
241     }
242 }