xref: /webtrees/app/Http/RequestHandlers/LinkChildToFamilyAction.php (revision 6b9cb339562c8aa4681c7eff2bf3bdf401cc9edd)
17c7d1e03SGreg Roach<?php
27c7d1e03SGreg Roach
37c7d1e03SGreg Roach/**
47c7d1e03SGreg Roach * webtrees: online genealogy
57c7d1e03SGreg Roach * Copyright (C) 2020 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
157c7d1e03SGreg Roach * along with this program. If not, see <http://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\GedcomCode\GedcomCodePedi;
24*6b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry;
257c7d1e03SGreg Roachuse Fisharebest\Webtrees\Tree;
267c7d1e03SGreg Roachuse Psr\Http\Message\ResponseInterface;
277c7d1e03SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
287c7d1e03SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
297c7d1e03SGreg Roach
307c7d1e03SGreg Roachuse function assert;
317c7d1e03SGreg Roachuse function redirect;
327c7d1e03SGreg Roach
337c7d1e03SGreg Roach/**
347c7d1e03SGreg Roach * Link an existing individual as child in an existing family.
357c7d1e03SGreg Roach */
367c7d1e03SGreg Roachclass LinkChildToFamilyAction implements RequestHandlerInterface
377c7d1e03SGreg Roach{
387c7d1e03SGreg Roach    /**
397c7d1e03SGreg Roach     * @param ServerRequestInterface $request
407c7d1e03SGreg Roach     *
417c7d1e03SGreg Roach     * @return ResponseInterface
427c7d1e03SGreg Roach     */
437c7d1e03SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
447c7d1e03SGreg Roach    {
457c7d1e03SGreg Roach        $tree = $request->getAttribute('tree');
467c7d1e03SGreg Roach        assert($tree instanceof Tree);
477c7d1e03SGreg Roach
487c7d1e03SGreg Roach        $xref = $request->getQueryParams()['xref'];
497c7d1e03SGreg Roach
50*6b9cb339SGreg Roach        $individual = Registry::individualFactory()->make($xref, $tree);
517c7d1e03SGreg Roach        $individual = Auth::checkIndividualAccess($individual, true);
527c7d1e03SGreg Roach
537c7d1e03SGreg Roach        $params = (array) $request->getParsedBody();
547c7d1e03SGreg Roach
557c7d1e03SGreg Roach        $famid = $params['famid'];
567c7d1e03SGreg Roach
57*6b9cb339SGreg Roach        $family = Registry::familyFactory()->make($famid, $tree);
587c7d1e03SGreg Roach        $family = Auth::checkFamilyAccess($family, true);
597c7d1e03SGreg Roach
607c7d1e03SGreg Roach        $PEDI = $params['PEDI'];
617c7d1e03SGreg Roach
627c7d1e03SGreg Roach        // Replace any existing child->family link (we may be changing the PEDI);
637c7d1e03SGreg Roach        $fact_id = '';
647c7d1e03SGreg Roach        foreach ($individual->facts(['FAMC']) as $fact) {
657c7d1e03SGreg Roach            if ($family === $fact->target()) {
667c7d1e03SGreg Roach                $fact_id = $fact->id();
677c7d1e03SGreg Roach                break;
687c7d1e03SGreg Roach            }
697c7d1e03SGreg Roach        }
707c7d1e03SGreg Roach
717c7d1e03SGreg Roach        $gedcom = GedcomCodePedi::createNewFamcPedi($PEDI, $famid);
727c7d1e03SGreg Roach        $individual->updateFact($fact_id, $gedcom, true);
737c7d1e03SGreg Roach
747c7d1e03SGreg Roach        // Only set the family->child link if it does not already exist
757c7d1e03SGreg Roach        $chil_link_exists = false;
767c7d1e03SGreg Roach        foreach ($family->facts(['CHIL']) as $fact) {
777c7d1e03SGreg Roach            if ($individual === $fact->target()) {
787c7d1e03SGreg Roach                $chil_link_exists = true;
797c7d1e03SGreg Roach                break;
807c7d1e03SGreg Roach            }
817c7d1e03SGreg Roach        }
827c7d1e03SGreg Roach
837c7d1e03SGreg Roach        if (!$chil_link_exists) {
847c7d1e03SGreg Roach            $family->createFact('1 CHIL @' . $individual->xref() . '@', true);
857c7d1e03SGreg Roach        }
867c7d1e03SGreg Roach
877c7d1e03SGreg Roach        return redirect($individual->url());
887c7d1e03SGreg Roach    }
897c7d1e03SGreg Roach}
90