1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Http\RequestHandlers; 21 22use Fig\Http\Message\StatusCodeInterface; 23use Fisharebest\Webtrees\Auth; 24use Fisharebest\Webtrees\Http\ViewResponseTrait; 25use Fisharebest\Webtrees\Registry; 26use Fisharebest\Webtrees\Services\ClipboardService; 27use Fisharebest\Webtrees\Services\LinkedRecordService; 28use Fisharebest\Webtrees\Validator; 29use Illuminate\Support\Collection; 30use Psr\Http\Message\ResponseInterface; 31use Psr\Http\Message\ServerRequestInterface; 32use Psr\Http\Server\RequestHandlerInterface; 33 34use function assert; 35use function is_string; 36use function redirect; 37 38/** 39 * Show a location's page. 40 */ 41class LocationPage implements RequestHandlerInterface 42{ 43 use ViewResponseTrait; 44 45 private ClipboardService $clipboard_service; 46 47 private LinkedRecordService $linked_record_service; 48 49 /** 50 * @param ClipboardService $clipboard_service 51 * @param LinkedRecordService $linked_record_service 52 */ 53 public function __construct(ClipboardService $clipboard_service, LinkedRecordService $linked_record_service) 54 { 55 $this->clipboard_service = $clipboard_service; 56 $this->linked_record_service = $linked_record_service; 57 } 58 59 /** 60 * @param ServerRequestInterface $request 61 * 62 * @return ResponseInterface 63 */ 64 public function handle(ServerRequestInterface $request): ResponseInterface 65 { 66 $tree = Validator::attributes($request)->tree(); 67 $xref = Validator::attributes($request)->isXref()->string('xref'); 68 $slug = Validator::attributes($request)->string('slug', ''); 69 $record = Registry::locationFactory()->make($xref, $tree); 70 $record = Auth::checkLocationAccess($record, false); 71 72 // Redirect to correct xref/slug 73 if ($record->xref() !== $xref || Registry::slugFactory()->make($record) !== $slug) { 74 return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY); 75 } 76 77 return $this->viewResponse('record-page', [ 78 'clipboard_facts' => $this->clipboard_service->pastableFacts($record), 79 'linked_families' => $this->linked_record_service->linkedFamilies($record), 80 'linked_individuals' => $this->linked_record_service->linkedIndividuals($record), 81 'linked_locations' => $this->linked_record_service->linkedLocations($record), 82 'linked_media_objects' => null, 83 'linked_notes' => null, 84 'linked_repositories' => null, 85 'linked_sources' => $this->linked_record_service->linkedSources($record), 86 'record' => $record, 87 'title' => $record->fullName(), 88 'tree' => $tree, 89 ]); 90 } 91} 92