. // }}} /** * Handle network public feed * * @package GNUsocial * @category Controller * * @author Hugo Sales * @author Eliseu Amaro * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Controller; use function App\Core\I18n\_m; use App\Core\VisibilityScope; use App\Util\Common; use Component\Feed\Feed; use Component\Feed\Util\FeedController; use Symfony\Component\HttpFoundation\Request; class Feeds extends FeedController { // Can't have constants inside herestring private $public_scope = VisibilityScope::PUBLIC; private $instance_scope = VisibilityScope::PUBLIC | VisibilityScope::SITE; private $message_scope = VisibilityScope::MESSAGE; private $subscriber_scope = VisibilityScope::PUBLIC | VisibilityScope::SUBSCRIBER; /** * The Planet feed represents every local post. Which is what this instance has to share with the universe. */ public function public(Request $request): array { $data = Feed::query( query: 'note-local:true', page: $this->int('p'), language: Common::actor()?->getTopLanguage()?->getLocale(), ); return [ '_template' => 'feed/feed.html.twig', 'page_title' => _m(\is_null(Common::user()) ? 'Feed' : 'Planet'), 'should_format' => true, 'notes' => $data['notes'], ]; } /** * The Home feed represents everything that concerns a certain actor (its subscriptions) */ public function home(Request $request): array { $data = Feed::query( query: 'from:subscribed-actors OR from:subscribed-groups', page: $this->int('p'), language: Common::actor()?->getTopLanguage()?->getLocale(), ); return [ '_template' => 'feed/feed.html.twig', 'page_title' => _m('Home'), 'should_format' => true, 'notes' => $data['notes'], ]; } }