3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Stream of notices for the user's inbox
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 * @category NoticeStream
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2011 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
38 * Stream of notices for the user's inbox
42 * @author Evan Prodromou <evan@status.net>
43 * @copyright 2011 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
47 class InboxNoticeStream extends ScopingNoticeStream
52 * @param User $user User to get a stream for
54 function __construct($user, $profile = -1)
56 if (is_int($profile) && $profile == -1) {
57 $profile = Profile::current();
59 // Note: we don't use CachingNoticeStream since RawInboxNoticeStream
60 // uses Inbox::staticGet(), which is cached.
61 parent::__construct(new RawInboxNoticeStream($user), $profile);
66 * Raw stream of notices for the user's inbox
70 * @author Evan Prodromou <evan@status.net>
71 * @copyright 2011 StatusNet, Inc.
72 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
73 * @link http://status.net/
75 class RawInboxNoticeStream extends NoticeStream
77 protected $user = null;
78 protected $inbox = null;
83 * @param User $user User to get a stream for
85 function __construct($user)
88 $this->inbox = Inbox::staticGet('user_id', $user->id);
94 * @param int $offset Offset from start
95 * @param int $limit Limit of number to get
96 * @param int $since_id Since this notice
97 * @param int $max_id Before this notice
99 * @return Array IDs found
101 function getNoticeIds($offset, $limit, $since_id, $max_id)
103 if (empty($this->inbox)) {
104 $this->inbox = Inbox::fromNoticeInbox($user_id);
105 if (empty($this->inbox)) {
108 $this->inbox->encache();
112 $ids = $this->inbox->unpack();
114 if (!empty($since_id)) {
116 foreach ($ids as $id) {
117 if ($id > $since_id) {
124 if (!empty($max_id)) {
126 foreach ($ids as $id) {
127 if ($id <= $max_id) {
134 $ids = array_slice($ids, $offset, $limit);