SubmitterPage   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 28
dl 0
loc 52
rs 10
c 0
b 0
f 0
wmc 4

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A handle() 0 29 3
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2025 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;
0 ignored issues
show
Bug introduced by
The type Fisharebest\Webtrees\Auth was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
24
use Fisharebest\Webtrees\Http\ViewResponseTrait;
25
use Fisharebest\Webtrees\Registry;
26
use Fisharebest\Webtrees\Services\ClipboardService;
0 ignored issues
show
Bug introduced by
The type Fisharebest\Webtrees\Services\ClipboardService was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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 submitter's page.
37
 */
38
class 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
        ])->withHeader('Link', '<' . $record->url() . '>; rel="canonical"');
90
    }
91
}
92