. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Contracts\UserInterface; use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Support\Str; use stdClass; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; /** * Class UserFavoritesModule */ class UserFavoritesModule extends AbstractModule implements ModuleBlockInterface { use ModuleBlockTrait; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { /* I18N: Name of a module */ return I18N::translate('Favorites'); } /** * A sentence describing what this module does. * * @return string */ public function description(): string { /* I18N: Description of the “Favorites” module */ return I18N::translate('Display and manage a user’s favorite pages.'); } /** * Generate the HTML content of this block. * * @param Tree $tree * @param int $block_id * @param string $ctype * @param string[] $cfg * * @return string */ public function getBlock(Tree $tree, int $block_id, string $ctype = '', array $cfg = []): string { $content = view('modules/user_favorites/favorites', [ 'block_id' => $block_id, 'favorites' => $this->getFavorites($tree, Auth::user()), 'tree' => $tree, ]); if ($ctype !== '') { return view('modules/block-template', [ 'block' => Str::kebab($this->name()), 'id' => $block_id, 'config_url' => '', 'title' => $this->title(), 'content' => $content, ]); } return $content; } /** * Should this block load asynchronously using AJAX? * Simple blocks are faster in-line, more comples ones * can be loaded later. * * @return bool */ public function loadAjax(): bool { return false; } /** * Can this block be shown on the user’s home page? * * @return bool */ public function isUserBlock(): bool { return true; } /** * Can this block be shown on the tree’s home page? * * @return bool */ public function isTreeBlock(): bool { return false; } /** * Update the configuration for a block. * * @param Request $request * @param int $block_id * * @return void */ public function saveBlockConfiguration(Request $request, int $block_id): void { } /** * An HTML form to edit block settings * * @param Tree $tree * @param int $block_id * * @return void */ public function editBlockConfiguration(Tree $tree, int $block_id): void { } /** * Get the favorites for a user * * @param Tree $tree * @param UserInterface $user * * @return stdClass[] */ public function getFavorites(Tree $tree, UserInterface $user): array { return DB::table('favorite') ->where('gedcom_id', '=', $tree->id()) ->where('user_id', '=', $user->id()) ->get() ->map(function (stdClass $row) use ($tree): stdClass { if ($row->xref !== null) { $row->record = GedcomRecord::getInstance($row->xref, $tree); } else { $row->record = null; } return $row; }) ->all(); } /** * @param Request $request * @param Tree $tree * @param UserInterface $user * * @return RedirectResponse */ public function postAddFavoriteAction(Request $request, Tree $tree, UserInterface $user): RedirectResponse { $note = $request->get('note', ''); $title = $request->get('title', ''); $url = $request->get('url', ''); $xref = $request->get('xref', ''); $fav_category = $request->get('fav_category', ''); $record = GedcomRecord::getInstance($xref, $tree); if (Auth::check()) { if ($fav_category === 'url' && $url !== '') { $this->addUrlFavorite($tree, $user, $url, $title ?: $url, $note); } if ($fav_category === 'record' && $record instanceof GedcomRecord && $record->canShow()) { $this->addRecordFavorite($tree, $user, $record, $note); } } $url = route('user-page', ['ged' => $tree->name()]); return new RedirectResponse($url); } /** * @param Request $request * @param Tree $tree * @param UserInterface $user * * @return RedirectResponse */ public function postDeleteFavoriteAction(Request $request, Tree $tree, UserInterface $user): RedirectResponse { $favorite_id = (int) $request->get('favorite_id'); DB::table('favorite') ->where('favorite_id', '=', $favorite_id) ->where('user_id', '=', $user->id()) ->delete(); $url = route('user-page', ['ged' => $tree->name()]); return new RedirectResponse($url); } /** * @param Tree $tree * @param UserInterface $user * @param string $url * @param string $title * @param string $note * * @return void */ private function addUrlFavorite(Tree $tree, UserInterface $user, string $url, string $title, string $note): void { DB::table('favorite')->updateOrInsert([ 'gedcom_id' => $tree->id(), 'user_id' => $user->id(), 'url' => $url, ], [ 'favorite_type' => 'URL', 'note' => $note, 'title' => $title, ]); } /** * @param Tree $tree * @param UserInterface $user * @param GedcomRecord $record * @param string $note * * @return void */ private function addRecordFavorite(Tree $tree, UserInterface $user, GedcomRecord $record, string $note): void { DB::table('favorite')->updateOrInsert([ 'gedcom_id' => $tree->id(), 'user_id' => $user->id(), 'xref' => $record->xref(), ], [ 'favorite_type' => $record::RECORD_TYPE, 'note' => $note, ]); } }