| 
									
										
										
										
											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/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  | if (!defined('GNUSOCIAL')) { 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 04:36:00 +01:00
										 |  |  |         // FIXME: we don't use CachingNoticeStream - but maybe we should?
 | 
					
						
							| 
									
										
										
										
											2014-03-06 11:47:27 +01:00
										 |  |  |         parent::__construct(new CachingNoticeStream(new RawInboxNoticeStream($target), 'profileall'), $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/ | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-02-16 02:21:39 +01:00
										 |  |  | class RawInboxNoticeStream extends FullNoticeStream | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  |         parent::__construct(); | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							| 
									
										
										
										
											2014-03-06 03:43:48 +01:00
										 |  |  |         $notice->selectAdd('id'); | 
					
						
							|  |  |  |         $notice->whereAdd(sprintf('notice.created > "%s"', $notice->escape($this->target->created))); | 
					
						
							|  |  |  |         // Reply:: is a table of mentions
 | 
					
						
							|  |  |  |         // Subscription:: is a table of subscriptions (every user is subscribed to themselves)
 | 
					
						
							|  |  |  |         $notice->whereAdd( | 
					
						
							|  |  |  |                 sprintf('notice.id IN (SELECT notice_id FROM reply WHERE profile_id=%1$d) ' . | 
					
						
							| 
									
										
										
										
											2014-03-07 02:49:42 +01:00
										 |  |  |                         'OR notice.profile_id IN (SELECT subscribed FROM subscription WHERE subscriber=%1$d) ' . | 
					
						
							|  |  |  |                         'OR notice.id IN (SELECT notice_id FROM group_inbox WHERE group_id IN (SELECT group_id FROM group_member WHERE profile_id=%1$d))' . | 
					
						
							| 
									
										
										
										
											2014-03-06 14:22:26 +01:00
										 |  |  |                         'OR notice.id IN (SELECT notice_id FROM attention WHERE profile_id=%1$d)', | 
					
						
							|  |  |  |                     $this->target->id) | 
					
						
							| 
									
										
										
										
											2014-03-06 03:43:48 +01:00
										 |  |  |             ); | 
					
						
							| 
									
										
										
										
											2014-05-07 11:50:20 +02:00
										 |  |  |         if (!empty($since_id)) { | 
					
						
							|  |  |  |             $notice->whereAdd(sprintf('notice.id > %d', $since_id)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!empty($max_id)) { | 
					
						
							|  |  |  |             $notice->whereAdd(sprintf('notice.id <= %d', $max_id)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self::filterVerbs($notice, $this->selectVerbs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |         $notice->limit($offset, $limit); | 
					
						
							| 
									
										
										
										
											2014-05-10 15:06:31 +02:00
										 |  |  |         // notice.id will give us even really old posts, which were
 | 
					
						
							|  |  |  |         // recently imported. For example if a remote instance had
 | 
					
						
							|  |  |  |         // problems and just managed to post here. Another solution
 | 
					
						
							|  |  |  |         // would be to have a 'notice.imported' field and order by it.
 | 
					
						
							|  |  |  |         $notice->orderBy('notice.id DESC'); | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!$notice->find()) { | 
					
						
							|  |  |  |             return array(); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-06 03:43:48 +01:00
										 |  |  |         $ids = $notice->fetchAll('id'); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $ids; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-08 01:49:34 +02:00
										 |  |  | } |