2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2018-09-20 12:05:22 +02:00
$backup_dir = Backup :: getDirectory ();
2018-03-22 17:20:33 +01:00
echo '<p>' . tr ( 'Il backup è <b>molto importante</b> perché permette di creare una copia della propria installazione e relativi dati per poterla poi ripristinare in seguito a errori, cancellazioni accidentali o guasti hardware' ) . '.</p>' ;
2017-09-11 17:49:03 +02:00
if ( ! extension_loaded ( 'zip' )) {
echo "
< div class = 'alert alert-warning' >
2018-03-22 17:20:33 +01:00
< i class = 'fa fa-times' ></ i > " .tr('Estensione ZIP non supportata!').'
'.tr(' Il backup verrà eseguito , ma non in formato ZIP . Sarà quindi scaricabile solo tramite FTP o con copia - incolla ').' .
2017-09-11 17:49:03 +02:00
</ div > ' ;
}
2018-03-22 17:20:33 +01:00
if ( starts_with ( $backup_dir , $docroot )) {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr(' Per motivi di sicurezza si consiglia di modificare il percorso della cartella di backup al di fuori della cartella di OSM , possibilmente in una unità esterna ').' .
</ div > ' ;
}
if ( ! is_writable ( $backup_dir )) {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr(' La cartella di backup presente nella configurazione non è utilizzabile dal gestionale ').' .
'.tr(' Verificare che la cartella abbia i permessi di scrittura abilitati ').' .
</ div > ' ;
}
2017-08-04 16:28:16 +02:00
if ( ! empty ( $backup_dir )) {
2018-09-25 16:47:44 +02:00
$message = tr ( 'Il percorso di backup è attualmente in' ) . ': <b>' . slashes ( $backup_dir ) . '</b>' ;
2017-08-04 16:28:16 +02:00
} else {
2018-09-25 16:47:44 +02:00
$message = tr ( 'Sembra che tu non abbia ancora specificato un percorso per il backup' ) . '.' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
2017-08-04 16:28:16 +02:00
echo '
2018-09-19 16:02:15 +02:00
< div class = " row " >
< div class = " col-md-8 " >
< div class = " callout callout-success " >
< p > '.$message.' </ p >
< p >< small > '.tr(' Puoi modificare il percorso di backup dal tuo file _FILE_ ' , [
'_FILE_' => '<b>config.inc.php</b>' ,
]) . ' </ small ></ p >
</ div >
</ div > ' ;
2017-09-11 17:49:03 +02:00
2018-09-19 16:02:15 +02:00
// Ripristino backup
2018-09-19 17:15:01 +02:00
echo '
< script >
function restore () {
if ( $ ( " #blob " ) . val ()) {
swal ({
title : " '.tr('Avviare la procedura?').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function ( result ) {
$ ( " #restore " ) . submit ();
})
} else {
swal ({
title : " '.tr('Selezionare un file!').' " ,
type : " error " ,
})
}
}
</ script > ' ;
2017-08-04 16:28:16 +02:00
echo '
2018-09-19 16:02:15 +02:00
< div class = " col-md-4 " >
< div class = " box box-success " >
< div class = " box-header with-border " >
< h3 class = " box-title " >
'.tr(' Ripristina backup ').'
</ h3 >
</ div >
< div class = " box-body " >
< form action = " " method = " post " enctype = " multipart/form-data " id = " restore " >
< input type = " hidden " name = " op " value = " restore " >
2018-09-19 17:15:01 +02:00
< label >< input type = " file " name = " blob " id = " blob " ></ label >
2018-09-19 16:02:15 +02:00
2018-09-19 17:15:01 +02:00
< button type = " button " class = " btn btn-primary pull-right " onclick = " restore() " >
2018-09-19 16:02:15 +02:00
< i class = " fa fa-upload " ></ i > '.tr(' Ripristina ').' ...
</ button >
</ form >
</ div >
</ div >
2017-09-11 17:49:03 +02:00
</ div >
2018-09-19 16:02:15 +02:00
</ div > ' ;
2017-09-12 17:59:30 +02:00
2018-09-19 16:02:15 +02:00
// Lettura file di backup
2017-08-04 16:28:16 +02:00
if ( file_exists ( $backup_dir )) {
$backups_zip = [];
$backups_file = [];
2018-03-03 15:03:28 +01:00
$backups = Backup :: getList ();
foreach ( $backups as $backup ) {
if ( ends_with ( $backup , '.zip' )) {
$backups_zip [] = $backup ;
} else {
$backups_file [] = $backup ;
2017-08-04 16:28:16 +02:00
}
}
if ( empty ( $backups_zip ) && empty ( $backups_file )) {
echo '
2017-09-11 17:49:03 +02:00
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr(' Non è ancora stato trovato alcun backup ! ').'
'.tr(' Se hai già inserito dei dati su OSM crealo il prima possibile ... ').'
</ div > ' ;
2017-08-04 16:28:16 +02:00
} else {
2017-09-11 17:49:03 +02:00
echo '
< div class = " row " >
< div class = " col-xs-12 col-md-6 " >
< h3 > '.tr(' Backup compressi ').' </ h3 > ' ;
2017-08-04 16:28:16 +02:00
if ( ! empty ( $backups_zip )) {
foreach ( $backups_zip as $backup ) {
$name = basename ( $backup );
2018-03-03 15:03:28 +01:00
$info = Backup :: readName ( $backup );
2018-03-19 15:30:16 +01:00
$data = $info [ 'YYYY' ] . '-' . $info [ 'm' ] . '-' . $info [ 'd' ];
2018-03-03 15:03:28 +01:00
$ora = $info [ 'H' ] . ':' . $info [ 'i' ] . ':' . $info [ 's' ];
2017-09-07 18:58:41 +02:00
2017-08-04 16:28:16 +02:00
echo '
2017-09-11 17:49:03 +02:00
< div class = " callout callout-info " >
< h4 > '.tr(' Backup del _DATE_ alle _TIME_ ' , [
2018-03-03 15:03:28 +01:00
'_DATE_' => Translator :: dateToLocale ( $data ),
'_TIME_' => Translator :: timeToLocale ( $ora ),
2017-09-11 17:49:03 +02:00
]) . ' </ h4 >
< p >< small >
'.tr(' Nome del file ').' : '.$name.' < br >
'.tr(' Dimensione ').' : '.Translator::numberToLocale(filesize($backup) / 1024 / 1024).' MB
</ small ></ p >
2018-03-22 17:20:33 +01:00
< a class = " btn btn-primary " href = " '. $rootdir .'/modules/backup/actions.php?op=getfile&file='. $name .' " target = " _blank " >< i class = " fa fa-download " ></ i > '.tr(' Scarica ').' </ a >
2017-09-11 17:49:03 +02:00
2018-09-19 16:02:15 +02:00
< div class = " pull-right " >
< a class = " btn btn-warning ask " data - backto = " record-edit " data - method = " post " data - op = " restore " data - zip = " '. $name .' " data - msg = " '.tr('Vuoi ripristinare questo backup?').' " data - button = " Ripristina " data - class = " btn btn-lg btn-warning " >
< i class = " fa fa-upload " ></ i >
</ a >
< a class = " btn btn-danger ask " title = " '.tr('Elimina backup').' " data - backto = " record-list " data - op = " del " data - file = " '. $name .' " >
< i class = " fa fa-trash " ></ i >
</ a >
</ div >
2017-09-11 17:49:03 +02:00
</ div > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
} else {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr(' Non è stato trovato alcun backup di questa tipologia ! ').'
</ div > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
echo '
</ div >
< div class = " col-xs-12 col-md-6 " >
< h3 > '.tr(' Backup non compressi ').' </ h3 > ' ;
2017-08-04 16:28:16 +02:00
// Backup non compressi e quindi non scaricabili
if ( ! empty ( $backups_file )) {
foreach ( $backups_file as $backup ) {
$name = basename ( $backup );
2018-03-03 15:03:28 +01:00
$info = Backup :: readName ( $backup );
2018-03-19 15:30:16 +01:00
$data = $info [ 'YYYY' ] . '-' . $info [ 'm' ] . '-' . $info [ 'd' ];
2018-03-03 15:03:28 +01:00
$ora = $info [ 'H' ] . ':' . $info [ 'i' ] . ':' . $info [ 's' ];
2017-09-08 13:24:48 +02:00
2017-08-04 16:28:16 +02:00
echo '
2017-09-11 17:49:03 +02:00
< div class = " callout callout-warning " >
< h4 > '.tr(' Backup del _DATE_ alle _TIME_ ' , [
2018-03-03 15:03:28 +01:00
'_DATE_' => Translator :: dateToLocale ( $data ),
'_TIME_' => Translator :: timeToLocale ( $ora ),
2017-09-11 17:49:03 +02:00
]) . ' </ h4 >
< p >< small >
'.tr(' Nome del file ').' : '.$name.' < br >
'.tr(' Dimensione ').' : '.Translator::numberToLocale(filesize($backup) / 1024 / 1024).' MB
</ small ></ p >
< a class = " btn btn-sm btn-warning disabled " href = " javascript:; " >< i class = " fa fa-times " ></ i > '.tr(' Non scaricabile ').' </ a >
2018-09-19 16:02:15 +02:00
< div class = " pull-right " >
< a class = " btn btn-warning ask " data - backto = " record-edit " data - method = " post " data - op = " restore " data - folder = " '. $name .' " data - msg = " '.tr('Vuoi ripristinare questo backup?').' " data - button = " Ripristina " data - class = " btn btn-lg btn-warning " >
< i class = " fa fa-upload " ></ i >
</ a >
< a class = " btn btn-danger ask " title = " '.tr('Elimina backup').' " data - backto = " record-list " data - op = " del " data - file = " '. $name .' " >
< i class = " fa fa-trash " ></ i >
</ a >
</ div >
2017-09-11 17:49:03 +02:00
</ div > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
} else {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr(' Non è stato trovato alcun backup di questa tipologia ! ').'
</ div > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
echo '
</ div >
</ div > ' ;
2017-08-04 16:28:16 +02:00
}
} else {
echo '
2017-09-11 17:49:03 +02:00
< div class = " alert alert-danger " > '.tr(' La cartella di backup non esiste ! ').' '.tr(' Non è possibile eseguire i backup ! ').' </ div > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-11 17:49:03 +02:00
if ( ! empty ( $backup_dir )) {
2018-09-19 16:02:15 +02:00
// Creazione backup
2017-08-04 16:28:16 +02:00
echo '
2018-09-19 16:02:15 +02:00
< button type = " button " class = " btn btn-primary pull-right " onclick = " continue_backup() " >< i class = " fa fa-database " ></ i > '.tr(' Crea backup ').' ...</ button >
< div class = " clearfix " ></ div >
2017-09-11 17:49:03 +02:00
< script >
function continue_backup (){
swal ({
title : " '.tr('Nuovo backup').' " ,
text : " '.tr('Sei sicuro di voler creare un nuovo backup?').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonClass : " btn btn-lg btn-success " ,
confirmButtonText : " '.tr('Crea').' " ,
}) . then (
function (){
location . href = globals . rootdir + " /editor.php?id_module='. $id_module .'&op=backup " ;
}, function (){});
}
</ script > ' ;
2017-08-04 16:28:16 +02:00
}