17c7d1e03SGreg Roach<?php 27c7d1e03SGreg Roach 37c7d1e03SGreg Roach/** 47c7d1e03SGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 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 22*efd4768bSGreg Roachuse Fisharebest\Webtrees\Fact; 237c7d1e03SGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait; 247c7d1e03SGreg Roachuse Fisharebest\Webtrees\I18N; 25*efd4768bSGreg Roachuse Fisharebest\Webtrees\Registry; 267c7d1e03SGreg Roachuse Fisharebest\Webtrees\Tree; 277c7d1e03SGreg Roachuse Psr\Http\Message\ResponseInterface; 287c7d1e03SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 297c7d1e03SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 307c7d1e03SGreg Roach 317c7d1e03SGreg Roachuse function assert; 32*efd4768bSGreg Roachuse function route; 337c7d1e03SGreg Roach 347c7d1e03SGreg Roach/** 357c7d1e03SGreg Roach * Create a new unlinked individual. 367c7d1e03SGreg Roach */ 377c7d1e03SGreg Roachclass AddUnlinkedPage implements RequestHandlerInterface 387c7d1e03SGreg Roach{ 397c7d1e03SGreg Roach use ViewResponseTrait; 407c7d1e03SGreg Roach 417c7d1e03SGreg Roach /** 427c7d1e03SGreg Roach * @param ServerRequestInterface $request 437c7d1e03SGreg Roach * 447c7d1e03SGreg Roach * @return ResponseInterface 457c7d1e03SGreg Roach */ 467c7d1e03SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 477c7d1e03SGreg Roach { 487c7d1e03SGreg Roach $tree = $request->getAttribute('tree'); 497c7d1e03SGreg Roach assert($tree instanceof Tree); 507c7d1e03SGreg Roach 51*efd4768bSGreg Roach // Create a dummy individual, so that we can create new/empty facts. 52*efd4768bSGreg Roach $element = Registry::elementFactory()->make('INDI:NAME'); 53*efd4768bSGreg Roach $dummy = Registry::individualFactory()->new('', '0 @@ INDI', null, $tree); 54*efd4768bSGreg Roach $facts = [ 55*efd4768bSGreg Roach 'i' => [ 56*efd4768bSGreg Roach new Fact('1 SEX', $dummy, ''), 57*efd4768bSGreg Roach new Fact('1 NAME ' . $element->default($tree), $dummy, ''), 58*efd4768bSGreg Roach new Fact('1 BIRT', $dummy, ''), 59*efd4768bSGreg Roach new Fact('1 DEAT', $dummy, ''), 60*efd4768bSGreg Roach ], 61*efd4768bSGreg Roach ]; 62*efd4768bSGreg Roach 637c7d1e03SGreg Roach return $this->viewResponse('edit/new-individual', [ 64*efd4768bSGreg Roach 'cancel_url' => route('manage-trees', ['tree' => $tree->name()]), 65*efd4768bSGreg Roach 'facts' => $facts, 66*efd4768bSGreg Roach 'post_url' => route(AddUnlinkedAction::class, ['tree' => $tree->name()]), 677c7d1e03SGreg Roach 'tree' => $tree, 687c7d1e03SGreg Roach 'title' => I18N::translate('Create an individual'), 69*efd4768bSGreg Roach 'url' => $request->getQueryParams()['url'] ?? route('manage-trees', ['tree' => $tree->name()]), 707c7d1e03SGreg Roach ]); 717c7d1e03SGreg Roach } 727c7d1e03SGreg Roach} 73