xref: /webtrees/app/Http/RequestHandlers/MediaPage.php (revision f3ee9488f9ef10a7691b4e6efa7708170e4de3a6)
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 Psr\Http\Message\ResponseInterface;
30use Psr\Http\Message\ServerRequestInterface;
31use Psr\Http\Server\RequestHandlerInterface;
32
33use function redirect;
34
35/**
36 * Show a media object's page.
37 */
38class MediaPage implements RequestHandlerInterface
39{
40    use ViewResponseTrait;
41
42    private ClipboardService $clipboard_service;
43
44    private LinkedRecordService $linked_record_service;
45
46    /**
47     * @param ClipboardService $clipboard_service
48     * @param LinkedRecordService $linked_record_service
49     */
50    public function __construct(ClipboardService $clipboard_service, LinkedRecordService $linked_record_service)
51    {
52        $this->clipboard_service     = $clipboard_service;
53        $this->linked_record_service = $linked_record_service;
54    }
55
56    /**
57     * @param ServerRequestInterface $request
58     *
59     * @return ResponseInterface
60     */
61    public function handle(ServerRequestInterface $request): ResponseInterface
62    {
63        $data_filesystem = Registry::filesystem()->data();
64
65        $tree   = Validator::attributes($request)->tree();
66        $xref   = Validator::attributes($request)->isXref()->string('xref');
67        $slug   = Validator::attributes($request)->string('slug', '');
68        $record = Registry::mediaFactory()->make($xref, $tree);
69        $record = Auth::checkMediaAccess($record);
70
71        // Redirect to correct xref/slug
72        if ($record->xref() !== $xref || Registry::slugFactory()->make($record) !== $slug) {
73            return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
74        }
75
76        $linked_families    = $this->linked_record_service->linkedFamilies($record);
77        $linked_individuals = $this->linked_record_service->linkedIndividuals($record);
78        $linked_locations   = $this->linked_record_service->linkedLocations($record);
79        $linked_notes       = $this->linked_record_service->linkedNotes($record);
80        $linked_sources     = $this->linked_record_service->linkedSources($record);
81
82        return $this->viewResponse('media-page', [
83            'clipboard_facts'    => $this->clipboard_service->pastableFacts($record),
84            'data_filesystem'    => $data_filesystem,
85            'linked_families'    => $linked_families,
86            'linked_individuals' => $linked_individuals,
87            'linked_locations'   => $linked_locations->isEmpty() ? null : $linked_locations,
88            'linked_notes'       => $linked_notes,
89            'linked_sources'     => $linked_sources,
90            'meta_description'   => '',
91            'meta_robots'        => 'index,follow',
92            'record'             => $record,
93            'title'              => $record->fullName(),
94            'tree'               => $tree,
95        ]);
96    }
97}
98