2020-03-12 17:59:13 +00:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-05-20 17:53:53 +01:00
|
|
|
// {{{ License
|
2020-10-10 19:25:49 +01:00
|
|
|
|
2020-05-20 17:53:53 +01: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 19:25:49 +01:00
|
|
|
|
2020-05-20 17:53:53 +01: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
|
|
|
|
*/
|
|
|
|
|
2021-12-29 13:26:11 +00:00
|
|
|
namespace Component\Feed\Controller;
|
2020-03-12 17:59:13 +00:00
|
|
|
|
2021-04-14 20:54:38 +01:00
|
|
|
use function App\Core\I18n\_m;
|
2021-12-23 13:27:31 +00:00
|
|
|
use App\Util\Common;
|
2022-01-02 20:04:52 +00:00
|
|
|
use Component\Collection\Util\Controller\FeedController;
|
2020-08-15 06:47:45 +01: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-12-23 13:27:31 +00:00
|
|
|
/**
|
|
|
|
* The Planet feed represents every local post. Which is what this instance has to share with the universe.
|
|
|
|
*/
|
|
|
|
public function public(Request $request): array
|
2021-12-04 13:08:33 +00:00
|
|
|
{
|
2022-01-10 10:17:05 +00:00
|
|
|
$data = $this->query('note-local:true');
|
2021-12-08 10:20:37 +00:00
|
|
|
return [
|
2022-01-02 20:04:52 +00:00
|
|
|
'_template' => 'collection/notes.html.twig',
|
2021-12-26 15:15:00 +00:00
|
|
|
'page_title' => _m(\is_null(Common::user()) ? 'Feed' : 'Planet'),
|
|
|
|
'notes' => $data['notes'],
|
2021-12-08 10:20:37 +00:00
|
|
|
];
|
2021-12-04 13:08:33 +00:00
|
|
|
}
|
|
|
|
|
2021-12-23 13:27:31 +00:00
|
|
|
/**
|
|
|
|
* The Home feed represents everything that concerns a certain actor (its subscriptions)
|
|
|
|
*/
|
|
|
|
public function home(Request $request): array
|
2020-07-06 21:51:08 +01:00
|
|
|
{
|
2022-01-10 10:17:05 +00:00
|
|
|
Common::ensureLoggedIn();
|
|
|
|
$data = $this->query('note-from:subscribed-person,subscribed-group,subscribed-organization,subscribed-business');
|
2021-12-08 10:20:37 +00:00
|
|
|
return [
|
2022-01-02 20:04:52 +00:00
|
|
|
'_template' => 'collection/notes.html.twig',
|
2021-12-26 15:15:00 +00:00
|
|
|
'page_title' => _m('Home'),
|
|
|
|
'notes' => $data['notes'],
|
2021-12-08 10:20:37 +00:00
|
|
|
];
|
2020-03-12 17:59:13 +00:00
|
|
|
}
|
|
|
|
}
|