16fd01894SGreg Roach<?php 26fd01894SGreg Roach 36fd01894SGreg Roach/** 46fd01894SGreg Roach * webtrees: online genealogy 5*89f7189bSGreg Roach * Copyright (C) 2021 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 15*89f7189bSGreg 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\Tree; 266fd01894SGreg Roachuse Psr\Http\Message\ResponseInterface; 276fd01894SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 286fd01894SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 296fd01894SGreg Roach 306fd01894SGreg Roachuse function assert; 316fd01894SGreg Roachuse function e; 326fd01894SGreg Roach 336fd01894SGreg Roach/** 346fd01894SGreg Roach * Renumber the XREFs in a family tree. 356fd01894SGreg Roach */ 366fd01894SGreg Roachclass RenumberTreePage implements RequestHandlerInterface 376fd01894SGreg Roach{ 386fd01894SGreg Roach use ViewResponseTrait; 396fd01894SGreg Roach 406fd01894SGreg Roach /** @var AdminService */ 416fd01894SGreg Roach private $admin_service; 426fd01894SGreg Roach 436fd01894SGreg Roach /** 446fd01894SGreg Roach * @param AdminService $admin_service 456fd01894SGreg Roach */ 466fd01894SGreg Roach public function __construct(AdminService $admin_service) 476fd01894SGreg Roach { 486fd01894SGreg Roach $this->admin_service = $admin_service; 496fd01894SGreg Roach } 506fd01894SGreg Roach 516fd01894SGreg Roach /** 526fd01894SGreg Roach * @param ServerRequestInterface $request 536fd01894SGreg Roach * 546fd01894SGreg Roach * @return ResponseInterface 556fd01894SGreg Roach */ 566fd01894SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 576fd01894SGreg Roach { 586fd01894SGreg Roach $this->layout = 'layouts/administration'; 596fd01894SGreg Roach 606fd01894SGreg Roach $tree = $request->getAttribute('tree'); 616fd01894SGreg Roach assert($tree instanceof Tree); 626fd01894SGreg Roach 636fd01894SGreg Roach $xrefs = $this->admin_service->duplicateXrefs($tree); 646fd01894SGreg Roach 656fd01894SGreg Roach /* I18N: Renumber the records in a family tree */ 666fd01894SGreg Roach $title = I18N::translate('Renumber family tree') . ' — ' . e($tree->title()); 676fd01894SGreg Roach 686fd01894SGreg Roach return $this->viewResponse('admin/trees-renumber', [ 696fd01894SGreg Roach 'title' => $title, 706fd01894SGreg Roach 'tree' => $tree, 716fd01894SGreg Roach 'xrefs' => $xrefs, 726fd01894SGreg Roach ]); 736fd01894SGreg Roach } 746fd01894SGreg Roach} 75