xref: /webtrees/app/Http/RequestHandlers/DeletePath.php (revision 090a06287954f43677f06ea778b3f67c029de8fe)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2021 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22use Fisharebest\Webtrees\FlashMessages;
23use Fisharebest\Webtrees\I18N;
24use Fisharebest\Webtrees\Registry;
25use League\Flysystem\FilesystemException;
26use League\Flysystem\UnableToDeleteDirectory;
27use League\Flysystem\UnableToDeleteFile;
28use Psr\Http\Message\ResponseInterface;
29use Psr\Http\Message\ServerRequestInterface;
30use Psr\Http\Server\RequestHandlerInterface;
31use Throwable;
32
33use function assert;
34use function e;
35use function is_string;
36use function response;
37use function str_ends_with;
38
39/**
40 * Delete a file or folder from the data filesystem.
41 */
42class DeletePath implements RequestHandlerInterface
43{
44    /**
45     * @param ServerRequestInterface $request
46     *
47     * @return ResponseInterface
48     */
49    public function handle(ServerRequestInterface $request): ResponseInterface
50    {
51        $data_filesystem = Registry::filesystem()->data();
52
53        $path = $request->getQueryParams()['path'];
54        assert(is_string($path));
55
56        if (str_ends_with($path, '/')) {
57            try {
58                $data_filesystem->deleteDirectory($path);
59                FlashMessages::addMessage(I18N::translate('The folder %s has been deleted.', e($path)), 'success');
60            } catch (FilesystemException | UnableToDeleteDirectory $ex) {
61                FlashMessages::addMessage(I18N::translate('The folder %s could not be deleted.', e($path)), 'danger');
62            }
63        } else {
64            try {
65                $data_filesystem->delete($path);
66                FlashMessages::addMessage(I18N::translate('The file %s has been deleted.', e($path)), 'success');
67            } catch (FilesystemException | UnableToDeleteFile $ex) {
68                FlashMessages::addMessage(I18N::translate('The file %s could not be deleted.', e($path)), 'danger');
69            }
70        }
71
72        return response();
73    }
74}
75