| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2011, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * Stream of notices for a profile's "all" feed | 
					
						
							| 
									
										
										
										
											2011-04-08 01:49:34 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-04-18 16:19:15 -04:00
										 |  |  |  * @category  NoticeStream | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc. | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  | if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * Stream of notices for a profile's "all" feed | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category  General | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc. | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-04-15 18:20:06 -04:00
										 |  |  | class InboxNoticeStream extends ScopingNoticeStream | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Constructor | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |      * @param Profile $target Profile to get a stream for | 
					
						
							|  |  |  |      * @param Profile $scoped Currently scoped profile (if null, it is fetched) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |     function __construct(Profile $target, Profile $scoped=null) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         if ($scoped === null) { | 
					
						
							|  |  |  |             $scoped = Profile::current(); | 
					
						
							| 
									
										
										
										
											2011-04-11 12:32:35 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |         // Note: we don't use CachingNoticeStream since RawInboxNoticeStream
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         // uses Inbox::getKV(), which is cached.
 | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         parent::__construct(new RawInboxNoticeStream($target), $scoped); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * Raw stream of notices for the target's inbox | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category  General | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class RawInboxNoticeStream extends NoticeStream | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |     protected $target  = null; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     protected $inbox = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Constructor | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |      * @param Profile $target Profile to get a stream for | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |     function __construct(Profile $target) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         $this->target  = $target; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get IDs in a range | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param int $offset   Offset from start | 
					
						
							|  |  |  |      * @param int $limit    Limit of number to get | 
					
						
							|  |  |  |      * @param int $since_id Since this notice | 
					
						
							|  |  |  |      * @param int $max_id   Before this notice | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return Array IDs found | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function getNoticeIds($offset, $limit, $since_id, $max_id) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         $notice = new Notice(); | 
					
						
							|  |  |  |         $notice->selectAdd(); | 
					
						
							|  |  |  |         $notice->selectAdd('notice_id'); | 
					
						
							|  |  |  |         // Reply is a class for mentions
 | 
					
						
							|  |  |  |         $notice->joinAdd(array('id', 'reply:notice_id')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $notice->profile_id = $this->target->id; | 
					
						
							|  |  |  |         $notice->limit($offset, $limit); | 
					
						
							|  |  |  |         $notice->orderBy('created DESC'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$notice->find()) { | 
					
						
							|  |  |  |             return array(); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         $ids = $notice->fetchAll('notice_id'); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $ids; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-04-03 17:15:58 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function getNotices($offset, $limit, $sinceId, $maxId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $all = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         do { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-29 10:13:07 +02:00
										 |  |  |             $notices = Notice::pivotGet('id', $ids); | 
					
						
							| 
									
										
										
										
											2012-04-03 17:15:58 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // By default, takes out false values
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $notices = array_filter($notices); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $all = array_merge($all, $notices); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (count($notices < count($ids))) { | 
					
						
							|  |  |  |                 $offset += $limit; | 
					
						
							|  |  |  |                 $limit  -= count($notices); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         } while (count($notices) < count($ids) && count($ids) > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return new ArrayWrapper($all); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-08 01:49:34 +02:00
										 |  |  | } |