. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Http\ViewResponseTrait; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\ClipboardService; use Fisharebest\Webtrees\Services\LinkedRecordService; use Fisharebest\Webtrees\Validator; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function redirect; /** * Show a repository's page. */ class RepositoryPage implements RequestHandlerInterface { use ViewResponseTrait; private ClipboardService $clipboard_service; private LinkedRecordService $linked_record_service; /** * @param ClipboardService $clipboard_service * @param LinkedRecordService $linked_record_service */ public function __construct(ClipboardService $clipboard_service, LinkedRecordService $linked_record_service) { $this->clipboard_service = $clipboard_service; $this->linked_record_service = $linked_record_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = Validator::attributes($request)->tree(); $xref = Validator::attributes($request)->isXref()->string('xref'); $slug = Validator::attributes($request)->string('slug', ''); $record = Registry::repositoryFactory()->make($xref, $tree); $record = Auth::checkRepositoryAccess($record, false); // Redirect to correct xref/slug if ($record->xref() !== $xref || Registry::slugFactory()->make($record) !== $slug) { return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY); } $linked_sources = $this->linked_record_service->linkedSources($record); return $this->viewResponse('record-page', [ 'clipboard_facts' => $this->clipboard_service->pastableFacts($record), 'linked_families' => null, 'linked_individuals' => null, 'linked_locations' => null, 'linked_media_objects' => null, 'linked_notes' => null, 'linked_repositories' => null, 'linked_sources' => $linked_sources, 'meta_description' => '', 'meta_robots' => 'index,follow', 'record' => $record, 'title' => $record->fullName(), 'tree' => $tree, ]); } }