xref: /webtrees/app/Http/RequestHandlers/MergeTreesPage.php (revision e93a8df2f8d797005750082cc3766c0e80799688)
16fd01894SGreg Roach<?php
26fd01894SGreg Roach
36fd01894SGreg Roach/**
46fd01894SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
66fd01894SGreg Roach * This program is free software: you can redistribute it and/or modify
76fd01894SGreg Roach * it under the terms of the GNU General Public License as published by
86fd01894SGreg Roach * the Free Software Foundation, either version 3 of the License, or
96fd01894SGreg Roach * (at your option) any later version.
106fd01894SGreg Roach * This program is distributed in the hope that it will be useful,
116fd01894SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
126fd01894SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
136fd01894SGreg Roach * GNU General Public License for more details.
146fd01894SGreg 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/>.
166fd01894SGreg Roach */
176fd01894SGreg Roach
186fd01894SGreg Roachdeclare(strict_types=1);
196fd01894SGreg Roach
206fd01894SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
216fd01894SGreg Roach
226fd01894SGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait;
236fd01894SGreg Roachuse Fisharebest\Webtrees\I18N;
246fd01894SGreg Roachuse Fisharebest\Webtrees\Services\AdminService;
256fd01894SGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
26748dbe15SGreg Roachuse Fisharebest\Webtrees\Validator;
276fd01894SGreg Roachuse Psr\Http\Message\ResponseInterface;
286fd01894SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
296fd01894SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
306fd01894SGreg Roach
316fd01894SGreg Roach/**
326fd01894SGreg Roach * Merge two family trees.
336fd01894SGreg Roach */
346fd01894SGreg Roachclass MergeTreesPage implements RequestHandlerInterface
356fd01894SGreg Roach{
366fd01894SGreg Roach    use ViewResponseTrait;
376fd01894SGreg Roach
38c4943cffSGreg Roach    private AdminService $admin_service;
396fd01894SGreg Roach
40c4943cffSGreg Roach    private TreeService $tree_service;
416fd01894SGreg Roach
426fd01894SGreg Roach    /**
436fd01894SGreg Roach     * @param AdminService   $admin_service
446fd01894SGreg Roach     * @param TreeService    $tree_service
456fd01894SGreg Roach     */
466fd01894SGreg Roach    public function __construct(AdminService $admin_service, TreeService $tree_service)
476fd01894SGreg Roach    {
486fd01894SGreg Roach        $this->admin_service   = $admin_service;
496fd01894SGreg Roach        $this->tree_service    = $tree_service;
506fd01894SGreg Roach    }
516fd01894SGreg Roach
526fd01894SGreg Roach    /**
536fd01894SGreg Roach     * @param ServerRequestInterface $request
546fd01894SGreg Roach     *
556fd01894SGreg Roach     * @return ResponseInterface
566fd01894SGreg Roach     */
576fd01894SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
586fd01894SGreg Roach    {
596fd01894SGreg Roach        $this->layout = 'layouts/administration';
606fd01894SGreg Roach
61748dbe15SGreg Roach        $tree1_name = Validator::queryParams($request)->string('tree1_name', '');
62748dbe15SGreg Roach        $tree2_name = Validator::queryParams($request)->string('tree2_name', '');
636fd01894SGreg Roach
646fd01894SGreg Roach        $tree1 = $this->tree_service->all()->get($tree1_name);
656fd01894SGreg Roach        $tree2 = $this->tree_service->all()->get($tree2_name);
666fd01894SGreg Roach
676fd01894SGreg Roach        if ($tree1 !== null && $tree2 !== null && $tree1->id() !== $tree2->id()) {
686fd01894SGreg Roach            $xrefs = $this->admin_service->countCommonXrefs($tree1, $tree2);
696fd01894SGreg Roach        } else {
706fd01894SGreg Roach            $xrefs = 0;
716fd01894SGreg Roach        }
726fd01894SGreg Roach
736fd01894SGreg Roach        $title = I18N::translate(I18N::translate('Merge family trees'));
746fd01894SGreg Roach
756fd01894SGreg Roach        return $this->viewResponse('admin/trees-merge', [
766fd01894SGreg Roach            'tree_list' => $this->tree_service->titles(),
776fd01894SGreg Roach            'tree1'     => $tree1,
786fd01894SGreg Roach            'tree2'     => $tree2,
796fd01894SGreg Roach            'title'     => $title,
806fd01894SGreg Roach            'xrefs'     => $xrefs,
816fd01894SGreg Roach        ]);
826fd01894SGreg Roach    }
836fd01894SGreg Roach}
84