2020-03-13 02:59:13 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-05-21 01:53:53 +09:00
|
|
|
// {{{ License
|
2020-10-11 03:25:49 +09:00
|
|
|
|
2020-05-21 01:53:53 +09: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-11 03:25:49 +09:00
|
|
|
|
2020-05-21 01:53:53 +09:00
|
|
|
// }}}
|
|
|
|
|
2020-03-22 05:18:05 +09:00
|
|
|
/**
|
|
|
|
* Handle network public feed
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category Controller
|
|
|
|
*
|
2021-02-20 08:29:43 +09:00
|
|
|
* @author Hugo Sales <hugo@hsal.es>
|
2020-09-04 08:15:18 +09:00
|
|
|
* @author Eliseu Amaro <eliseu@fc.up.pt>
|
2021-02-20 08:29:43 +09:00
|
|
|
* @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org
|
2020-03-22 05:18:05 +09:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2020-03-13 02:59:13 +09:00
|
|
|
namespace App\Controller;
|
|
|
|
|
2021-04-15 04:54:38 +09:00
|
|
|
use function App\Core\I18n\_m;
|
2021-04-16 07:26:05 +09:00
|
|
|
use App\Core\VisibilityScope;
|
2021-12-23 22:27:31 +09:00
|
|
|
use App\Util\Common;
|
|
|
|
use Component\Feed\Feed;
|
|
|
|
use Component\Feed\Util\FeedController;
|
2020-08-15 14:47:45 +09:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2020-03-16 06:21:11 +09:00
|
|
|
|
2021-12-08 06:06:39 +09:00
|
|
|
class Feeds extends FeedController
|
2020-03-13 02:59:13 +09:00
|
|
|
{
|
2021-04-30 01:42:06 +09:00
|
|
|
// Can't have constants inside herestring
|
2021-11-16 02:06:34 +09:00
|
|
|
private $public_scope = VisibilityScope::PUBLIC;
|
|
|
|
private $instance_scope = VisibilityScope::PUBLIC | VisibilityScope::SITE;
|
|
|
|
private $message_scope = VisibilityScope::MESSAGE;
|
2021-11-08 22:44:35 +09:00
|
|
|
private $subscriber_scope = VisibilityScope::PUBLIC | VisibilityScope::SUBSCRIBER;
|
2020-09-05 11:37:05 +09:00
|
|
|
|
2021-12-23 22:27:31 +09: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 22:08:33 +09:00
|
|
|
{
|
2021-12-23 22:27:31 +09:00
|
|
|
$data = Feed::query(
|
|
|
|
query: 'note-local:true',
|
|
|
|
page: $this->int('p'),
|
|
|
|
language: Common::actor()?->getTopLanguage()?->getLocale(),
|
|
|
|
);
|
2021-12-08 19:20:37 +09:00
|
|
|
return [
|
2021-12-23 22:27:31 +09:00
|
|
|
'_template' => 'feed/feed.html.twig',
|
|
|
|
'page_title' => _m(\is_null(Common::user()) ? 'Feed' : 'Planet'),
|
2021-12-11 03:13:28 +09:00
|
|
|
'should_format' => true,
|
2021-12-23 22:27:31 +09:00
|
|
|
'notes' => $data['notes'],
|
2021-12-08 19:20:37 +09:00
|
|
|
];
|
2021-12-04 22:08:33 +09:00
|
|
|
}
|
|
|
|
|
2021-12-23 22:27:31 +09:00
|
|
|
/**
|
|
|
|
* The Home feed represents everything that concerns a certain actor (its subscriptions)
|
|
|
|
*/
|
|
|
|
public function home(Request $request): array
|
2020-07-07 05:51:08 +09:00
|
|
|
{
|
2021-12-23 22:27:31 +09:00
|
|
|
$data = Feed::query(
|
2021-12-24 18:27:24 +09:00
|
|
|
query: 'note-from:subscribed',
|
2021-12-23 22:27:31 +09:00
|
|
|
page: $this->int('p'),
|
|
|
|
language: Common::actor()?->getTopLanguage()?->getLocale(),
|
2021-12-24 18:27:24 +09:00
|
|
|
actor: Common::actor(),
|
2021-12-23 22:27:31 +09:00
|
|
|
);
|
2021-12-08 19:20:37 +09:00
|
|
|
return [
|
2021-12-23 22:27:31 +09:00
|
|
|
'_template' => 'feed/feed.html.twig',
|
|
|
|
'page_title' => _m('Home'),
|
2021-12-11 03:13:28 +09:00
|
|
|
'should_format' => true,
|
2021-12-23 22:27:31 +09:00
|
|
|
'notes' => $data['notes'],
|
2021-12-08 19:20:37 +09:00
|
|
|
];
|
2020-03-13 02:59:13 +09:00
|
|
|
}
|
|
|
|
}
|