2014-09-01 13:06:38 +00:00
< style >
2014-09-08 20:09:18 +00:00
#backup-status th { text-align: center; }
2014-09-01 13:06:38 +00:00
#backup-status tr.full-backup td { font-weight: bold; }
< / style >
< h2 > Backup Status< / h2 >
< h3 > Copying Backup Files< / h3 >
2015-07-26 16:25:52 +00:00
< p > The box makes an incremental backup each night. By default the backup is stored on the machine itself, but you can also have it stored on Amazon S3< / p >
2014-09-08 20:12:31 +00:00
2015-05-25 00:45:57 +00:00
< p > You can also use SFTP (FTP over SSH) to copy files from < tt id = "backup-location" > < / tt > . These files are encrypted, so they are safe to store anywhere. Copy the encryption password from < tt id = "backup-encpassword-file" > < / tt > also but keep it in a safe location.< / p >
2014-09-01 13:06:38 +00:00
2015-07-26 16:25:52 +00:00
< h3 > Backup Configuration< / h3 >
< form class = "form-horizontal" role = "form" onsubmit = "set_custom_backup(); return false;" >
< div class = "form-group" >
< label for = "target" class = "col-sm-2 control-label" > Backup target< / label >
< div class = "col-sm-2" >
< select class = "form-control" rows = "1" id = "target-type" onchange = "toggle_form()" >
< option value = "file" > Store locally< / option >
< option value = "s3" > Amazon S3< / option >
< / select >
< / div >
< / div >
< div class = "form-group" >
< label for = "target" class = "col-sm-2 control-label" > Maximum time to keep old backups (in days)< / label >
< div class = "col-sm-8" >
2015-07-27 20:18:19 +00:00
< input type = "number" class = "form-control" rows = "1" id = "min-age" > < / input >
2015-07-26 16:25:52 +00:00
< / div >
< / div >
< div class = "form-group form-advanced" >
< label for = "target" class = "col-sm-2 control-label" > S3 URL< / label >
< div class = "col-sm-8" >
2015-07-27 22:37:43 +00:00
< input type = "text" placeholder = "s3://s3-eu-central-1.amazonaws.com/bucket-name" class = "form-control" rows = "1" id = "target" > < / textarea >
2015-07-26 16:25:52 +00:00
< / div >
< / div >
< div class = "form-group form-advanced" >
< label for = "target-user" class = "col-sm-2 control-label" > S3 Key< / label >
< div class = "col-sm-8" >
2015-07-27 22:37:43 +00:00
< input type = "text" class = "form-control" rows = "1" id = "target-user" > < / input >
2015-07-26 16:25:52 +00:00
< / div >
< / div >
< div class = "form-group form-advanced" >
< label for = "target-pass" class = "col-sm-2 control-label" > S3 Secret< / label >
< div class = "col-sm-8" >
2015-07-27 22:37:43 +00:00
< input type = "text" class = "form-control" rows = "1" id = "target-pass" > < / input >
2015-07-26 16:25:52 +00:00
< / div >
< / div >
< div class = "form-group" >
< div class = "col-sm-offset-2 col-sm-11" >
< button id = "set-s3-backup-button" type = "submit" class = "btn btn-primary" > Save< / button >
< / div >
< / div >
< / form >
2014-09-01 13:06:38 +00:00
< h3 > Current Backups< / h3 >
2015-03-08 20:55:39 +00:00
< p > The backup directory currently contains the backups listed below. The total size on disk of the backups is currently < span id = "backup-total-size" > < / span > .< / p >
2014-09-01 13:06:38 +00:00
< table id = "backup-status" class = "table" style = "width: auto" >
< thead >
< th colspan = "2" > When< / th >
< th > Type< / th >
< th > Size< / th >
2014-09-08 20:09:18 +00:00
< th > Deleted in...< / th >
2014-09-01 13:06:38 +00:00
< / thead >
< tbody >
< / tbody >
< / table >
< script >
2015-07-26 16:25:52 +00:00
function toggle_form() {
var target_type = $("#target-type").val();
if (target_type == 'file') {
$(".form-advanced").hide();
} else {
$(".form-advanced").show();
}
}
2014-09-01 13:06:38 +00:00
function nice_size(bytes) {
var powers = ['bytes', 'KB', 'MB', 'GB', 'TB'];
while (true) {
if (powers.length == 1) break;
if (bytes < 1000 ) break ;
bytes /= 1024;
powers.shift();
}
2014-10-07 20:24:11 +00:00
// round to have three significant figures but at most one decimal place
if (bytes >= 100)
bytes = Math.round(bytes)
else
bytes = Math.round(bytes*10)/10;
return bytes + " " + powers[0];
2014-09-01 13:06:38 +00:00
}
function show_system_backup() {
2015-07-26 16:25:52 +00:00
show_custom_backup()
2014-09-01 13:06:38 +00:00
$('#backup-status tbody').html("< tr > < td colspan = '2' class = 'text-muted' > Loading...< / td > < / tr > ")
api(
"/system/backup/status",
"GET",
{ },
function(r) {
2015-03-26 12:27:26 +00:00
$('#backup-location').text(r.directory);
2014-09-01 13:06:38 +00:00
$('#backup-encpassword-file').text(r.encpwfile);
$('#backup-status tbody').html("");
var total_disk_size = 0;
2014-10-15 16:31:08 +00:00
if (r.backups.length == 0) {
var tr = $('< tr > < td colspan = "3" > No backups have been made yet.< / td > < / tr > ');
$('#backup-status tbody').append(tr);
}
2014-09-01 13:06:38 +00:00
for (var i = 0; i < r.backups.length ; i + + ) {
var b = r.backups[i];
var tr = $('< tr / > ');
if (b.full) tr.addClass("full-backup");
tr.append( $('< td / > ').text(b.date_str + " " + r.tz) );
tr.append( $('< td / > ').text(b.date_delta + " ago") );
2014-09-08 20:09:18 +00:00
tr.append( $('< td / > ').text(b.full ? "full" : "increment") );
2015-03-26 12:27:26 +00:00
tr.append( $('< td style = "text-align: right" / > ').text( nice_size(b.size)) );
2014-09-08 20:09:18 +00:00
if (b.deleted_in)
tr.append( $('< td / > ').text(b.deleted_in) );
else
2015-03-08 20:55:39 +00:00
tr.append( $('< td class = "text-muted" > unknown< / td > ') );
2014-09-01 13:06:38 +00:00
$('#backup-status tbody').append(tr);
total_disk_size += b.size;
}
$('#backup-total-size').text(nice_size(total_disk_size));
})
}
2015-07-26 16:25:52 +00:00
function show_custom_backup() {
api(
2015-07-27 22:34:11 +00:00
"/system/backup/config",
2015-07-26 16:25:52 +00:00
"GET",
{ },
function(r) {
2015-07-27 20:09:58 +00:00
var target_type = r.target.split(':')[0]
2015-07-26 16:25:52 +00:00
$("#target").val(r.target);
2015-07-27 20:09:58 +00:00
$("#target-type").val(target_type);
2015-07-26 16:25:52 +00:00
$("#target-user").val(r.target_user);
$("#target-pass").val(r.target_pass);
2015-07-27 20:18:19 +00:00
$("#min-age").val(r.min_age_in_days);
2015-07-26 16:25:52 +00:00
toggle_form()
})
}
function set_custom_backup() {
var target = $("#target").val();
var target_type = $("#target-type").val();
var target_user = $("#target-user").val();
var target_pass = $("#target-pass").val();
2015-07-27 20:18:19 +00:00
var min_age = $("#min-age").val();
2015-07-26 16:25:52 +00:00
api(
2015-07-27 22:34:11 +00:00
"/system/backup/config",
2015-07-26 16:25:52 +00:00
"POST",
{
target: target,
target_user: target_user,
target_pass: target_pass,
2015-07-27 20:18:19 +00:00
min_age: min_age
2015-07-26 16:25:52 +00:00
},
function(r) {
// Responses are multiple lines of pre-formatted text.
show_modal_error("Backup configuration", $("< pre / > ").text(r));
},
function(r) {
show_modal_error("Backup configuration (error)", r);
});
return false;
}
2014-09-01 13:06:38 +00:00
< / script >