xref: /webtrees/app/Http/RequestHandlers/RepositoryPage.php (revision ad3143cc1f5191f21ec566a4ccc46aa1a5e4f909)
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\Tree;
28use Psr\Http\Message\ResponseInterface;
29use Psr\Http\Message\ServerRequestInterface;
30use Psr\Http\Server\RequestHandlerInterface;
31
32use function assert;
33use function is_string;
34use function redirect;
35
36/**
37 * Show a repository's page.
38 */
39class RepositoryPage implements RequestHandlerInterface
40{
41    use ViewResponseTrait;
42
43    // Show the repository's facts in this order:
44    private const FACT_ORDER = [
45        1 => 'REPO:NAME',
46        'REPO:ADDR',
47        'REPO:NOTE',
48        'REPO:WWW',
49        'REPO:REFN',
50        'REPO:RIN',
51        'REPO:_UID',
52        'REPO:CHAN',
53        'REPO:RESN',
54    ];
55
56    private ClipboardService $clipboard_service;
57
58    /**
59     * RepositoryPage constructor.
60     *
61     * @param ClipboardService $clipboard_service
62     */
63    public function __construct(ClipboardService $clipboard_service)
64    {
65        $this->clipboard_service = $clipboard_service;
66    }
67
68    /**
69     * @param ServerRequestInterface $request
70     *
71     * @return ResponseInterface
72     */
73    public function handle(ServerRequestInterface $request): ResponseInterface
74    {
75        $tree = $request->getAttribute('tree');
76        assert($tree instanceof Tree);
77
78        $xref = $request->getAttribute('xref');
79        assert(is_string($xref));
80
81        $record = Registry::repositoryFactory()->make($xref, $tree);
82        $record = Auth::checkRepositoryAccess($record, false);
83
84        // Redirect to correct xref/slug
85        $slug = Registry::slugFactory()->make($record);
86
87        if ($record->xref() !== $xref || $request->getAttribute('slug') !== $slug) {
88            return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
89        }
90
91        return $this->viewResponse('record-page', [
92            'clipboard_facts'      => $this->clipboard_service->pastableFacts($record),
93            'linked_families'      => null,
94            'linked_individuals'   => null,
95            'linked_media_objects' => null,
96            'linked_notes'         => null,
97            'linked_sources'       => $record->linkedSources('REPO'),
98            'meta_description'     => '',
99            'meta_robots'          => 'index,follow',
100            'record'               => $record,
101            'title'                => $record->fullName(),
102            'tree'                 => $tree,
103        ]);
104    }
105}
106