summaryrefslogtreecommitdiff
path: root/admin_site_clean.php
blob: 57180c0adef5ff1e0bee94ab663c041810006b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
/**
 * webtrees: online genealogy
 * Copyright (C) 2017 webtrees development team
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
namespace Fisharebest\Webtrees;

use Fisharebest\Webtrees\Controller\PageController;

require 'includes/session.php';

$to_delete = Filter::postArray('to_delete');
if ($to_delete && Filter::checkCsrf()) {
	foreach ($to_delete as $path) {
		$is_dir = is_dir(WT_DATA_DIR . $path);
		if (File::delete(WT_DATA_DIR . $path)) {
			if ($is_dir) {
				FlashMessages::addMessage(I18N::translate('The folder %s has been deleted.', Html::escape($path)), 'success');
			} else {
				FlashMessages::addMessage(I18N::translate('The file %s has been deleted.', Html::escape($path)), 'success');
			}
		} else {
			if ($is_dir) {
				FlashMessages::addMessage(I18N::translate('The folder %s could not be deleted.', Html::escape($path)), 'danger');
			} else {
				FlashMessages::addMessage(I18N::translate('The file %s could not be deleted.', Html::escape($path)), 'danger');
			}
		}
	}

	header('Location: admin_site_clean.php');

	return;
}

$controller = new PageController;
$controller
	->restrictAccess(Auth::isAdmin())
	->setPageTitle(/* I18N: The “Data folder” is a configuration setting */ I18N::translate('Clean up data folder'))
	->pageHeader();

$do_not_delete = ['index.php', 'config.ini.php', 'language'];

// If we are storing the media in the data folder (this is the default), then don’t delete it.
foreach (Tree::getAll() as $tree) {
	$MEDIA_DIRECTORY = $tree->getPreference('MEDIA_DIRECTORY');

	if (substr($MEDIA_DIRECTORY, 0, 3) != '../') {
		// Just need to add the first part of the path
		$tmp             = explode('/', $MEDIA_DIRECTORY);
		$do_not_delete[] = $tmp[0];
	}
}

$locked_icon = '<i class="fa fa-ban text-danger"></i>';

$dir     = dir(WT_DATA_DIR);
$entries = [];
while (false !== ($entry = $dir->read())) {
	if ($entry[0] != '.') {
		$entries[] = $entry;
	}
}

sort($entries);

echo Bootstrap4::breadcrumbs([
	'admin.php' => I18N::translate('Control panel'),
], $controller->getPageTitle());
?>

<h1><?= $controller->getPageTitle() ?></h1>

<p>
	<?= I18N::translate('Files marked with %s are required for proper operation and cannot be removed.', $locked_icon) ?>
</p>

<form method="post">
	<?= Filter::getCsrf() ?>
	<fieldset>
		<legend class="sr-only"><?= $controller->getPageTitle() ?></legend>
		<ul class="fa-ul">
			<?php
			foreach ($entries as $entry) {
				if (in_array($entry, $do_not_delete)) {
					echo '<li><i class="fa-li fa fa-ban text-danger"></i>', Html::escape($entry), '</li>';
				} else {
					echo '<li><i class="fa-li fa fa-trash-o"></i>';
					echo '<label>';
					echo '<input type="checkbox" name="to_delete[]" value="', Html::escape($entry), '"> ';
					echo Html::escape($entry);
					echo '</label></li>';
				}
			}
			$dir->close();
			?>
		</ul>
	</fieldset>

	<button class="btn btn-danger" type="submit">
		<i class="fa fa-trash-o"></i>
		<?= /* I18N: A button label. */ I18N::translate('delete') ?>
	</button>
</form>