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\Fact; 25use Fisharebest\Webtrees\Http\ViewResponseTrait; 26use Fisharebest\Webtrees\Media; 27use Fisharebest\Webtrees\Registry; 28use Fisharebest\Webtrees\Services\ClipboardService; 29use Fisharebest\Webtrees\Tree; 30use Illuminate\Support\Collection; 31use Psr\Http\Message\ResponseInterface; 32use Psr\Http\Message\ServerRequestInterface; 33use Psr\Http\Server\RequestHandlerInterface; 34 35use function assert; 36use function is_string; 37use function redirect; 38 39/** 40 * Show a media object's page. 41 */ 42class MediaPage implements RequestHandlerInterface 43{ 44 use ViewResponseTrait; 45 46 private ClipboardService $clipboard_service; 47 48 /** 49 * MediaPage constructor. 50 * 51 * @param ClipboardService $clipboard_service 52 */ 53 public function __construct(ClipboardService $clipboard_service) 54 { 55 $this->clipboard_service = $clipboard_service; 56 } 57 58 /** 59 * @param ServerRequestInterface $request 60 * 61 * @return ResponseInterface 62 */ 63 public function handle(ServerRequestInterface $request): ResponseInterface 64 { 65 $data_filesystem = Registry::filesystem()->data(); 66 67 $tree = $request->getAttribute('tree'); 68 assert($tree instanceof Tree); 69 70 $xref = $request->getAttribute('xref'); 71 assert(is_string($xref)); 72 73 $media = Registry::mediaFactory()->make($xref, $tree); 74 $media = Auth::checkMediaAccess($media); 75 76 // Redirect to correct xref/slug 77 $slug = Registry::slugFactory()->make($media); 78 79 if ($media->xref() !== $xref || $request->getAttribute('slug') !== $slug) { 80 return redirect($media->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY); 81 } 82 83 return $this->viewResponse('media-page', [ 84 'clipboard_facts' => $this->clipboard_service->pastableFacts($media), 85 'data_filesystem' => $data_filesystem, 86 'families' => $media->linkedFamilies('OBJE'), 87 'facts' => $this->facts($media), 88 'individuals' => $media->linkedIndividuals('OBJE'), 89 'media' => $media, 90 'meta_description' => '', 91 'meta_robots' => 'index,follow', 92 'notes' => $media->linkedNotes('OBJE'), 93 'sources' => $media->linkedSources('OBJE'), 94 'title' => $media->fullName(), 95 'tree' => $tree, 96 ]); 97 } 98 99 /** 100 * @param Media $record 101 * 102 * @return Collection<Fact> 103 */ 104 private function facts(Media $record): Collection 105 { 106 return $record->facts() 107 ->filter(static function (Fact $fact): bool { 108 return $fact->tag() !== 'OBJE:FILE'; 109 }); 110 } 111} 112