xref: /webtrees/app/Http/RequestHandlers/DeletePath.php (revision 4d35caa736b1f4119b8a949d1cbca5644dbf4e23)
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;
31
32use function assert;
33use function e;
34use function is_string;
35use function response;
36use function str_ends_with;
37
38/**
39 * Delete a file or folder from the data filesystem.
40 */
41class DeletePath implements RequestHandlerInterface
42{
43    /**
44     * @param ServerRequestInterface $request
45     *
46     * @return ResponseInterface
47     */
48    public function handle(ServerRequestInterface $request): ResponseInterface
49    {
50        $data_filesystem = Registry::filesystem()->data();
51
52        $path = $request->getQueryParams()['path'];
53        assert(is_string($path));
54
55        if (str_ends_with($path, '/')) {
56            try {
57                $data_filesystem->deleteDirectory($path);
58                FlashMessages::addMessage(I18N::translate('The folder %s has been deleted.', e($path)), 'success');
59            } catch (FilesystemException | UnableToDeleteDirectory $ex) {
60                FlashMessages::addMessage(I18N::translate('The folder %s could not be deleted.', e($path)), 'danger');
61            }
62        } else {
63            try {
64                $data_filesystem->delete($path);
65                FlashMessages::addMessage(I18N::translate('The file %s has been deleted.', e($path)), 'success');
66            } catch (FilesystemException | UnableToDeleteFile $ex) {
67                FlashMessages::addMessage(I18N::translate('The file %s could not be deleted.', e($path)), 'danger');
68            }
69        }
70
71        return response();
72    }
73}
74