| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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 GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-08 01:49:34 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-04-18 16:19:15 -04:00
										 |  |  |  * @category  NoticeStream | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |  * @package   GNUsocial | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  |  * @author    Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |  * @author    Alexei Sorokin <sor.alexei@meowr.ru> | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |  * @author    Stephane Berube <chimo@chromic.org> | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @category  General | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											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
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |     public function __construct(Profile $target, Profile $scoped = null) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-07-06 18:12:50 +03:00
										 |  |  |         parent::__construct( | 
					
						
							|  |  |  |             new CachingNoticeStream( | 
					
						
							|  |  |  |                 new RawInboxNoticeStream($target), | 
					
						
							|  |  |  |                 'profileall:' . $target->getID(), | 
					
						
							|  |  |  |                 false, | 
					
						
							|  |  |  |                 true | 
					
						
							|  |  |  |             ), | 
					
						
							|  |  |  |             $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 | 
					
						
							|  |  |  |  * @copyright 2011 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |  * @copyright 2014 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-09 21:00:14 +03:00
										 |  |  | class RawInboxNoticeStream extends FullNoticeStream | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +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
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |     public function __construct(Profile $target) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  |         parent::__construct(); | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |         $this->target = $target; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get IDs in a range | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |      * @param int $offset Offset from start | 
					
						
							|  |  |  |      * @param int $limit Limit of number to get | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |      * @param int $since_id Since this notice | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |      * @param int $max_id Before this notice | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |      * @return array IDs found | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-21 00:56:56 +01:00
										 |  |  |     public function getNoticeIds($offset, $limit, $since_id = null, $max_id = null) | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         $inner_notice = new Notice(); | 
					
						
							|  |  |  |         $inner_notice->whereAdd(sprintf( | 
					
						
							|  |  |  |             "notice.created >= TIMESTAMP '%s'", | 
					
						
							|  |  |  |             $inner_notice->escape($this->target->created) | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03:00
										 |  |  |         )); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 11:50:20 +02:00
										 |  |  |         if (!empty($since_id)) { | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |             $inner_notice->whereAdd("notice.id > {$since_id}"); | 
					
						
							| 
									
										
										
										
											2014-05-07 11:50:20 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (!empty($max_id)) { | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |             $inner_notice->whereAdd("notice.id <= {$max_id}"); | 
					
						
							| 
									
										
										
										
											2014-05-07 11:50:20 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         $inner_notice->whereAdd('notice.scope <> ' . Notice::MESSAGE_SCOPE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self::filterVerbs($inner_notice, $this->selectVerbs); | 
					
						
							| 
									
										
										
										
											2019-08-19 22:41:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         // The only purpose of this hack is to allow filterVerbs above
 | 
					
						
							|  |  |  |         $notice_cond = preg_replace( | 
					
						
							|  |  |  |             '/^\s+WHERE\s+/', | 
					
						
							|  |  |  |             'AND ', | 
					
						
							|  |  |  |             $inner_notice->_query['condition'] | 
					
						
							|  |  |  |         ) . 'ORDER BY notice.id DESC LIMIT ' . ($limit + $offset); | 
					
						
							| 
									
										
										
										
											2016-02-14 20:46:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         $notice = new Notice(); | 
					
						
							|  |  |  |         // Reply:: is a table of mentions
 | 
					
						
							|  |  |  |         // Subscription:: is a table of subscriptions (every user is subscribed to themselves)
 | 
					
						
							| 
									
										
										
										
											2019-09-10 22:25:45 +03: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.
 | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         $notice->query(sprintf( | 
					
						
							|  |  |  |             <<<'END' | 
					
						
							|  |  |  |             SELECT id | 
					
						
							|  |  |  |               FROM ( | 
					
						
							|  |  |  |                 ( | 
					
						
							|  |  |  |                   SELECT notice.id | 
					
						
							|  |  |  |                     FROM notice | 
					
						
							|  |  |  |                     INNER JOIN subscription | 
					
						
							|  |  |  |                     ON notice.profile_id = subscription.subscribed | 
					
						
							|  |  |  |                     WHERE subscription.subscriber = %1$d %2$s | 
					
						
							|  |  |  |                 ) UNION ALL ( | 
					
						
							|  |  |  |                   SELECT notice.id | 
					
						
							|  |  |  |                     FROM notice | 
					
						
							|  |  |  |                     INNER JOIN reply ON notice.id = reply.notice_id | 
					
						
							|  |  |  |                     WHERE reply.profile_id = %1$d %2$s | 
					
						
							|  |  |  |                 ) UNION ALL ( | 
					
						
							|  |  |  |                   SELECT notice.id | 
					
						
							|  |  |  |                     FROM notice | 
					
						
							|  |  |  |                     INNER JOIN attention ON notice.id = attention.notice_id | 
					
						
							|  |  |  |                     WHERE attention.profile_id = %1$d %2$s | 
					
						
							|  |  |  |                 ) UNION ALL ( | 
					
						
							|  |  |  |                   SELECT notice.id | 
					
						
							|  |  |  |                     FROM notice | 
					
						
							|  |  |  |                     INNER JOIN group_inbox | 
					
						
							|  |  |  |                     ON notice.id = group_inbox.notice_id | 
					
						
							|  |  |  |                     INNER JOIN group_member | 
					
						
							|  |  |  |                     ON group_inbox.group_id = group_member.group_id | 
					
						
							|  |  |  |                     WHERE group_member.profile_id = %1$d %2$s | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |               ) AS t1 | 
					
						
							|  |  |  |               ORDER BY id DESC | 
					
						
							|  |  |  |               LIMIT %3$d OFFSET %4$d; | 
					
						
							|  |  |  |             END, | 
					
						
							|  |  |  |             $this->target->getID(), | 
					
						
							|  |  |  |             $notice_cond, | 
					
						
							|  |  |  |             $limit, | 
					
						
							|  |  |  |             $offset | 
					
						
							|  |  |  |         )); | 
					
						
							| 
									
										
										
										
											2014-03-06 02:43:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         $ret = []; | 
					
						
							|  |  |  |         while ($notice->fetch()) { | 
					
						
							|  |  |  |             $ret[] = $notice->id; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-19 19:14:11 +03:00
										 |  |  |         return $ret; | 
					
						
							| 
									
										
										
										
											2011-04-07 14:52:44 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-08 01:49:34 +02:00
										 |  |  | } |