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; 246b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry; 256fd01894SGreg Roachuse Fisharebest\Webtrees\Services\AdminService; 26b55cbc6bSGreg 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 Roachuse function e; 326fd01894SGreg Roach 336fd01894SGreg Roach/** 346fd01894SGreg Roach * Import a GEDCOM file into a tree. 356fd01894SGreg Roach */ 366fd01894SGreg Roachclass ImportGedcomPage implements RequestHandlerInterface 376fd01894SGreg Roach{ 386fd01894SGreg Roach use ViewResponseTrait; 396fd01894SGreg Roach 40c4943cffSGreg Roach private AdminService $admin_service; 416fd01894SGreg Roach 426fd01894SGreg Roach /** 436fd01894SGreg Roach * @param AdminService $admin_service 446fd01894SGreg Roach */ 456fd01894SGreg Roach public function __construct(AdminService $admin_service) 466fd01894SGreg Roach { 476fd01894SGreg Roach $this->admin_service = $admin_service; 486fd01894SGreg Roach } 496fd01894SGreg Roach 506fd01894SGreg Roach /** 516fd01894SGreg Roach * @param ServerRequestInterface $request 526fd01894SGreg Roach * 536fd01894SGreg Roach * @return ResponseInterface 546fd01894SGreg Roach */ 556fd01894SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 566fd01894SGreg Roach { 576fd01894SGreg Roach $this->layout = 'layouts/administration'; 586fd01894SGreg Roach 59b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 606fd01894SGreg Roach 616b9cb339SGreg Roach $data_filesystem = Registry::filesystem()->data(); 626b9cb339SGreg Roach $data_folder = Registry::filesystem()->dataName(); 636fd01894SGreg Roach 646fd01894SGreg Roach $default_gedcom_file = $tree->getPreference('gedcom_filename'); 656fd01894SGreg Roach $gedcom_media_path = $tree->getPreference('GEDCOM_MEDIA_PATH'); 666fd01894SGreg Roach $gedcom_files = $this->admin_service->gedcomFiles($data_filesystem); 676fd01894SGreg Roach 686fd01894SGreg Roach $title = I18N::translate('Import a GEDCOM file') . ' — ' . e($tree->title()); 696fd01894SGreg Roach 706fd01894SGreg Roach return $this->viewResponse('admin/trees-import', [ 716fd01894SGreg Roach 'data_folder' => $data_folder, 726fd01894SGreg Roach 'default_gedcom_file' => $default_gedcom_file, 736fd01894SGreg Roach 'gedcom_files' => $gedcom_files, 746fd01894SGreg Roach 'gedcom_media_path' => $gedcom_media_path, 756fd01894SGreg Roach 'title' => $title, 766fd01894SGreg Roach 'tree' => $tree, 776fd01894SGreg Roach ]); 786fd01894SGreg Roach } 796fd01894SGreg Roach} 80