2020-09-04 23:18:58 +09:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 17:26:18 +09:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-09-04 23:18:58 +09:00
|
|
|
// {{{ License
|
2021-04-23 21:55:42 +09:00
|
|
|
|
2020-09-04 23:18:58 +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/>.
|
2021-04-23 21:55:42 +09:00
|
|
|
|
2020-09-04 23:18:58 +09:00
|
|
|
// }}}
|
|
|
|
|
|
|
|
namespace Plugin\Favourite;
|
|
|
|
|
|
|
|
use App\Core\DB\DB;
|
|
|
|
use App\Core\Event;
|
2021-08-19 03:14:24 +09:00
|
|
|
use App\Core\Modules\NoteHandlerPlugin;
|
2021-04-15 08:31:18 +09:00
|
|
|
use App\Core\Router\RouteLoader;
|
2021-09-18 15:27:17 +09:00
|
|
|
use App\Core\Router\Router;
|
2021-11-07 10:32:06 +09:00
|
|
|
use App\Entity\Actor;
|
2020-09-04 23:18:58 +09:00
|
|
|
use App\Entity\Note;
|
|
|
|
use App\Util\Common;
|
2021-08-23 03:58:48 +09:00
|
|
|
use App\Util\Exception\InvalidFormException;
|
|
|
|
use App\Util\Exception\NoSuchNoteException;
|
2021-11-07 10:32:06 +09:00
|
|
|
use App\Util\Exception\NotFoundException;
|
2021-08-11 10:49:23 +09:00
|
|
|
use App\Util\Exception\RedirectException;
|
2021-11-07 10:32:06 +09:00
|
|
|
use App\Util\Formatting;
|
2021-04-15 09:57:29 +09:00
|
|
|
use App\Util\Nickname;
|
2021-10-24 23:12:18 +09:00
|
|
|
use phpDocumentor\Reflection\PseudoTypes\NumericString;
|
2020-09-04 23:18:58 +09:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
|
2021-08-19 03:14:24 +09:00
|
|
|
class Favourite extends NoteHandlerPlugin
|
2020-09-04 23:18:58 +09:00
|
|
|
{
|
2020-11-07 04:47:15 +09:00
|
|
|
/**
|
|
|
|
* HTML rendering event that adds the favourite form as a note
|
|
|
|
* action, if a user is logged in
|
2021-08-11 10:49:23 +09:00
|
|
|
*
|
2021-08-23 03:58:48 +09:00
|
|
|
* @throws InvalidFormException
|
|
|
|
* @throws NoSuchNoteException
|
2021-10-10 17:26:18 +09:00
|
|
|
* @throws RedirectException
|
2021-08-11 10:49:23 +09:00
|
|
|
*
|
|
|
|
* @return bool Event hook
|
2020-11-07 04:47:15 +09:00
|
|
|
*/
|
2021-04-30 09:51:59 +09:00
|
|
|
public function onAddNoteActions(Request $request, Note $note, array &$actions): bool
|
2020-09-04 23:18:58 +09:00
|
|
|
{
|
2021-10-28 04:39:34 +09:00
|
|
|
if (is_null($user = Common::user())) {
|
2020-11-07 04:47:15 +09:00
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
|
2021-10-24 23:12:18 +09:00
|
|
|
// If note is favourite, "is_favourite" is 1
|
2021-09-18 11:22:27 +09:00
|
|
|
$opts = ['note_id' => $note->getId(), 'actor_id' => $user->getId()];
|
2021-10-22 04:14:22 +09:00
|
|
|
$is_favourite = DB::find('favourite', $opts) !== null;
|
2020-11-07 04:47:15 +09:00
|
|
|
|
2021-10-22 04:14:22 +09:00
|
|
|
// Generating URL for favourite action route
|
|
|
|
$args = ['id' => $note->getId()];
|
|
|
|
$type = Router::ABSOLUTE_PATH;
|
|
|
|
$favourite_action_url = $is_favourite ?
|
2021-10-27 01:29:14 +09:00
|
|
|
Router::url('favourite_remove', $args, $type) :
|
|
|
|
Router::url('favourite_add', $args, $type);
|
2021-08-11 10:49:23 +09:00
|
|
|
|
2021-10-24 23:12:18 +09:00
|
|
|
// Concatenating get parameter to redirect the user to where he came from
|
2021-10-27 01:29:14 +09:00
|
|
|
$favourite_action_url .= '?from=' . substr($request->getQueryString(), 2);
|
2021-10-24 23:12:18 +09:00
|
|
|
|
2021-10-22 04:14:22 +09:00
|
|
|
$extra_classes = $is_favourite ? "note-actions-set" : "note-actions-unset";
|
|
|
|
$favourite_action = [
|
|
|
|
"url" => $favourite_action_url,
|
2021-10-24 23:12:18 +09:00
|
|
|
"classes" => "button-container favourite-button-container $extra_classes",
|
|
|
|
"id" => "favourite-button-container-" . $note->getId()
|
2021-10-22 04:14:22 +09:00
|
|
|
];
|
2021-08-11 10:49:23 +09:00
|
|
|
|
2021-10-22 04:14:22 +09:00
|
|
|
$actions[] = $favourite_action;
|
2020-09-04 23:18:58 +09:00
|
|
|
return Event::next;
|
|
|
|
}
|
2021-04-15 04:59:37 +09:00
|
|
|
|
2021-09-18 15:27:17 +09:00
|
|
|
public function onAddProfileNavigationItem(array $vars, array &$res): bool
|
2021-04-15 09:57:29 +09:00
|
|
|
{
|
2021-10-27 01:29:14 +09:00
|
|
|
$res[] = ['title' => 'Favourites', 'path' => Router::url('favourites_view_by_nickname', ['nickname' => $vars['nickname']]), 'path_id' => 'favourites_view_by_nickname'];
|
|
|
|
$res[] = ['title' => 'Reverse Favourites', 'path' => Router::url('favourites_reverse_view_by_nickname', ['nickname' => $vars['nickname']]), 'path_id' => 'favourites_view_by_nickname'];
|
2021-04-30 09:51:59 +09:00
|
|
|
return Event::next;
|
2021-04-15 09:57:29 +09:00
|
|
|
}
|
|
|
|
|
2021-11-07 10:32:06 +09:00
|
|
|
public function onAppendCardNote(array $vars, array &$result) {
|
|
|
|
// if note is the original, append on end "user favourited this"
|
|
|
|
$actor = $vars['actor'];
|
|
|
|
$note = $vars['note'];
|
|
|
|
|
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
|
2021-04-30 09:51:59 +09:00
|
|
|
public function onAddRoute(RouteLoader $r): bool
|
2021-04-15 04:59:37 +09:00
|
|
|
{
|
2021-10-22 04:14:22 +09:00
|
|
|
// Add/remove note to/from favourites
|
2021-10-27 01:29:14 +09:00
|
|
|
$r->connect(id: 'favourite_add', uri_path: '/object/note/{id<\d+>}/favour', target: [Controller\Favourite::class, 'favouriteAddNote']);
|
|
|
|
$r->connect(id: 'favourite_remove', uri_path: '/object/note/{id<\d+>}/unfavour', target: [Controller\Favourite::class, 'favouriteRemoveNote']);
|
2021-10-22 04:14:22 +09:00
|
|
|
|
|
|
|
// View all favourites by actor id
|
2021-10-27 01:29:14 +09:00
|
|
|
$r->connect(id: 'favourites_view_by_actor_id', uri_path: '/actor/{id<\d+>}/favourites', target: [Controller\Favourite::class, 'favouritesViewByActorId']);
|
|
|
|
$r->connect(id: 'favourites_reverse_view_by_actor_id', uri_path: '/actor/{id<\d+>}/reverse_favourites', target: [Controller\Favourite::class, 'favouritesReverseViewByActorId']);
|
2021-10-22 04:14:22 +09:00
|
|
|
|
|
|
|
// View all favourites by nickname
|
2021-10-27 01:29:14 +09:00
|
|
|
$r->connect(id: 'favourites_view_by_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/favourites', target: [Controller\Favourite::class, 'favouritesByActorNickname']);
|
|
|
|
$r->connect(id: 'favourites_reverse_view_by_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/reverse_favourites', target: [Controller\Favourite::class, 'reverseFavouritesByActorNickname']);
|
2021-04-15 04:59:37 +09:00
|
|
|
return Event::next;
|
|
|
|
}
|
2020-09-05 04:36:37 +09:00
|
|
|
}
|