107 lines
3.1 KiB
PHP
Executable File
107 lines
3.1 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
switch (filter('op')) {
|
|
case 'getfile':
|
|
$number = filter('number');
|
|
$number = intval($number);
|
|
|
|
$backups = Backup::getList();
|
|
$backup = $backups[$number];
|
|
$filename = basename($backup);
|
|
|
|
download($backup, $filename);
|
|
|
|
break;
|
|
|
|
case 'del':
|
|
$number = filter('number');
|
|
$number = intval($number);
|
|
|
|
$backups = Backup::getList();
|
|
$backup = $backups[$number];
|
|
$filename = basename($backup);
|
|
|
|
delete($backup);
|
|
|
|
if (!file_exists($backup)) {
|
|
flash()->info(tr('Backup _FILE_ eliminato!', [
|
|
'_FILE_' => '"'.$filename.'"',
|
|
]));
|
|
} else {
|
|
flash()->error(tr("Errore durante l'eliminazione del backup _FILE_!", [
|
|
'_FILE_' => '"'.$filename.'"',
|
|
]));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'backup':
|
|
try {
|
|
$result = Backup::create();
|
|
|
|
if ($result) {
|
|
flash()->info(tr('Nuovo backup creato correttamente!'));
|
|
} else {
|
|
flash()->error(tr('Errore durante la creazione del backup!').' '.str_replace('_DIR_', '"'.$backup_dir.'"', tr('Verifica che la cartella _DIR_ abbia i permessi di scrittura!')));
|
|
}
|
|
} catch (\Exception $e) {
|
|
flash()->error(tr('Errore durante la creazione del backup!').' '.$e->getMessage());
|
|
}
|
|
|
|
break;
|
|
|
|
case 'size':
|
|
$number = filter('number');
|
|
$number = intval($number);
|
|
|
|
$backups = Backup::getList();
|
|
$backup = $backups[$number] ?: $backup_dir;
|
|
|
|
echo Util\FileSystem::size($backup);
|
|
|
|
break;
|
|
}
|
|
|
|
if (filter('op') == 'restore') {
|
|
if (!extension_loaded('zip')) {
|
|
flash()->error(tr('Estensione zip non supportata!').'<br>'.tr('Verifica e attivala sul tuo file _FILE_', [
|
|
'_FILE_' => '<b>php.ini</b>',
|
|
]));
|
|
|
|
return;
|
|
}
|
|
|
|
if (filter('number') == null) {
|
|
$path = $_FILES['blob']['tmp_name'];
|
|
} else {
|
|
$number = filter('number');
|
|
$number = intval($number);
|
|
|
|
$backups = Backup::getList();
|
|
$path = $backups[$number];
|
|
}
|
|
|
|
Backup::restore($path, is_file($path));
|
|
|
|
flash()->info(tr('Backup ripristinato correttamente!'));
|
|
}
|