xref: /webtrees/app/Http/RequestHandlers/NotePage.php (revision 8e0e1b25d26151378cec98290280e1e3dc075ff7)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2019 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 <http://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\Fact;
25use Fisharebest\Webtrees\Filter;
26use Fisharebest\Webtrees\Http\ViewResponseTrait;
27use Fisharebest\Webtrees\Note;
28use Fisharebest\Webtrees\Services\ClipboardService;
29use Fisharebest\Webtrees\Tree;
30use Illuminate\Support\Collection;
31use Psr\Http\Message\ResponseInterface;
32use Psr\Http\Message\ServerRequestInterface;
33use Psr\Http\Server\RequestHandlerInterface;
34
35use function assert;
36use function is_string;
37use function redirect;
38
39/**
40 * Show a note's page.
41 */
42class NotePage implements RequestHandlerInterface
43{
44    use ViewResponseTrait;
45
46    /** @var ClipboardService */
47    private $clipboard_service;
48
49    /**
50     * NotePage constructor.
51     *
52     * @param ClipboardService $clipboard_service
53     */
54    public function __construct(ClipboardService $clipboard_service)
55    {
56        $this->clipboard_service = $clipboard_service;
57    }
58
59    /**
60     * @param ServerRequestInterface $request
61     *
62     * @return ResponseInterface
63     */
64    public function handle(ServerRequestInterface $request): ResponseInterface
65    {
66        $tree = $request->getAttribute('tree');
67        assert($tree instanceof Tree);
68
69        $xref = $request->getAttribute('xref');
70        assert(is_string($xref));
71
72        $note = Note::getInstance($xref, $tree);
73        $note = Auth::checkNoteAccess($note, false);
74
75        // Redirect to correct xref/slug
76        if ($note->xref() !== $xref || $request->getAttribute('slug') !== $note->slug()) {
77            return redirect($note->url(), StatusCodeInterface::STATUS_MOVED_PERMANENTLY);
78        }
79
80        return $this->viewResponse('note-page', [
81            'clipboard_facts' => $this->clipboard_service->pastableFacts($note, new Collection()),
82            'facts'           => $this->facts($note),
83            'families'        => $note->linkedFamilies('NOTE'),
84            'individuals'     => $note->linkedIndividuals('NOTE'),
85            'note'            => $note,
86            'notes'           => new Collection(),
87            'media_objects'   => $note->linkedMedia('NOTE'),
88            'meta_robots'     => 'index,follow',
89            'sources'         => $note->linkedSources('NOTE'),
90            'text'            => Filter::formatText($note->getNote(), $tree),
91            'title'           => $note->fullName(),
92            'tree'            => $tree,
93        ]);
94    }
95
96    /**
97     * @param Note $record
98     *
99     * @return Collection<Fact>
100     */
101    private function facts(Note $record): Collection
102    {
103        return $record->facts()
104            ->filter(static function (Fact $fact): bool {
105                return $fact->getTag() !== 'CONT';
106            });
107    }
108}
109