xref: /webtrees/app/Http/RequestHandlers/SubmissionPage.php (revision e99ac601cee7ced57ac8545ceba47ece1b15d883)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2022 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 submission's page.
40 */
41class SubmissionPage implements RequestHandlerInterface
42{
43    use ViewResponseTrait;
44
45    /**
46     * @param ServerRequestInterface $request
47     *
48     * @return ResponseInterface
49     */
50    public function handle(ServerRequestInterface $request): ResponseInterface
51    {
52        $tree   = Validator::attributes($request)->tree();
53        $xref   = Validator::attributes($request)->isXref()->string('xref');
54        $slug   = Validator::attributes($request)->string('slug', '');
55        $record = Registry::submissionFactory()->make($xref, $tree);
56        $record = Auth::checkSubmissionAccess($record, false);
57
58        // Redirect to correct xref/slug
59        if ($record->xref() !== $xref || Registry::slugFactory()->make($record) !== $slug) {
60            return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
61        }
62
63        return $this->viewResponse('record-page', [
64            'clipboard_facts'      => new Collection(),
65            'linked_families'      => null,
66            'linked_individuals'   => null,
67            'linked_locations'     => null,
68            'linked_media_objects' => null,
69            'linked_notes'         => null,
70            'linked_repositories'  => null,
71            'linked_sources'       => null,
72            'linked_submitters'    => null,
73            'meta_description'     => '',
74            'meta_robots'          => 'index,follow',
75            'record'               => $record,
76            'title'                => $record->fullName(),
77            'tree'                 => $tree,
78        ]);
79    }
80}
81