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; 25b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 266fd01894SGreg Roachuse Psr\Http\Message\ResponseInterface; 276fd01894SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 286fd01894SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 296fd01894SGreg Roach 306fd01894SGreg Roachuse function e; 316fd01894SGreg Roach 326fd01894SGreg Roach/** 336fd01894SGreg Roach * Find potential duplicate records in a tree. 346fd01894SGreg Roach */ 356fd01894SGreg Roachclass FindDuplicateRecords implements RequestHandlerInterface 366fd01894SGreg Roach{ 376fd01894SGreg Roach use ViewResponseTrait; 386fd01894SGreg Roach 39c4943cffSGreg Roach private AdminService $admin_service; 406fd01894SGreg Roach 416fd01894SGreg Roach /** 426fd01894SGreg Roach * @param AdminService $admin_service 436fd01894SGreg Roach */ 446fd01894SGreg Roach public function __construct(AdminService $admin_service) 456fd01894SGreg Roach { 466fd01894SGreg Roach $this->admin_service = $admin_service; 476fd01894SGreg Roach } 486fd01894SGreg Roach 496fd01894SGreg Roach /** 506fd01894SGreg Roach * @param ServerRequestInterface $request 516fd01894SGreg Roach * 526fd01894SGreg Roach * @return ResponseInterface 536fd01894SGreg Roach */ 546fd01894SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 556fd01894SGreg Roach { 566fd01894SGreg Roach $this->layout = 'layouts/administration'; 576fd01894SGreg Roach 58b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 596fd01894SGreg Roach 606fd01894SGreg Roach $duplicates = $this->admin_service->duplicateRecords($tree); 616fd01894SGreg Roach $title = I18N::translate('Find duplicates') . ' — ' . e($tree->title()); 626fd01894SGreg Roach 636fd01894SGreg Roach return $this->viewResponse('admin/trees-duplicates', [ 646fd01894SGreg Roach 'duplicates' => $duplicates, 656fd01894SGreg Roach 'title' => $title, 666fd01894SGreg Roach 'tree' => $tree, 676fd01894SGreg Roach ]); 686fd01894SGreg Roach } 696fd01894SGreg Roach} 70