xref: /webtrees/app/Http/RequestHandlers/CleanDataFolder.php (revision 6b9cb339562c8aa4681c7eff2bf3bdf401cc9edd)
1fd6c003fSGreg Roach<?php
2fd6c003fSGreg Roach
3fd6c003fSGreg Roach/**
4fd6c003fSGreg Roach * webtrees: online genealogy
569675509SGreg Roach * Copyright (C) 2020 webtrees development team
6fd6c003fSGreg Roach * This program is free software: you can redistribute it and/or modify
7fd6c003fSGreg Roach * it under the terms of the GNU General Public License as published by
8fd6c003fSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9fd6c003fSGreg Roach * (at your option) any later version.
10fd6c003fSGreg Roach * This program is distributed in the hope that it will be useful,
11fd6c003fSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12fd6c003fSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13fd6c003fSGreg Roach * GNU General Public License for more details.
14fd6c003fSGreg Roach * You should have received a copy of the GNU General Public License
15fd6c003fSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16fd6c003fSGreg Roach */
17fcfa147eSGreg Roach
18fd6c003fSGreg Roachdeclare(strict_types=1);
19fd6c003fSGreg Roach
20fd6c003fSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
21fd6c003fSGreg Roach
22fd6c003fSGreg Roachuse Fisharebest\Webtrees\Http\ViewResponseTrait;
23fd6c003fSGreg Roachuse Fisharebest\Webtrees\I18N;
24*6b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry;
25fd6c003fSGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
26fd6c003fSGreg Roachuse Psr\Http\Message\ResponseInterface;
27fd6c003fSGreg Roachuse Psr\Http\Message\ServerRequestInterface;
28fd6c003fSGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
29fd6c003fSGreg Roach
30fd6c003fSGreg Roachuse function array_map;
31fd6c003fSGreg Roachuse function explode;
32fd6c003fSGreg Roach
33fd6c003fSGreg Roach/**
34fd6c003fSGreg Roach * Show old files that could be deleted.
35fd6c003fSGreg Roach */
36fd6c003fSGreg Roachclass CleanDataFolder implements RequestHandlerInterface
37fd6c003fSGreg Roach{
38fd6c003fSGreg Roach    use ViewResponseTrait;
39fd6c003fSGreg Roach
40fd6c003fSGreg Roach    /** @var TreeService */
41fd6c003fSGreg Roach    private $tree_service;
42fd6c003fSGreg Roach
43fd6c003fSGreg Roach    /**
44fd6c003fSGreg Roach     * CleanDataFolder constructor.
45fd6c003fSGreg Roach     *
46fd6c003fSGreg Roach     * @param TreeService $tree_service
47fd6c003fSGreg Roach     */
48a04bb9a2SGreg Roach    public function __construct(TreeService $tree_service)
49fd6c003fSGreg Roach    {
50fd6c003fSGreg Roach        $this->tree_service = $tree_service;
51fd6c003fSGreg Roach    }
52fd6c003fSGreg Roach
53fd6c003fSGreg Roach    /**
54fd6c003fSGreg Roach     * @param ServerRequestInterface $request
55fd6c003fSGreg Roach     *
56fd6c003fSGreg Roach     * @return ResponseInterface
57fd6c003fSGreg Roach     */
58fd6c003fSGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
59fd6c003fSGreg Roach    {
60*6b9cb339SGreg Roach        $data_filesystem = Registry::filesystem()->data();
61a04bb9a2SGreg Roach
62fd6c003fSGreg Roach        $this->layout = 'layouts/administration';
63fd6c003fSGreg Roach
64fd6c003fSGreg Roach        $protected = [
65fd6c003fSGreg Roach            '.htaccess',
66fd6c003fSGreg Roach            '.gitignore',
67fd6c003fSGreg Roach            'index.php',
68fd6c003fSGreg Roach            'config.ini.php',
69fd6c003fSGreg Roach        ];
70fd6c003fSGreg Roach
71fd6c003fSGreg Roach        if ($request->getAttribute('dbtype') === 'sqlite') {
72fd6c003fSGreg Roach            $protected[] = $request->getAttribute('dbname') . '.sqlite';
73fd6c003fSGreg Roach        }
74fd6c003fSGreg Roach
75fd6c003fSGreg Roach        // Protect the media folders
76fd6c003fSGreg Roach        foreach ($this->tree_service->all() as $tree) {
77fd6c003fSGreg Roach            $media_directory = $tree->getPreference('MEDIA_DIRECTORY');
78fd6c003fSGreg Roach            [$folder] = explode('/', $media_directory);
79fd6c003fSGreg Roach
80fd6c003fSGreg Roach            $protected[] = $folder . '/';
81fd6c003fSGreg Roach        }
82fd6c003fSGreg Roach
83fd6c003fSGreg Roach        // List the top-level contents of the data folder
84fd6c003fSGreg Roach        $entries = array_map(static function (array $content) {
85fd6c003fSGreg Roach            if ($content['type'] === 'dir') {
86fd6c003fSGreg Roach                return $content['path'] . '/';
87fd6c003fSGreg Roach            }
88fd6c003fSGreg Roach
89fd6c003fSGreg Roach            return $content['path'];
90a04bb9a2SGreg Roach        }, $data_filesystem->listContents());
91fd6c003fSGreg Roach
92fd6c003fSGreg Roach        return $this->viewResponse('admin/clean-data', [
93fd6c003fSGreg Roach            'title'     => I18N::translate('Clean up data folder'),
94fd6c003fSGreg Roach            'entries'   => $entries,
95fd6c003fSGreg Roach            'protected' => $protected,
96fd6c003fSGreg Roach        ]);
97fd6c003fSGreg Roach    }
98fd6c003fSGreg Roach}
99