15afbc57aSGreg Roach<?php 25afbc57aSGreg Roach 35afbc57aSGreg Roach/** 45afbc57aSGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 65afbc57aSGreg Roach * This program is free software: you can redistribute it and/or modify 75afbc57aSGreg Roach * it under the terms of the GNU General Public License as published by 85afbc57aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 95afbc57aSGreg Roach * (at your option) any later version. 105afbc57aSGreg Roach * This program is distributed in the hope that it will be useful, 115afbc57aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 125afbc57aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 135afbc57aSGreg Roach * GNU General Public License for more details. 145afbc57aSGreg 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/>. 165afbc57aSGreg Roach */ 17fcfa147eSGreg Roach 185afbc57aSGreg Roachdeclare(strict_types=1); 195afbc57aSGreg Roach 205afbc57aSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 215afbc57aSGreg Roach 225afbc57aSGreg Roachuse Fisharebest\Webtrees\FlashMessages; 235afbc57aSGreg Roachuse Fisharebest\Webtrees\I18N; 245afbc57aSGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 25*b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 265afbc57aSGreg Roachuse Psr\Http\Message\ResponseInterface; 275afbc57aSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 2898b7e8b3SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 295afbc57aSGreg Roach 305afbc57aSGreg Roachuse function e; 315afbc57aSGreg Roachuse function response; 325afbc57aSGreg Roach 335afbc57aSGreg Roach/** 345afbc57aSGreg Roach * Delete a tree. 355afbc57aSGreg Roach */ 3698b7e8b3SGreg Roachclass DeleteTreeAction implements RequestHandlerInterface 375afbc57aSGreg Roach{ 38c4943cffSGreg Roach private TreeService $tree_service; 395afbc57aSGreg Roach 405afbc57aSGreg Roach /** 415afbc57aSGreg Roach * CreateTreePage constructor. 425afbc57aSGreg Roach * 435afbc57aSGreg Roach * @param TreeService $tree_service 445afbc57aSGreg Roach */ 455afbc57aSGreg Roach public function __construct(TreeService $tree_service) 465afbc57aSGreg Roach { 475afbc57aSGreg Roach $this->tree_service = $tree_service; 485afbc57aSGreg Roach } 495afbc57aSGreg Roach 505afbc57aSGreg Roach /** 515afbc57aSGreg Roach * @param ServerRequestInterface $request 525afbc57aSGreg Roach * 535afbc57aSGreg Roach * @return ResponseInterface 545afbc57aSGreg Roach */ 555afbc57aSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 565afbc57aSGreg Roach { 57*b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 585afbc57aSGreg Roach 595afbc57aSGreg Roach $this->tree_service->delete($tree); 605afbc57aSGreg Roach 615afbc57aSGreg Roach /* I18N: %s is the name of a family tree */ 625afbc57aSGreg Roach FlashMessages::addMessage(I18N::translate('The family tree “%s” has been deleted.', e($tree->title())), 'success'); 635afbc57aSGreg Roach 641d1f373cSGreg Roach return response(); 655afbc57aSGreg Roach } 665afbc57aSGreg Roach} 67