xref: /webtrees/app/Http/RequestHandlers/DeleteTreeAction.php (revision c4943cff72f95a28fbb9404e3c20b169ff098e5c)
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;
255229eadeSGreg Roachuse Fisharebest\Webtrees\Tree;
265afbc57aSGreg Roachuse Psr\Http\Message\ResponseInterface;
275afbc57aSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
2898b7e8b3SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
295afbc57aSGreg Roach
305229eadeSGreg Roachuse function assert;
315afbc57aSGreg Roachuse function e;
325afbc57aSGreg Roachuse function response;
335afbc57aSGreg Roach
345afbc57aSGreg Roach/**
355afbc57aSGreg Roach * Delete a tree.
365afbc57aSGreg Roach */
3798b7e8b3SGreg Roachclass DeleteTreeAction implements RequestHandlerInterface
385afbc57aSGreg Roach{
39*c4943cffSGreg Roach    private TreeService $tree_service;
405afbc57aSGreg Roach
415afbc57aSGreg Roach    /**
425afbc57aSGreg Roach     * CreateTreePage constructor.
435afbc57aSGreg Roach     *
445afbc57aSGreg Roach     * @param TreeService $tree_service
455afbc57aSGreg Roach     */
465afbc57aSGreg Roach    public function __construct(TreeService $tree_service)
475afbc57aSGreg Roach    {
485afbc57aSGreg Roach        $this->tree_service = $tree_service;
495afbc57aSGreg Roach    }
505afbc57aSGreg Roach
515afbc57aSGreg Roach    /**
525afbc57aSGreg Roach     * @param ServerRequestInterface $request
535afbc57aSGreg Roach     *
545afbc57aSGreg Roach     * @return ResponseInterface
555afbc57aSGreg Roach     */
565afbc57aSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
575afbc57aSGreg Roach    {
585afbc57aSGreg Roach        $tree = $request->getAttribute('tree');
5975964c75SGreg Roach        assert($tree instanceof Tree);
605afbc57aSGreg Roach
615afbc57aSGreg Roach        $this->tree_service->delete($tree);
625afbc57aSGreg Roach
635afbc57aSGreg Roach        /* I18N: %s is the name of a family tree */
645afbc57aSGreg Roach        FlashMessages::addMessage(I18N::translate('The family tree “%s” has been deleted.', e($tree->title())), 'success');
655afbc57aSGreg Roach
661d1f373cSGreg Roach        return response();
675afbc57aSGreg Roach    }
685afbc57aSGreg Roach}
69