mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
92 lines
4.3 KiB
Handlebars
92 lines
4.3 KiB
Handlebars
<div class="view-customize">
|
|
<div class="backup-restore">
|
|
<div class="backup-zone">
|
|
{{#if session.isGlobalAdmin}}
|
|
<p>
|
|
Documize Community is a multi-tenanted application enabling both "tech.mycompany.com" and "sales.mycompany.com" to run using the same executable/database.
|
|
As a Documize Community <b>Global Administrator</b>, you will be performing a complete system-wide backup across all tenants.
|
|
The Documize Community <b>Tenant Administrator</b> can login to perform a tenant-level backup (e.g. marketing.mycompany.com).
|
|
</p>
|
|
{{else}}
|
|
<p>
|
|
Documize Community is a multi-tenanted application enabling both "tech.mycompany.com" and "sales.mycompany.com" to run using the same executable/database.
|
|
A Documize Community <b>Global Administrator</b>, you will be performing a complete system-wide backup across all tenants.
|
|
As a Documize Community <b>Tenant Administrator</b> you can perform a tenant-level backup (e.g. marketing.mycompany.com).
|
|
</p>
|
|
{{/if}}
|
|
<p>It can take <b>several minutes</b> to complete the backup process — please be patient while the backup operation is in progress.</p>
|
|
|
|
<div class="margin-top-30 margin-bottom-20">
|
|
{{#ui/ui-checkbox selected=backupSpec.retain}}
|
|
Retain backup file on server
|
|
{{/ui/ui-checkbox}}
|
|
</div>
|
|
|
|
{{#if backupRunning}}
|
|
<h3 class="text-success">Backup running, please wait...</h3>
|
|
{{else}}
|
|
{{ui/ui-button color=constants.Color.Yellow light=true icon=constants.Icon.Database label=(concat "BACKUP TENANT (" appMeta.appHost ")") onClick=(action "onBackup")}}
|
|
{{#if session.isGlobalAdmin}}
|
|
{{ui/ui-button-gap}}
|
|
{{ui/ui-button color=constants.Color.Yellow light=true icon=constants.Icon.Database label="BACKUP SYSTEM" onClick=(action "onSystemBackup")}}
|
|
{{/if}}
|
|
{{/if}}
|
|
{{#if backupFailed}}
|
|
<div class="backup-fail">Backup failed — please check server logs</div>
|
|
{{/if}}
|
|
{{#if backupSuccess}}
|
|
<div class="backup-success">Backup successful ({{backupFilename}})</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="backup-restore">
|
|
<div class="restore-zone">
|
|
{{#if session.isGlobalAdmin}}
|
|
<p>Restore from a <b>system backup</b> should only be performed on an <b>empty Documize Community database.</b></p>
|
|
{{/if}}
|
|
<p>Restore operation will <b>re-create</b> users, groups, permissions, spaces, categories and content.</p>
|
|
<p>It can take <b>several minutes</b> to complete the restore process — please be patient while the restore operation is in progress.</p>
|
|
|
|
<div class="margin-top-30 margin-bottom-20">
|
|
<div class="custom-file">
|
|
<input type="file" class="custom-file-input" id="restore-file" accept="application/zip" multiple="false" onchange={{action "upload"}}>
|
|
<label class="custom-file-label" for="restore-file">Choose backup file</label>
|
|
</div>
|
|
<div class="margin-top-20"></div>
|
|
</div>
|
|
|
|
{{#if restoreFailed}}
|
|
<div class="restore-fail">Restore failed — please check server logs</div>
|
|
{{else if restoreSuccess}}
|
|
<div class="restore-success">Restore completed — restart your browser and log in</div>
|
|
{{else}}
|
|
{{#if restoreUploadReady}}
|
|
{{ui/ui-button color=constants.Color.Red light=false icon=constants.Icon.Database label=restoreButtonLabel onClick=(action "onShowRestoreModal")}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="confirm-restore-modal" class="modal" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">Confirm Restore</div>
|
|
<div class="modal-body">
|
|
<form onsubmit={{action "onRestore"}}>
|
|
<div class="form-group">
|
|
<label for="delete-space-name">Please type RESTORE to commence the process</label>
|
|
{{input type="text" id="confirm-restore" class="form-control mousetrap" placeholder="Please type RESTORE" value=confirmRestore}}
|
|
<small class="form-text text-muted">You should only restore to an empty Documize Community instance</small>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
{{ui/ui-button color=constants.Color.Gray light=true label=constants.Label.Cancel dismiss=true}}
|
|
{{ui/ui-button-gap}}
|
|
{{ui/ui-button color=constants.Color.Red light=true label=constants.Label.Restore onClick=(action "onRestore")}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|