xref: /webtrees/app/Http/RequestHandlers/SubmitterPage.php (revision b11cdcd45131b1585d66693fab363cfeb18c51a4)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * 'Copyright (C) 2023 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 submitter's page.
37 */
38class SubmitterPage 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        $tree   = Validator::attributes($request)->tree();
64        $xref   = Validator::attributes($request)->isXref()->string('xref');
65        $slug   = Validator::attributes($request)->string('slug', '');
66        $record = Registry::submitterFactory()->make($xref, $tree);
67        $record = Auth::checkSubmitterAccess($record, false);
68
69        // Redirect to correct xref/slug
70        if ($record->xref() !== $xref || Registry::slugFactory()->make($record) !== $slug) {
71            return redirect($record->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
72        }
73
74        return $this->viewResponse('record-page', [
75            'clipboard_facts'      => $this->clipboard_service->pastableFacts($record),
76            'linked_families'      => $this->linked_record_service->linkedFamilies($record),
77            'linked_individuals'   => $this->linked_record_service->linkedIndividuals($record),
78            'linked_locations'     => null,
79            'linked_media_objects' => null,
80            'linked_notes'         => null,
81            'linked_repositories'  => null,
82            'linked_sources'       => null,
83            'linked_submitters'    => null,
84            'meta_description'     => '',
85            'meta_robots'          => 'index,follow',
86            'record'               => $record,
87            'title'                => $record->fullName(),
88            'tree'                 => $tree,
89        ]);
90    }
91}
92