Issues (2559)

Http/RequestHandlers/AddSpouseToIndividualPage.php (1 issue)

Labels
Severity
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 Fisharebest\Webtrees\Auth;
23
use Fisharebest\Webtrees\Http\ViewResponseTrait;
24
use Fisharebest\Webtrees\I18N;
25
use Fisharebest\Webtrees\Registry;
26
use Fisharebest\Webtrees\Services\GedcomEditService;
27
use Fisharebest\Webtrees\Validator;
28
use Psr\Http\Message\ResponseInterface;
29
use Psr\Http\Message\ServerRequestInterface;
30
use Psr\Http\Server\RequestHandlerInterface;
31
32
use function route;
33
34
/**
35
 * Add a new spouse to an individual, creating a new family.
36
 */
37
class AddSpouseToIndividualPage implements RequestHandlerInterface
38
{
39
    use ViewResponseTrait;
40
41
    // Create mixed-sex couples by default
42
    private const array OPPOSITE_SEX = [
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 42 at column 24
Loading history...
43
        'F' => 'M',
44
        'M' => 'F',
45
        'U' => 'U',
46
        'X' => 'U',
47
    ];
48
49
    private GedcomEditService $gedcom_edit_service;
50
51
    /**
52
     * @param GedcomEditService $gedcom_edit_service
53
     */
54
    public function __construct(GedcomEditService $gedcom_edit_service)
55
    {
56
        $this->gedcom_edit_service = $gedcom_edit_service;
57
    }
58
59
    /**
60
     * @param ServerRequestInterface $request
61
     *
62
     * @return ResponseInterface
63
     */
64
    public function handle(ServerRequestInterface $request): ResponseInterface
65
    {
66
        $tree       = Validator::attributes($request)->tree();
67
        $xref       = Validator::attributes($request)->isXref()->string('xref');
68
        $individual = Registry::individualFactory()->make($xref, $tree);
69
        $individual = Auth::checkIndividualAccess($individual, true);
70
71
        $sex = self::OPPOSITE_SEX[$individual->sex()];
72
73
        // Name facts.
74
        $surname_tradition = Registry::surnameTraditionFactory()
75
            ->make($tree->getPreference('SURNAME_TRADITION'));
76
77
        $names = $surname_tradition->newSpouseNames($individual, $sex);
78
79
        $facts = [
80
            'i' => $this->gedcom_edit_service->newIndividualFacts($tree, $sex, $names),
81
            'f' => $this->gedcom_edit_service->newFamilyFacts($tree),
82
        ];
83
84
        $titles = [
85
            'F' => I18N::translate('Add a wife'),
86
            'M' => I18N::translate('Add a husband'),
87
            'U' => I18N::translate('Add a spouse'),
88
        ];
89
90
        $title = $titles[$sex];
91
92
        return $this->viewResponse('edit/new-individual', [
93
            'facts'               => $facts,
94
            'gedcom_edit_service' => $this->gedcom_edit_service,
95
            'post_url'            => route(AddSpouseToIndividualAction::class, ['tree' => $tree->name(), 'xref' => $xref]),
96
            'title'               => $individual->fullName() . ' - ' . $title,
97
            'tree'                => $tree,
98
            'url'                 => Validator::queryParams($request)->isLocalUrl()->string('url', $individual->url()),
99
        ]);
100
    }
101
}
102