. // }}} namespace Plugin\Favourite; use App\Core\DB\DB; use App\Core\Event; use App\Core\Modules\NoteHandlerPlugin; use App\Core\Router\RouteLoader; use App\Core\Router\Router; use App\Entity\Note; use App\Util\Common; use App\Util\Exception\InvalidFormException; use App\Util\Exception\NoSuchNoteException; use App\Util\Exception\RedirectException; use App\Util\Nickname; use phpDocumentor\Reflection\PseudoTypes\NumericString; use Symfony\Component\HttpFoundation\Request; class Favourite extends NoteHandlerPlugin { /** * HTML rendering event that adds the favourite form as a note * action, if a user is logged in * * @throws InvalidFormException * @throws NoSuchNoteException * @throws RedirectException * * @return bool Event hook */ public function onAddNoteActions(Request $request, Note $note, array &$actions): bool { if (($user = Common::user()) === null) { return Event::next; } // If note is favourite, "is_favourite" is 1 $opts = ['note_id' => $note->getId(), 'actor_id' => $user->getId()]; $is_favourite = DB::find('favourite', $opts) !== null; // Generating URL for favourite action route $args = ['id' => $note->getId()]; $type = Router::ABSOLUTE_PATH; $favourite_action_url = $is_favourite ? Router::url('note_remove_favourite', $args, $type) : Router::url('note_add_favourite', $args, $type); // Concatenating get parameter to redirect the user to where he came from $favourite_action_url .= '?from=' . urlencode(Common::route()); $extra_classes = $is_favourite ? "note-actions-set" : "note-actions-unset"; $favourite_action = [ "url" => $favourite_action_url, "classes" => "button-container favourite-button-container $extra_classes", "id" => "favourite-button-container-" . $note->getId() ]; $actions[] = $favourite_action; return Event::next; } public function onAddProfileNavigationItem(array $vars, array &$res): bool { $res[] = ['title' => 'Favourites', 'path' => Router::url('actor_favourites_nickname', ['nickname' => $vars['nickname']]), 'path_id' => 'actor_favourites_nickname']; $res[] = ['title' => 'Reverse Favourites', 'path' => Router::url('actor_reverse_favourites_nickname', ['nickname' => $vars['nickname']]), 'path_id' => 'actor_reverse_favourites_nickname']; return Event::next; } public function onAddRoute(RouteLoader $r): bool { // Add/remove note to/from favourites $r->connect(id: 'note_add_favourite', uri_path: '/note/{id<\d+>}/add_favourite', target: [Controller\Favourite::class, 'noteAddFavourite']); $r->connect(id: 'note_remove_favourite', uri_path: '/note/{id<\d+>}/remove_favourite', target: [Controller\Favourite::class, 'noteRemoveFavourite']); // View all favourites by actor id $r->connect(id: 'actor_favourites_id', uri_path: '/actor/{id<\d+>}/favourites', target: [Controller\Favourite::class, 'favouritesByActorId']); $r->connect(id: 'actor_reverse_favourites_id', uri_path: '/actor/{id<\d+>}/reverse_favourites', target: [Controller\Favourite::class, 'reverseFavouritesByActorId']); // View all favourites by nickname $r->connect(id: 'actor_favourites_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/favourites', target: [Controller\Favourite::class, 'favouritesByActorNickname']); $r->connect(id: 'actor_reverse_favourites_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/reverse_favourites', target: [Controller\Favourite::class, 'reverseFavouritesByActorNickname']); return Event::next; } }