| 
									
										
										
										
											2020-03-12 17:59:13 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-20 16:53:53 +00:00
										 |  |  | // {{{ License
 | 
					
						
							| 
									
										
										
										
											2020-10-10 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-20 16:53:53 +00: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/>.
 | 
					
						
							| 
									
										
										
										
											2020-10-10 18:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-20 16:53:53 +00:00
										 |  |  | // }}}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-21 20:18:05 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Handle network public feed | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package  GNUsocial | 
					
						
							|  |  |  |  * @category Controller | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-02-19 23:29:43 +00:00
										 |  |  |  * @author    Hugo Sales <hugo@hsal.es> | 
					
						
							| 
									
										
										
										
											2020-09-04 00:15:18 +01:00
										 |  |  |  * @author    Eliseu Amaro <eliseu@fc.up.pt> | 
					
						
							| 
									
										
										
										
											2021-02-19 23:29:43 +00:00
										 |  |  |  * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							| 
									
										
										
										
											2020-03-21 20:18:05 +00:00
										 |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-12 17:59:13 +00:00
										 |  |  | namespace App\Controller; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  | use App\Core\Controller\FeedController; | 
					
						
							| 
									
										
										
										
											2020-08-15 05:47:45 +00:00
										 |  |  | use App\Core\DB\DB; | 
					
						
							| 
									
										
										
										
											2021-04-14 19:54:38 +00:00
										 |  |  | use function App\Core\I18n\_m; | 
					
						
							| 
									
										
										
										
											2021-04-15 22:26:05 +00:00
										 |  |  | use App\Core\VisibilityScope; | 
					
						
							| 
									
										
										
										
											2020-12-02 22:57:32 +00:00
										 |  |  | use App\Entity\Note; | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  | use App\Util\Exception\ClientException; | 
					
						
							| 
									
										
										
										
											2021-05-23 19:56:45 +00:00
										 |  |  | use App\Util\Exception\NotFoundException; | 
					
						
							| 
									
										
										
										
											2020-08-15 05:47:45 +00:00
										 |  |  | use Symfony\Component\HttpFoundation\Request; | 
					
						
							| 
									
										
										
										
											2020-03-15 21:21:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  | class Feeds extends FeedController | 
					
						
							| 
									
										
										
										
											2020-03-12 17:59:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-29 17:42:06 +01:00
										 |  |  |     // Can't have constants inside herestring
 | 
					
						
							| 
									
										
										
										
											2021-11-15 17:06:34 +00:00
										 |  |  |     private $public_scope     = VisibilityScope::PUBLIC; | 
					
						
							|  |  |  |     private $instance_scope   = VisibilityScope::PUBLIC | VisibilityScope::SITE; | 
					
						
							|  |  |  |     private $message_scope    = VisibilityScope::MESSAGE; | 
					
						
							| 
									
										
										
										
											2021-11-08 13:44:35 +00:00
										 |  |  |     private $subscriber_scope = VisibilityScope::PUBLIC | VisibilityScope::SUBSCRIBER; | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 13:08:33 +00:00
										 |  |  |     public function public(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $notes = Note::getAllNotes($this->instance_scope); | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             '_template'  => 'feeds/feed.html.twig', | 
					
						
							|  |  |  |             'page_title' => 'Public feed', | 
					
						
							| 
									
										
										
										
											2021-12-10 18:13:28 +00:00
										 |  |  |             'should_format' => true, | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             'notes'      => $notes, | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2021-12-04 13:08:33 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  |     public function home(Request $request, string $nickname) | 
					
						
							| 
									
										
										
										
											2020-07-06 20:51:08 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-05-23 19:56:45 +00:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2021-12-02 03:33:06 +00:00
										 |  |  |             $target = DB::findOneBy('actor', ['nickname' => $nickname, 'is_local' => true]); | 
					
						
							| 
									
										
										
										
											2021-05-23 19:56:45 +00:00
										 |  |  |         } catch (NotFoundException) { | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  |             throw new ClientException(_m('User {nickname} doesn\'t exist', ['{nickname}' => $nickname])); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-15 17:06:34 +00:00
										 |  |  |         // TODO Handle replies in home stream
 | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  |         $query = <<<END | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |                     -- Select notes from: | 
					
						
							|  |  |  |                     select note.* from note left join -- left join ensures all returned notes' ids are not null | 
					
						
							|  |  |  |                     ( | 
					
						
							| 
									
										
										
										
											2021-11-08 13:44:35 +00:00
										 |  |  |                         -- Subscribed by target | 
					
						
							|  |  |  |                         select n.id from note n inner join subscription f on n.actor_id = f.subscribed | 
					
						
							|  |  |  |                             where f.subscriber = :target_actor_id | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |                         union all | 
					
						
							|  |  |  |                         -- Replies to notes by target | 
					
						
							| 
									
										
										
										
											2021-11-15 17:06:34 +00:00
										 |  |  |                         -- select n.id from note n inner join note nr on nr.id = nr.reply_to | 
					
						
							|  |  |  |                         -- union all | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |                         -- Notifications to target | 
					
						
							|  |  |  |                         select a.activity_id from notification a inner join note n on a.activity_id = n.id | 
					
						
							|  |  |  |                         union all | 
					
						
							| 
									
										
										
										
											2021-11-08 13:44:35 +00:00
										 |  |  |                         -- Notes in groups target subscriptions | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  |                         select gi.activity_id from group_inbox gi inner join group_member gm on gi.group_id = gm.group_id | 
					
						
							|  |  |  |                             where gm.actor_id = :target_actor_id | 
					
						
							|  |  |  |                     ) | 
					
						
							|  |  |  |                     as s on s.id = note.id | 
					
						
							|  |  |  |                     where | 
					
						
							|  |  |  |                         -- Remove direct messages | 
					
						
							|  |  |  |                         note.scope <> {$this->message_scope} | 
					
						
							|  |  |  |                     order by note.modified DESC | 
					
						
							|  |  |  |             END; | 
					
						
							| 
									
										
										
										
											2021-11-08 20:21:41 +00:00
										 |  |  |         $notes = DB::sql($query, ['target_actor_id' => $target->getId()]); | 
					
						
							| 
									
										
										
										
											2020-09-05 02:37:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             '_template'  => 'feeds/feed.html.twig', | 
					
						
							|  |  |  |             'page_title' => 'Home feed', | 
					
						
							| 
									
										
										
										
											2021-12-10 18:13:28 +00:00
										 |  |  |             'should_format' => true, | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             'notes'      => $notes, | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2020-09-04 00:15:18 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function network(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-05-23 19:56:45 +00:00
										 |  |  |         $notes = Note::getAllNotes($this->public_scope); | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         return [ | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             '_template'  => 'feeds/feed.html.twig', | 
					
						
							|  |  |  |             'page_title' => 'Network feed', | 
					
						
							| 
									
										
										
										
											2021-12-10 18:13:28 +00:00
										 |  |  |             'should_format' => true, | 
					
						
							| 
									
										
										
										
											2021-12-07 21:06:39 +00:00
										 |  |  |             'notes'      => $notes, | 
					
						
							| 
									
										
										
										
											2021-12-08 10:20:37 +00:00
										 |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2020-03-12 17:59:13 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } |