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 227c7d1e03SGreg Roachuse Fisharebest\Webtrees\Services\GedcomEditService; 237c7d1e03SGreg Roachuse Fisharebest\Webtrees\Tree; 24*8d9c2b68SGreg Roachuse Fisharebest\Webtrees\Validator; 257c7d1e03SGreg Roachuse Psr\Http\Message\ResponseInterface; 267c7d1e03SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 277c7d1e03SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 287c7d1e03SGreg Roach 297c7d1e03SGreg Roachuse function assert; 307c7d1e03SGreg Roachuse function redirect; 317c7d1e03SGreg Roach 327c7d1e03SGreg Roach/** 337c7d1e03SGreg Roach * Create a new unlinked individual. 347c7d1e03SGreg Roach */ 357c7d1e03SGreg Roachclass AddUnlinkedAction implements RequestHandlerInterface 367c7d1e03SGreg Roach{ 37c4943cffSGreg Roach private GedcomEditService $gedcom_edit_service; 387c7d1e03SGreg Roach 397c7d1e03SGreg Roach /** 407c7d1e03SGreg Roach * AddChildToFamilyAction constructor. 417c7d1e03SGreg Roach * 427c7d1e03SGreg Roach * @param GedcomEditService $gedcom_edit_service 437c7d1e03SGreg Roach */ 447c7d1e03SGreg Roach public function __construct(GedcomEditService $gedcom_edit_service) 457c7d1e03SGreg Roach { 467c7d1e03SGreg Roach $this->gedcom_edit_service = $gedcom_edit_service; 477c7d1e03SGreg Roach } 487c7d1e03SGreg Roach 497c7d1e03SGreg Roach /** 507c7d1e03SGreg Roach * @param ServerRequestInterface $request 517c7d1e03SGreg Roach * 527c7d1e03SGreg Roach * @return ResponseInterface 537c7d1e03SGreg Roach */ 547c7d1e03SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 557c7d1e03SGreg Roach { 567c7d1e03SGreg Roach $tree = $request->getAttribute('tree'); 577c7d1e03SGreg Roach assert($tree instanceof Tree); 587c7d1e03SGreg Roach 597c7d1e03SGreg Roach $params = (array) $request->getParsedBody(); 607c7d1e03SGreg Roach 61efd4768bSGreg Roach $levels = $params['ilevels'] ?? []; 62efd4768bSGreg Roach $tags = $params['itags'] ?? []; 63efd4768bSGreg Roach $values = $params['ivalues'] ?? []; 647c7d1e03SGreg Roach 65efd4768bSGreg Roach $gedcom = $this->gedcom_edit_service->editLinesToGedcom('INDI', $levels, $tags, $values); 667c7d1e03SGreg Roach 67efd4768bSGreg Roach $individual = $tree->createIndividual("0 @@ INDI\n" . $gedcom); 687c7d1e03SGreg Roach 69551ad4afSGreg Roach $base_url = $request->getAttribute('base_url'); 70*8d9c2b68SGreg Roach $url = Validator::parsedBody($request)->localUrl($base_url)->string('url') ?? $individual->url(); 71551ad4afSGreg Roach 72551ad4afSGreg Roach return redirect($url); 737c7d1e03SGreg Roach } 747c7d1e03SGreg Roach} 75