2020-03-13 02:59:13 +09:00
|
|
|
<?php
|
|
|
|
|
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;
|
|
|
|
|
2020-07-07 05:51:08 +09:00
|
|
|
use App\Core\Controller;
|
2020-08-15 14:47:45 +09:00
|
|
|
use App\Core\DB\DB;
|
2021-02-19 07:29:55 +09:00
|
|
|
use App\Core\Event;
|
2020-09-05 11:37:05 +09:00
|
|
|
use App\Core\NoteScope;
|
2020-09-04 08:15:18 +09:00
|
|
|
use App\Util\Common;
|
2020-09-05 11:37:05 +09:00
|
|
|
use App\Util\Exception\ClientException;
|
2021-02-19 07:29:55 +09:00
|
|
|
use function App\Core\I18n\_m;
|
2020-08-15 14:47:45 +09:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2020-03-16 06:21:11 +09:00
|
|
|
|
2020-08-29 05:14:31 +09:00
|
|
|
class Network extends Controller
|
2020-03-13 02:59:13 +09:00
|
|
|
{
|
2020-09-05 11:37:05 +09:00
|
|
|
// Can't have constanst inside herestring
|
|
|
|
private $public_scope = NoteScope::PUBLIC;
|
|
|
|
private $instance_scope = NoteScope::PUBLIC | NoteScope::SITE;
|
|
|
|
private $message_scope = NoteScope::MESSAGE;
|
|
|
|
private $follower_scope = NoteScope::PUBLIC | NoteScope::FOLLOWER;
|
|
|
|
|
2020-08-27 11:28:34 +09:00
|
|
|
public function public(Request $request)
|
|
|
|
{
|
2021-02-19 07:29:55 +09:00
|
|
|
$notes = DB::sql('select * from note n ' .
|
|
|
|
"where (n.scope & {$this->instance_scope}) <> 0 " .
|
|
|
|
'order by n.created DESC',
|
|
|
|
['n' => 'App\Entity\Note']);
|
|
|
|
|
|
|
|
Event::handle('FormatNoteList', [&$notes]);
|
|
|
|
|
2020-08-27 11:28:34 +09:00
|
|
|
return [
|
2020-08-29 05:14:31 +09:00
|
|
|
'_template' => 'network/public.html.twig',
|
2021-02-19 07:29:55 +09:00
|
|
|
'notes' => $notes,
|
2020-08-27 11:28:34 +09:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-09-05 11:37:05 +09:00
|
|
|
public function home(Request $request, string $nickname)
|
2020-07-07 05:51:08 +09:00
|
|
|
{
|
2020-09-05 11:37:05 +09:00
|
|
|
$target = DB::findOneBy('gsactor', ['nickname' => $nickname]);
|
|
|
|
if ($target == null) {
|
|
|
|
throw new ClientException(_m('User {nickname} doesn\'t exist', ['{nickname}' => $nickname]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = <<<END
|
|
|
|
-- Select notes from:
|
|
|
|
select note.* from note left join -- left join ensures all returned notes' ids are not null
|
|
|
|
(
|
|
|
|
-- Followed by target
|
|
|
|
select n.id from note n inner join follow f on n.gsactor_id = f.followed
|
|
|
|
where f.follower = :target_actor_id
|
|
|
|
union all
|
|
|
|
-- Replies to notes by target
|
|
|
|
select n.id from note n inner join note nr on nr.id = nr.reply_to
|
|
|
|
union all
|
|
|
|
-- Notifications to target
|
|
|
|
select a.activity_id from notification a inner join note n on a.activity_id = n.id
|
|
|
|
union all
|
|
|
|
-- Notes in groups target follows
|
|
|
|
select gi.activity_id from group_inbox gi inner join group_member gm on gi.group_id = gm.group_id
|
|
|
|
where gm.gsactor_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;
|
|
|
|
$notes = DB::sql($query, ['note' => 'App\Entity\Note'], ['target_actor_id' => $target->getId()]);
|
|
|
|
|
2020-07-07 07:16:50 +09:00
|
|
|
return [
|
2020-08-29 05:14:31 +09:00
|
|
|
'_template' => 'network/public.html.twig',
|
2020-09-05 11:37:05 +09:00
|
|
|
'notes' => $notes,
|
2020-09-04 08:15:18 +09:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function network(Request $request)
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'_template' => 'network/public.html.twig',
|
|
|
|
'notes' => DB::dql('select n from App\Entity\Note n ' .
|
2020-09-05 11:37:05 +09:00
|
|
|
"where n.scope = {$this->public_scope} " .
|
|
|
|
'order by n.created DESC'
|
2020-09-04 08:15:18 +09:00
|
|
|
),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function replies(Request $request)
|
|
|
|
{
|
2020-09-07 06:38:37 +09:00
|
|
|
$actor_id = Common::ensureLoggedIn()->getId();
|
2020-09-04 08:15:18 +09:00
|
|
|
|
|
|
|
return [
|
|
|
|
'_template' => 'network/public.html.twig',
|
|
|
|
'notes' => DB::dql('select n from App\Entity\Note n ' .
|
2020-09-07 06:38:37 +09:00
|
|
|
'where n.reply_to is not null and n.gsactor_id = :id ' .
|
2020-10-11 03:25:49 +09:00
|
|
|
'order by n.created DESC', ['id' => $actor_id]),
|
2020-07-07 07:16:50 +09:00
|
|
|
];
|
2020-03-13 02:59:13 +09:00
|
|
|
}
|
2020-09-05 13:10:33 +09:00
|
|
|
|
|
|
|
public function favourites(Request $request)
|
|
|
|
{
|
2020-09-07 06:38:37 +09:00
|
|
|
$actor_id = Common::ensureLoggedIn()->getId();
|
2020-09-05 13:10:33 +09:00
|
|
|
|
|
|
|
return [
|
|
|
|
'_template' => 'network/public.html.twig',
|
|
|
|
'notes' => DB::dql('select f from App\Entity\Favourite f ' .
|
2020-09-07 06:38:37 +09:00
|
|
|
'where f.gsactor_id = :id ' .
|
2020-10-11 03:25:49 +09:00
|
|
|
'order by f.created DESC', ['id' => $actor_id]),
|
2020-09-05 13:10:33 +09:00
|
|
|
];
|
|
|
|
}
|
2020-03-13 02:59:13 +09:00
|
|
|
}
|