298 lines
11 KiB
Twig
298 lines
11 KiB
Twig
|
{{ header }}{{ column_left }}
|
||
|
<div id="content">
|
||
|
<div class="page-header">
|
||
|
<div class="container-fluid">
|
||
|
<div class="float-end"><button type="button" id="button-upload" data-bs-toggle="tooltip" title="{{ button_upload }}" class="btn btn-primary"><i class="fa-solid fa-upload"></i></button></div>
|
||
|
<h1>{{ heading_title }}</h1>
|
||
|
<ol class="breadcrumb">
|
||
|
{% for breadcrumb in breadcrumbs %}
|
||
|
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ol>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="container-fluid">
|
||
|
<div class="card">
|
||
|
<div class="card-header"><i class="fa-solid fa-exchange-alt"></i> {{ heading_title }}</div>
|
||
|
<div class="card-body">
|
||
|
<fieldset>
|
||
|
<legend>{{ text_progress }}</legend>
|
||
|
<div class="row mb-3">
|
||
|
<label class="col-sm-2 col-form-label">{{ entry_progress }}</label>
|
||
|
<div class="col-sm-10">
|
||
|
<div id="progress-backup" class="progress">
|
||
|
<div id="progress-bar" class="progress-bar"></div>
|
||
|
</div>
|
||
|
<div id="progress-text"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<fieldset>
|
||
|
<legend>{{ text_option }}</legend>
|
||
|
<div class="row mb-3">
|
||
|
<label class="col-sm-2 col-form-label">{{ entry_export }}</label>
|
||
|
<div class="col-sm-10">
|
||
|
<div class="form-control" style="height: 150px; overflow: auto;">
|
||
|
<div class="form-check">
|
||
|
<input type="checkbox" class="form-check-input" id="input-backup-all" onchange="$(this).parent().parent().find(':checkbox').not(this).prop('checked', $(this).prop('checked'));"/>
|
||
|
<label for="input-backup-all" class="form-check-label">{{ text_all }}</label>
|
||
|
</div>
|
||
|
{% set table_row = 0 %}
|
||
|
{% for table in tables %}
|
||
|
<div class="form-check">
|
||
|
<input type="checkbox" name="backup[]" value="{{ table }}" id="input-backup-{{ table_row }}" class="form-check-input" checked/> <label for="input-backup-{{ table_row }}" class="form-check-label">{{ table }}</label>
|
||
|
</div>
|
||
|
{% set table_row = table_row + 1 %}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row mb-3">
|
||
|
<div class="offset-sm-2 col-sm-10 text-end">
|
||
|
<button type="button" id="button-backup" class="btn btn-success"><i class="fa-solid fa-download"></i> {{ button_backup }}</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<fieldset>
|
||
|
<legend>{{ text_history }}</legend>
|
||
|
<div class="alert alert-info"><i class="fa-solid fa-circle-exclamation"></i> {{ text_import }}</div>
|
||
|
<div id="history">{{ history }}</div>
|
||
|
</fieldset>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<script type="text/javascript"><!--
|
||
|
$('#button-backup').on('click', function () {
|
||
|
var element = this;
|
||
|
|
||
|
$(element).button('loading');
|
||
|
|
||
|
$('#button-upload, #history .btn').prop('disabled', true);
|
||
|
|
||
|
$('#progress-bar').css('width', '0%');
|
||
|
$('#progress-bar').removeClass('bg-danger bg-success');
|
||
|
|
||
|
var next = 'index.php?route=tool/backup.backup&user_token={{ user_token }}&table=' + $('input[name^=\'backup\']:checked').first().val();
|
||
|
|
||
|
var backup = function () {
|
||
|
return $.ajax({
|
||
|
url: next,
|
||
|
type: 'post',
|
||
|
data: $('input[name^=\'backup\']:checked'),
|
||
|
dataType: 'json',
|
||
|
success: function (json) {
|
||
|
$('.alert-dismissible').remove();
|
||
|
|
||
|
if (json['error']) {
|
||
|
$('#progress-bar').addClass('bg-danger');
|
||
|
$('#progress-text').html('<div class="text-danger">' + json['error'] + '</div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
|
||
|
$(element).button('reset');
|
||
|
$('#button-upload, #history .btn').prop('disabled', false);
|
||
|
}
|
||
|
|
||
|
if (json['text']) {
|
||
|
$('#progress-text').html(json['text']);
|
||
|
}
|
||
|
|
||
|
if (json['success']) {
|
||
|
$('#progress-bar').css('width', '100%').addClass('bg-success');
|
||
|
$('#progress-text').html('<div class="text-success">' + json['success'] + '</div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
|
||
|
$(element).button('reset');
|
||
|
$('#button-upload, #history .btn').prop('disabled', false);
|
||
|
}
|
||
|
|
||
|
if (json['progress']) {
|
||
|
$('#progress-bar').css('width', json['progress'] + '%');
|
||
|
}
|
||
|
|
||
|
if (json['next']) {
|
||
|
next = json['next'];
|
||
|
|
||
|
chain.attach(backup);
|
||
|
}
|
||
|
},
|
||
|
error: function (xhr, ajaxOptions, thrownError) {
|
||
|
console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
||
|
|
||
|
$(element).button('reset');
|
||
|
$('#button-upload, #history .btn').prop('disabled', false);
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
chain.attach(backup);
|
||
|
});
|
||
|
|
||
|
// Restore
|
||
|
$('#history').on('click', '.btn-warning', function () {
|
||
|
var element = this;
|
||
|
|
||
|
$(element).button('loading');
|
||
|
|
||
|
$('#button-upload, #button-backup, #history .btn').not(element).prop('disabled', true);
|
||
|
|
||
|
$('#progress-bar').css('width', '0%');
|
||
|
$('#progress-bar').removeClass('bg-danger bg-success');
|
||
|
|
||
|
var next = 'index.php?route=tool/backup.restore&user_token={{ user_token }}&filename=' + encodeURIComponent($(this).val());
|
||
|
|
||
|
var restore = function () {
|
||
|
return $.ajax({
|
||
|
url: next,
|
||
|
type: 'post',
|
||
|
dataType: 'json',
|
||
|
success: function (json) {
|
||
|
console.log(json);
|
||
|
|
||
|
$('.alert-dismissible').remove();
|
||
|
|
||
|
if (json['error']) {
|
||
|
$('#progress-bar').addClass('bg-danger');
|
||
|
$('#progress-text').html('<div class="text-danger">' + json['error'] + '</div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
|
||
|
$(element).button('reset');
|
||
|
|
||
|
$('#button-upload, #button-backup, #history .btn').not(element).prop('disabled', false);
|
||
|
}
|
||
|
|
||
|
if (json['progress']) {
|
||
|
$('#progress-bar').css('width', json['progress'] + '%');
|
||
|
}
|
||
|
|
||
|
if (json['text']) {
|
||
|
$('#progress-text').html(json['text']);
|
||
|
}
|
||
|
|
||
|
if (json['success']) {
|
||
|
$('#progress-bar').css('width', '100%').addClass('bg-success');
|
||
|
$('#progress-text').html('<div class="text-success">' + json['success'] + '</div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
|
||
|
$(element).button('reset');
|
||
|
|
||
|
$('#button-upload, #button-backup, #history .btn').not(element).prop('disabled', false);
|
||
|
}
|
||
|
|
||
|
if (json['next']) {
|
||
|
next = json['next'];
|
||
|
|
||
|
chain.attach(restore);
|
||
|
}
|
||
|
},
|
||
|
error: function (xhr, ajaxOptions, thrownError) {
|
||
|
console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
||
|
|
||
|
$(element).button('reset');
|
||
|
|
||
|
$('#button-upload, #button-backup, #history .btn').not(element).prop('disabled', false);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
chain.attach(restore);
|
||
|
});
|
||
|
|
||
|
// Upload
|
||
|
$('#button-upload').on('click', function () {
|
||
|
$('#form-upload').remove();
|
||
|
|
||
|
$('body').prepend('<form enctype="multipart/form-data" id="form-upload" style="display: none;"><input type="file" name="upload" /></form>');
|
||
|
|
||
|
$('#form-upload input[name=\'upload\']').trigger('click');
|
||
|
|
||
|
$('#form-upload input[name=\'upload\']').on('change', function () {
|
||
|
if ((this.files[0].size / 1024) > {{ config_file_max_size }}) {
|
||
|
$(this).val('');
|
||
|
|
||
|
alert('{{ error_upload_size }}');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
if (typeof timer != 'undefined') {
|
||
|
clearInterval(timer);
|
||
|
}
|
||
|
|
||
|
timer = setInterval(function () {
|
||
|
if ($('#form-upload input[name=\'upload\']').val() !== '') {
|
||
|
clearInterval(timer);
|
||
|
|
||
|
$.ajax({
|
||
|
url: 'index.php?route=tool/backup.upload&user_token={{ user_token }}',
|
||
|
type: 'post',
|
||
|
dataType: 'json',
|
||
|
data: new FormData($('#form-upload')[0]),
|
||
|
cache: false,
|
||
|
contentType: false,
|
||
|
processData: false,
|
||
|
beforeSend: function () {
|
||
|
$('#button-upload').button('loading');
|
||
|
},
|
||
|
complete: function () {
|
||
|
$('#button-upload').button('reset');
|
||
|
},
|
||
|
success: function (json) {
|
||
|
$('.alert-dismissible').remove();
|
||
|
|
||
|
if (json['error']) {
|
||
|
$('#alert').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa-solid fa-circle-exclamation"></i> ' + json['error'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
}
|
||
|
|
||
|
if (json['success']) {
|
||
|
$('#alert').prepend('<div class="alert alert-success alert-dismissible"><i class="fa-solid fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
}
|
||
|
},
|
||
|
error: function (xhr, ajaxOptions, thrownError) {
|
||
|
console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}, 500);
|
||
|
});
|
||
|
|
||
|
// Delete
|
||
|
$('#history').on('click', '.btn-danger', function () {
|
||
|
var element = this;
|
||
|
|
||
|
$.ajax({
|
||
|
url: 'index.php?route=tool/backup.delete&user_token={{ user_token }}&filename=' + encodeURIComponent($(element).val()),
|
||
|
type: 'post',
|
||
|
dataType: 'json',
|
||
|
beforeSend: function () {
|
||
|
$(element).button('loading');
|
||
|
},
|
||
|
complete: function () {
|
||
|
$(element).button('reset');
|
||
|
},
|
||
|
success: function (json) {
|
||
|
$('.alert-dismissible').remove();
|
||
|
|
||
|
if (json['error']) {
|
||
|
$('#alert').prepend('<div class="alert alert-danger alert-dismissible"><i class="fa-solid fa-circle-exclamation"></i> ' + json['error'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
}
|
||
|
|
||
|
if (json['success']) {
|
||
|
$('#alert').prepend('<div class="alert alert-success alert-dismissible"><i class="fa-solid fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="btn-close" data-bs-dismiss="alert"></button></div>');
|
||
|
|
||
|
$('#history').load('index.php?route=tool/backup.history&user_token={{ user_token }}');
|
||
|
}
|
||
|
},
|
||
|
error: function (xhr, ajaxOptions, thrownError) {
|
||
|
console.log(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
//--></script>
|
||
|
{{ footer }}
|