. // }}} /** * Handle network public feed * * @package GNUsocial * @category Controller * * @author Diogo Peralta Cordeiro <@diogo.site> * @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 Component\FreeNetwork\Controller; use App\Core\DB; use function App\Core\I18n\_m; use App\Util\Common; use Component\Collection\Util\Controller\FeedController; use Symfony\Component\HttpFoundation\Request; class Feeds extends FeedController { /** * The Meteorites feed represents every post coming from the * known fediverse to this instance's inbox. I.e., it's our * known network and excludes everything that is local only * or federated out. */ public function network(Request $request): array { Common::ensureLoggedIn(); $data = $this->query('note-local:false'); return [ '_template' => 'collection/notes.html.twig', 'page_title' => _m('Meteorites'), 'should_format' => true, 'notes' => $data['notes'], ]; } /** * The Planetary System feed represents every planet-centric post, i.e., * everything that is local or comes from outside with relation to local actors * or posts. */ public function clique(Request $request): array { Common::ensureLoggedIn(); // TODO: maybe make this a Collection::query $notes = DB::dql( <<<'EOF' SELECT n FROM \App\Entity\Note AS n WHERE n.is_local = true OR n.id IN ( SELECT act.object_id FROM \App\Entity\Activity AS act WHERE act.object_type = 'note' AND act.id IN (SELECT att.activity_id FROM \Component\Notification\Entity\Notification AS att WHERE att.target_id IN (SELECT a.id FROM \App\Entity\Actor a WHERE a.is_local = true)) ) ORDER BY n.created DESC, n.id DESC EOF, ); return [ '_template' => 'collection/notes.html.twig', 'page_title' => _m('Planetary System'), 'should_format' => true, 'notes' => $notes, ]; } /** * The Galaxy feed represents everything that is federated out or federated in. * Given that any local post can be federated out and it's hard to specifically exclude these, * we simply return everything here, local and remote posts. So, a galaxy. */ public function federated(Request $request): array { Common::ensureLoggedIn(); $data = $this->query('notes-all:yeah'); return [ '_template' => 'collection/notes.html.twig', 'page_title' => _m('Galaxy'), 'should_format' => true, 'notes' => $data['notes'], ]; } }