17c7d1e03SGreg Roach<?php 27c7d1e03SGreg Roach 37c7d1e03SGreg Roach/** 47c7d1e03SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 67c7d1e03SGreg Roach * This program is free software: you can redistribute it and/or modify 77c7d1e03SGreg Roach * it under the terms of the GNU General Public License as published by 87c7d1e03SGreg Roach * the Free Software Foundation, either version 3 of the License, or 97c7d1e03SGreg Roach * (at your option) any later version. 107c7d1e03SGreg Roach * This program is distributed in the hope that it will be useful, 117c7d1e03SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 127c7d1e03SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 137c7d1e03SGreg Roach * GNU General Public License for more details. 147c7d1e03SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 167c7d1e03SGreg Roach */ 177c7d1e03SGreg Roach 187c7d1e03SGreg Roachdeclare(strict_types=1); 197c7d1e03SGreg Roach 207c7d1e03SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 217c7d1e03SGreg Roach 227c7d1e03SGreg Roachuse Fisharebest\Webtrees\Auth; 237c7d1e03SGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait; 247c7d1e03SGreg Roachuse Fisharebest\Webtrees\I18N; 256b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry; 269ba2a180SGreg Roachuse Fisharebest\Webtrees\Services\GedcomEditService; 27b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 287c7d1e03SGreg Roachuse Psr\Http\Message\ResponseInterface; 297c7d1e03SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 307c7d1e03SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 317c7d1e03SGreg Roach 32efd4768bSGreg Roachuse function route; 337c7d1e03SGreg Roach 347c7d1e03SGreg Roach/** 357c7d1e03SGreg Roach * Add a new child to an individual, creating a one-parent family. 367c7d1e03SGreg Roach */ 377c7d1e03SGreg Roachclass AddChildToIndividualPage implements RequestHandlerInterface 387c7d1e03SGreg Roach{ 397c7d1e03SGreg Roach use ViewResponseTrait; 407c7d1e03SGreg Roach 419ba2a180SGreg Roach private GedcomEditService $gedcom_edit_service; 429ba2a180SGreg Roach 439ba2a180SGreg Roach /** 449ba2a180SGreg Roach * @param GedcomEditService $gedcom_edit_service 459ba2a180SGreg Roach */ 469ba2a180SGreg Roach public function __construct(GedcomEditService $gedcom_edit_service) 479ba2a180SGreg Roach { 489ba2a180SGreg Roach $this->gedcom_edit_service = $gedcom_edit_service; 499ba2a180SGreg Roach } 509ba2a180SGreg Roach 517c7d1e03SGreg Roach /** 527c7d1e03SGreg Roach * @param ServerRequestInterface $request 537c7d1e03SGreg Roach * 547c7d1e03SGreg Roach * @return ResponseInterface 557c7d1e03SGreg Roach */ 567c7d1e03SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 577c7d1e03SGreg Roach { 58b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 59b55cbc6bSGreg Roach $xref = Validator::attributes($request)->isXref()->string('xref'); 606b9cb339SGreg Roach $individual = Registry::individualFactory()->make($xref, $tree); 617c7d1e03SGreg Roach $individual = Auth::checkIndividualAccess($individual, true); 627c7d1e03SGreg Roach 633a1e3ba4SGreg Roach // Name facts. 647e128bbfSGreg Roach $surname_tradition = Registry::surnameTraditionFactory() 657e128bbfSGreg Roach ->make($tree->getPreference('SURNAME_TRADITION')); 66cb7a42eaSGreg Roach 67cb7a42eaSGreg Roach switch ($individual->sex()) { 68cb7a42eaSGreg Roach case 'M': 69cb7a42eaSGreg Roach $names = $surname_tradition->newChildNames($individual, null, 'U'); 70cb7a42eaSGreg Roach break; 71cb7a42eaSGreg Roach 72cb7a42eaSGreg Roach case 'F': 73cb7a42eaSGreg Roach $names = $surname_tradition->newChildNames(null, $individual, 'U'); 74cb7a42eaSGreg Roach break; 75cb7a42eaSGreg Roach 76cb7a42eaSGreg Roach default: 77cb7a42eaSGreg Roach $names = $surname_tradition->newChildNames(null, null, 'U'); 78cb7a42eaSGreg Roach break; 79cb7a42eaSGreg Roach } 80cb7a42eaSGreg Roach 81efd4768bSGreg Roach $facts = [ 826102047cSGreg Roach 'i' => $this->gedcom_edit_service->newIndividualFacts($tree, 'U', $names), 83efd4768bSGreg Roach ]; 84efd4768bSGreg Roach 85efd4768bSGreg Roach $title = I18N::translate('Add a child to create a one-parent family'); 867c7d1e03SGreg Roach 877c7d1e03SGreg Roach return $this->viewResponse('edit/new-individual', [ 88efd4768bSGreg Roach 'facts' => $facts, 899ba2a180SGreg Roach 'gedcom_edit_service' => $this->gedcom_edit_service, 90efd4768bSGreg Roach 'post_url' => route(AddChildToIndividualAction::class, ['tree' => $tree->name(), 'xref' => $xref]), 91efd4768bSGreg Roach 'title' => $individual->fullName() . ' - ' . $title, 927c7d1e03SGreg Roach 'tree' => $tree, 939f0bdfcdSGreg Roach 'url' => Validator::queryParams($request)->isLocalUrl()->string('url', $individual->url()), 947c7d1e03SGreg Roach ]); 957c7d1e03SGreg Roach } 967c7d1e03SGreg Roach} 97