]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Inbox.php
Localisation updates for !StatusNet from !translatewiki.net !sntrans
[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->pack($ids);
100         $inbox->fake = true;
101
102         return $inbox;
103     }
104
105     /**
106      * Append the given notice to the given user's inbox.
107      * Caching updates are managed for the inbox itself.
108      *
109      * If the notice is already in this inbox, the second
110      * add will be silently dropped.
111      *
112      * @param int @user_id
113      * @param int $notice_id
114      * @return boolean success
115      */
116     static function insertNotice($user_id, $notice_id)
117     {
118         $inbox = DB_DataObject::staticGet('inbox', 'user_id', $user_id);
119
120         if (empty($inbox)) {
121             $inbox = Inbox::initialize($user_id);
122         }
123
124         if (empty($inbox)) {
125             return false;
126         }
127
128         $ids = $inbox->unpack();
129         if (in_array(intval($notice_id), $ids)) {
130             // Already in there, we probably re-ran some inbox adds
131             // due to an error. Skip the dupe silently.
132             return true;
133         }
134
135         $result = $inbox->query(sprintf('UPDATE inbox '.
136                                         'set notice_ids = concat(cast(0x%08x as binary(4)), '.
137                                         'substr(notice_ids, 1, %d)) '.
138                                         'WHERE user_id = %d',
139                                         $notice_id,
140                                         4 * (self::MAX_NOTICES - 1),
141                                         $user_id));
142
143         if ($result) {
144             self::blow('inbox:user_id:%d', $user_id);
145         }
146
147         return $result;
148     }
149
150     static function bulkInsert($notice_id, $user_ids)
151     {
152         foreach ($user_ids as $user_id)
153         {
154             Inbox::insertNotice($user_id, $notice_id);
155         }
156     }
157
158     function stream($user_id, $offset, $limit, $since_id, $max_id, $own=false)
159     {
160         $inbox = Inbox::staticGet('user_id', $user_id);
161
162         if (empty($inbox)) {
163             $inbox = Inbox::fromNoticeInbox($user_id);
164             if (empty($inbox)) {
165                 return array();
166             } else {
167                 $inbox->encache();
168             }
169         }
170
171         $ids = $inbox->unpack();
172
173         if (!empty($since_id)) {
174             $newids = array();
175             foreach ($ids as $id) {
176                 if ($id > $since_id) {
177                     $newids[] = $id;
178                 }
179             }
180             $ids = $newids;
181         }
182
183         if (!empty($max_id)) {
184             $newids = array();
185             foreach ($ids as $id) {
186                 if ($id <= $max_id) {
187                     $newids[] = $id;
188                 }
189             }
190             $ids = $newids;
191         }
192
193         $ids = array_slice($ids, $offset, $limit);
194
195         return $ids;
196     }
197
198     /**
199      * Wrapper for Inbox::stream() and Notice::getStreamByIds() returning
200      * additional items up to the limit if we were short due to deleted
201      * notices still being listed in the inbox.
202      *
203      * The fast path (when no items are deleted) should be just as fast; the
204      * offset parameter is applied *before* lookups for maximum efficiency.
205      *
206      * This means offset-based paging may show duplicates, but similar behavior
207      * already exists when new notices are posted between page views, so we
208      * think people will be ok with this until id-based paging is introduced
209      * to the user interface.
210      *
211      * @param int $user_id
212      * @param int $offset skip past the most recent N notices (after since_id checks)
213      * @param int $limit
214      * @param mixed $since_id return only notices after but not including this id
215      * @param mixed $max_id return only notices up to and including this id
216      * @param mixed $own ignored?
217      * @return array of Notice objects
218      *
219      * @todo consider repacking the inbox when this happens?
220      * @fixme reimplement $own if we need it?
221      */
222     function streamNotices($user_id, $offset, $limit, $since_id, $max_id, $own=false)
223     {
224         $ids = self::stream($user_id, $offset, self::MAX_NOTICES, $since_id, $max_id, $own);
225
226         // Do a bulk lookup for the first $limit items
227         // Fast path when nothing's deleted.
228         $firstChunk = array_slice($ids, 0, $limit);
229         $notices = Notice::getStreamByIds($firstChunk);
230
231         $wanted = count($firstChunk); // raw entry count in the inbox up to our $limit
232         if ($notices->N >= $wanted) {
233             return $notices;
234         }
235
236         // There were deleted notices, we'll need to look for more.
237         assert($notices instanceof ArrayWrapper);
238         $items = $notices->_items;
239         $remainder = array_slice($ids, $limit);
240
241         while (count($items) < $wanted && count($remainder) > 0) {
242             $notice = Notice::staticGet(array_shift($remainder));
243             if ($notice) {
244                 $items[] = $notice;
245             } else {
246             }
247         }
248         return new ArrayWrapper($items);
249     }
250
251     /**
252      * Saves a list of integer notice_ids into a packed blob in this object.
253      * @param array $ids list of integer notice_ids
254      */
255     protected function pack(array $ids)
256     {
257         $this->notice_ids = call_user_func_array('pack', array_merge(array('N*'), $ids));
258     }
259
260     /**
261      * @return array of integer notice_ids
262      */
263     protected function unpack()
264     {
265         return unpack('N*', $this->notice_ids);
266     }
267 }