17c7d1e03SGreg Roach<?php 27c7d1e03SGreg Roach 37c7d1e03SGreg Roach/** 47c7d1e03SGreg Roach * webtrees: online genealogy 5*5bfc6897SGreg Roach * Copyright (C) 2022 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; 236b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry; 247c7d1e03SGreg Roachuse Fisharebest\Webtrees\Services\GedcomEditService; 25b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 267c7d1e03SGreg Roachuse Psr\Http\Message\ResponseInterface; 277c7d1e03SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 287c7d1e03SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 297c7d1e03SGreg Roach 307c7d1e03SGreg Roachuse function assert; 31efd4768bSGreg Roachuse function is_string; 327c7d1e03SGreg Roachuse function redirect; 337c7d1e03SGreg Roach 347c7d1e03SGreg Roach/** 357c7d1e03SGreg Roach * Link an existing individual as a new spouse. 367c7d1e03SGreg Roach */ 377c7d1e03SGreg Roachclass LinkSpouseToIndividualAction implements RequestHandlerInterface 387c7d1e03SGreg Roach{ 39c4943cffSGreg Roach private GedcomEditService $gedcom_edit_service; 407c7d1e03SGreg Roach 417c7d1e03SGreg Roach /** 427c7d1e03SGreg Roach * AddChildToFamilyAction constructor. 437c7d1e03SGreg Roach * 447c7d1e03SGreg Roach * @param GedcomEditService $gedcom_edit_service 457c7d1e03SGreg Roach */ 467c7d1e03SGreg Roach public function __construct(GedcomEditService $gedcom_edit_service) 477c7d1e03SGreg Roach { 487c7d1e03SGreg Roach $this->gedcom_edit_service = $gedcom_edit_service; 497c7d1e03SGreg Roach } 507c7d1e03SGreg 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 637c7d1e03SGreg Roach $params = (array) $request->getParsedBody(); 647c7d1e03SGreg Roach 65efd4768bSGreg Roach $levels = $params['flevels'] ?? []; 66efd4768bSGreg Roach $tags = $params['ftags'] ?? []; 67efd4768bSGreg Roach $values = $params['fvalues'] ?? []; 68efd4768bSGreg Roach 69efd4768bSGreg Roach // Create the new family 70efd4768bSGreg Roach $spid = $params['spid']; 716b9cb339SGreg Roach $spouse = Registry::individualFactory()->make($spid, $tree); 727c7d1e03SGreg Roach $spouse = Auth::checkIndividualAccess($spouse, true); 737c7d1e03SGreg Roach 747c7d1e03SGreg Roach if ($individual->sex() === 'M') { 757c7d1e03SGreg Roach $gedcom = "0 @@ FAM\n1 HUSB @" . $individual->xref() . "@\n1 WIFE @" . $spouse->xref() . '@'; 767c7d1e03SGreg Roach } else { 777c7d1e03SGreg Roach $gedcom = "0 @@ FAM\n1 WIFE @" . $individual->xref() . "@\n1 HUSB @" . $spouse->xref() . '@'; 787c7d1e03SGreg Roach } 797c7d1e03SGreg Roach 80efd4768bSGreg Roach $gedcom .= "\n" . $this->gedcom_edit_service->editLinesToGedcom('FAM', $levels, $tags, $values); 817c7d1e03SGreg Roach 827c7d1e03SGreg Roach $family = $tree->createFamily($gedcom); 837c7d1e03SGreg Roach 84efd4768bSGreg Roach $individual->createFact('1 FAMS @' . $family->xref() . '@', false); 85efd4768bSGreg Roach $spouse->createFact('1 FAMS @' . $family->xref() . '@', false); 867c7d1e03SGreg Roach 877c7d1e03SGreg Roach return redirect($family->url()); 887c7d1e03SGreg Roach } 897c7d1e03SGreg Roach} 90