2021-09-05 18:25:53 +01:00
|
|
|
<?php
|
2021-10-10 09:26:18 +01:00
|
|
|
|
|
|
|
declare(strict_types = 1);
|
2021-09-05 18:25:53 +01:00
|
|
|
// {{{ License
|
|
|
|
// 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/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Hugo Sales <hugo@hsal.es>
|
|
|
|
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2021-12-08 22:44:04 +00:00
|
|
|
namespace Component\Conversation\Controller;
|
2021-09-05 18:25:53 +01:00
|
|
|
|
|
|
|
use App\Entity\Note;
|
|
|
|
use App\Util\Common;
|
|
|
|
use App\Util\Exception\ClientException;
|
2021-12-16 11:14:34 +00:00
|
|
|
use App\Util\Exception\NoLoggedInUser;
|
2021-09-06 19:49:03 +01:00
|
|
|
use App\Util\Exception\NoSuchNoteException;
|
2021-12-16 11:14:34 +00:00
|
|
|
use App\Util\Exception\ServerException;
|
2021-12-23 13:16:04 +00:00
|
|
|
use Component\Feed\Util\FeedController;
|
2021-09-05 18:25:53 +01:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
|
2021-12-07 23:31:20 +00:00
|
|
|
class Reply extends FeedController
|
2021-09-05 18:25:53 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Controller for the note reply non-JS page
|
2021-11-16 19:36:17 +00:00
|
|
|
*
|
|
|
|
* @throws ClientException
|
2021-12-16 11:14:34 +00:00
|
|
|
* @throws NoLoggedInUser
|
2021-11-16 19:36:17 +00:00
|
|
|
* @throws NoSuchNoteException
|
2021-12-08 22:44:04 +00:00
|
|
|
* @throws ServerException
|
2021-12-16 11:14:34 +00:00
|
|
|
*
|
|
|
|
* @return array
|
2021-09-05 18:25:53 +01:00
|
|
|
*/
|
2021-12-19 17:43:43 +00:00
|
|
|
public function addReply(Request $request, int $note_id, int $actor_id)
|
2021-09-05 18:25:53 +01:00
|
|
|
{
|
2021-12-19 17:43:43 +00:00
|
|
|
$user = Common::ensureLoggedIn();
|
2021-11-07 01:32:06 +00:00
|
|
|
|
2021-12-19 17:43:43 +00:00
|
|
|
$note = Note::getByPK($note_id);
|
2021-11-16 19:36:17 +00:00
|
|
|
if (\is_null($note) || !$note->isVisibleTo($user)) {
|
2021-09-05 18:25:53 +01:00
|
|
|
throw new NoSuchNoteException();
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
2021-11-07 01:32:06 +00:00
|
|
|
'_template' => 'reply/add_reply.html.twig',
|
2021-09-05 18:25:53 +01:00
|
|
|
'note' => $note,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|