snipe-it/resources/views/settings/backups.blade.php

194 lines
7.5 KiB
PHP
Raw Normal View History

@extends('layouts/default')
2016-03-25 01:18:05 -07:00
{{-- Page title --}}
@section('title')
{{ trans('admin/settings/general.backups') }}
@parent
@stop
2017-07-07 23:44:48 -07:00
@section('header_right')
<a href="{{ route('settings.index') }}" class="btn btn-default pull-right" style="margin-left: 5px;">
{{ trans('general.back') }}
</a>
<form method="POST" style="display: inline">
{{ Form::hidden('_token', csrf_token()) }}
<button class="btn btn-primary {{ (config('app.lock_passwords')) ? ' disabled': '' }}">{{ trans('admin/settings/general.generate_backup') }}</button>
</form>
2017-07-07 23:44:48 -07:00
@stop
2016-03-25 01:18:05 -07:00
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-md-8">
2016-03-25 01:18:05 -07:00
<div class="box box-default">
<div class="box-body">
2016-03-25 01:18:05 -07:00
<div class="table-responsive">
<table
data-cookie="true"
data-cookie-id-table="system-backups"
data-pagination="true"
data-id-table="system-backups"
data-search="true"
data-side-pagination="client"
data-sort-order="asc"
id="system-backups"
class="table table-striped snipe-table">
2016-03-25 01:18:05 -07:00
<thead>
<tr>
<th data-sortable="true">File</th>
<th data-sortable="true" data-field="modified_display" data-sort-name="modified_value">Created</th>
<th data-field="modified_value" data-visible="false"></th>
<th data-sortable="true">Size</th>
2020-04-01 03:25:07 -07:00
<th><span class="sr-only">{{ trans('general.delete') }}</span></th>
</tr>
2016-03-25 01:18:05 -07:00
</thead>
<tbody>
@foreach ($files as $file)
<tr>
2020-08-28 18:22:37 -07:00
<td>
<a href="{{ route('settings.backups.download', [$file['filename']]) }}">
{{ $file['filename'] }}
</a>
</td>
<td>{{ $file['modified_display'] }} </td>
<td>{{ $file['modified_value'] }} </td>
<td>{{ $file['filesize'] }}</td>
<td>
2017-06-09 12:44:11 -07:00
@can('superadmin')
<a data-html="false"
2017-07-07 23:44:48 -07:00
class="btn delete-asset btn-danger btn-sm {{ (config('app.lock_passwords')) ? ' disabled': '' }}" data-toggle="modal" href=" {{ route('settings.backups.destroy', $file['filename']) }}" data-content="{{ trans('admin/settings/message.backup.delete_confirm') }}" data-title="{{ trans('general.delete') }} {{ htmlspecialchars($file['filename']) }} ?" onClick="return false;">
<i class="fas fa-trash icon-white" aria-hidden="true"></i>
2020-04-01 03:25:07 -07:00
<span class="sr-only">{{ trans('general.delete') }}</span>
2017-06-09 12:44:11 -07:00
</a>
<a data-html="true"
href="{{ route('settings.backups.restore', $file['filename']) }}" class="btn btn-warning btn-sm restore-asset {{ (config('app.lock_passwords')) ? ' disabled': '' }}" data-toggle="modal" data-content="Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This method does not currently support installations that use S3 for file storage. This will also log out all of your existing users (including you)." data-title="Are you sure you wish to restore your database from {{ $file['filename']}}?" onClick="return false;">
<i class="fas fa-retweet" aria-hidden="true"></i>
<span class="sr-only">Restore</span>
</a>
2017-06-09 12:44:11 -07:00
@endcan
</td>
</tr>
@endforeach
</tbody>
2016-03-25 01:18:05 -07:00
</table>
</div> <!-- end table-responsive div -->
</div> <!-- end box-body div -->
</div> <!-- end box div -->
</div> <!-- end col-md div -->
2016-03-25 01:18:05 -07:00
<!-- side address column -->
<div class="col-md-4">
<h2 style="margin-top: 0px">Upload Backup</h2>
2016-03-25 01:18:05 -07:00
{{ Form::open([
'method' => 'POST',
'route' => 'settings.backups.upload',
'files' => true,
'class' => 'form-horizontal' ]) }}
@csrf
<div class="form-group {{ $errors->has((isset($fieldname) ? $fieldname : 'image')) ? 'has-error' : '' }}">
<div class="col-md-8 col-xs-8">
<!-- screen reader only -->
<input type="file" id="file" name="file" aria-label="file" class="sr-only">
<!-- displayed on screen -->
<label class="btn btn-default col-md-12 col-xs-12" aria-hidden="true">
<i class="fas fa-paperclip" aria-hidden="true"></i>
{{ trans('button.select_file') }}
<input type="file" name="file" class="js-uploadFile" id="uploadFile" data-maxsize="{{ Helper::file_upload_max_size() }}" accept="application/zip" style="display:none;" aria-label="file" aria-hidden="true">
</label>
</div>
<div class="col-md-4 col-xs-4">
<button class="btn btn-primary col-md-12 col-xs-12" id="uploadButton" disabled>Upload</button>
</div>
<div class="col-md-12">
<p class="label label-default col-md-12" style="font-size: 120%!important; margin-top: 10px; margin-bottom: 10px;" id="uploadFile-info"></p>
<p class="help-block" style="margin-top: 10px; margin-bottom: 10px;" id="uploadFile-status">{{ trans_choice('general.filetypes_accepted_help', 3, ['size' => Helper::file_upload_max_size_readable(), 'types' => '.zip']) }}</p>
{!! $errors->first('image', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
</div>
</div>
{{ Form::close() }}
<h3>Restoring from Backup</h3>
<div class="alert alert-warning fade in">
<p>You can use the restore (<i class="text-white fas fa-retweet" aria-hidden="true"></i>) button to restore from a previous backup, however there are a few things you should know: </p>
</div>
<ul class="list-unstyled">
<li><i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
Your entire database and any uploaded files will be completely replaced by what's in the backup file.
<br><br>
</li>
<li><i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
Very large backups may time out on the restore attempt and may still need to be run via command line.
<br><br>
</li>
<li><i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
This does not currently work with S3 file storage.
<br><br>
</li>
<li><i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
You will be logged out after your restore is complete.</li>
</ul>
<br><br>
<p>Backup files are located in: <code>{{ $path }}</code></p>
</div> <!-- end col-md-12 form div -->
</div> <!-- end form group div -->
</div> <!-- end col-md-3 div -->
</div> <!-- end row div -->
2016-03-25 01:18:05 -07:00
@stop
@section('moar_scripts')
@include ('partials.bootstrap-table')
<script>
$(document).ready(function() {
$('#uploadFile').on('keyup', function() {
let empty = false;
$('#uploadFile').each(function() {
empty = $(this).val().length == 0;
});
if (empty)
$('#uploadButton').attr('disabled', 'disabled');
else
$('#uploadButton').attr('disabled', false);
});
});
</script>
@stop