xref: /webtrees/app/Http/RequestHandlers/SharedNotePage.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 shared-note's page.
37 */
38class SharedNotePage 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::sharedNoteFactory()->make($xref, $tree);
67        $record = Auth::checkSharedNoteAccess($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        $linked_families     = $this->linked_record_service->linkedFamilies($record);
75        $linked_individuals  = $this->linked_record_service->linkedIndividuals($record);
76        $linked_locations    = $this->linked_record_service->linkedLocations($record);
77        $linked_media        = $this->linked_record_service->linkedMedia($record);
78        $linked_repositories = $this->linked_record_service->linkedRepositories($record);
79        $linked_sources      = $this->linked_record_service->linkedSources($record);
80        $linked_submitters   = $this->linked_record_service->linkedSubmitters($record);
81
82        return $this->viewResponse('shared-note-page', [
83            'clipboard_facts'      => $this->clipboard_service->pastableFacts($record),
84            'linked_families'      => $linked_families,
85            'linked_individuals'   => $linked_individuals,
86            'linked_locations'     => $linked_locations->isEmpty() ? null : $linked_locations,
87            'linked_media_objects' => $linked_media,
88            'linked_repositories'  => $linked_repositories,
89            'linked_sources'       => $linked_sources,
90            'linked_submitters'    => $linked_submitters,
91            'meta_description'     => '',
92            'meta_robots'          => 'index,follow',
93            'record'               => $record,
94            'title'                => $record->fullName(),
95            'tree'                 => $tree,
96        ]);
97    }
98}
99