Passed
Push — main ( 31c7e7...eeec55 )
by Greg
06:50
created

SharedNotePage::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 4
rs 10
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
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22
use Fig\Http\Message\StatusCodeInterface;
23
use Fisharebest\Webtrees\Auth;
24
use Fisharebest\Webtrees\Http\ViewResponseTrait;
25
use Fisharebest\Webtrees\Registry;
26
use Fisharebest\Webtrees\Services\ClipboardService;
27
use Fisharebest\Webtrees\Services\LinkedRecordService;
28
use Fisharebest\Webtrees\Validator;
29
use Psr\Http\Message\ResponseInterface;
30
use Psr\Http\Message\ServerRequestInterface;
31
use Psr\Http\Server\RequestHandlerInterface;
32
33
use function redirect;
34
35
/**
36
 * Show a shared-note's page.
37
 */
38
class 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