mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-15 17:56:12 +01:00
backupv2 0.1
This commit is contained in:
229
IncBackups/templates/IncBackups/createV2Backup.html
Normal file
229
IncBackups/templates/IncBackups/createV2Backup.html
Normal file
@@ -0,0 +1,229 @@
|
||||
{% extends "baseTemplate/index.html" %}
|
||||
{% load i18n %}
|
||||
{% block title %}{% trans "Create Incremental Backup" %}{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
{% load static %}
|
||||
|
||||
{% get_current_language as LANGUAGE_CODE %}
|
||||
<!-- Current language: {{ LANGUAGE_CODE }} -->
|
||||
|
||||
<div class="container">
|
||||
<div id="page-title">
|
||||
<h2>{% trans "Backup Website" %} - <a target="_blank" href="https://cyberpanel.net/docs/2-create-restore-incremental-backups/"
|
||||
style="height: 23px;line-height: 21px;"
|
||||
class="btn btn-border btn-alt border-red btn-link font-red" title=""><span>{% trans "Backup Docs" %}</span></a>
|
||||
</h2>
|
||||
<p>{% trans "This page can be used to create incremental backups for your websites." %}</p>
|
||||
</div>
|
||||
|
||||
<h1>habbi test v2 backup</h1>
|
||||
|
||||
{# <div ng-controller="createIncrementalBackups" class="panel">#}
|
||||
{# <div class="panel-body">#}
|
||||
{# <h3 class="title-hero">#}
|
||||
{# {% trans "Backup Website" %} <img ng-hide="cyberpanelLoading"#}
|
||||
{# src="{% static 'images/loading.gif' %}">#}
|
||||
{# </h3>#}
|
||||
{# <div class="example-box-wrapper">#}
|
||||
{##}
|
||||
{##}
|
||||
{# <form action="/" class="form-horizontal bordered-row">#}
|
||||
{##}
|
||||
{##}
|
||||
{# <div class="form-group">#}
|
||||
{# <label class="col-sm-3 control-label">{% trans "Select Website" %} </label>#}
|
||||
{# <div class="col-sm-6">#}
|
||||
{# <select ng-change="fetchDetails()" ng-model="websiteToBeBacked" class="form-control">#}
|
||||
{# {% for items in websiteList %}#}
|
||||
{# <option>{{ items }}</option>#}
|
||||
{# {% endfor %}#}
|
||||
{# </select>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{# <div ng-hide="destination" class="form-group">#}
|
||||
{# <label class="col-sm-3 control-label">{% trans "Destination" %}</label>#}
|
||||
{# <div class="col-sm-6">#}
|
||||
{# <select ng-change="destinationSelection()" ng-model="backupDestinations"#}
|
||||
{# class="form-control">#}
|
||||
{# {% for items in destinations %}#}
|
||||
{# <option>{{ items }}</option>#}
|
||||
{# {% endfor %}#}
|
||||
{# </select>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{# <div ng-hide="destination" class="form-group">#}
|
||||
{# <label class="col-sm-3 control-label">{% trans "Backup Content" %}</label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="websiteData" type="checkbox" value="">#}
|
||||
{# Data#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# <label class="col-sm-3 control-label"></label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="websiteDatabases" type="checkbox" value="">#}
|
||||
{# Databases#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# <label class="col-sm-3 control-label"></label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="websiteEmails" type="checkbox" value="">#}
|
||||
{# Emails#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# <!---#}
|
||||
{# <label class="col-sm-3 control-label"></label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="websiteSSLs" type="checkbox" value="">#}
|
||||
{# SSL Certificates#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div> -->#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{##}
|
||||
{# <!---- if Backup is running ----->#}
|
||||
{##}
|
||||
{# <div ng-hide="runningBackup" class="form-group">#}
|
||||
{# <div class="col-sm-12">#}
|
||||
{# <div class="col-sm-12">#}
|
||||
{# <textarea ng-model="status" class="form-control" rows="10"></textarea>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{##}
|
||||
{# <!---- if Backup is running------>#}
|
||||
{##}
|
||||
{# <div ng-hide="backupButton" class="form-group">#}
|
||||
{# <label class="col-sm-3 control-label"></label>#}
|
||||
{# <div class="col-sm-4">#}
|
||||
{# <button type="button" ng-click="createBackup()"#}
|
||||
{# class="btn btn-primary btn-lg btn-block">{% trans "Create Backup" %}</button>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{##}
|
||||
{# <!------ List of records --------------->#}
|
||||
{##}
|
||||
{# <div class="form-group">#}
|
||||
{##}
|
||||
{# <div class="col-sm-12">#}
|
||||
{##}
|
||||
{# <table class="table">#}
|
||||
{# <thead>#}
|
||||
{# <tr>#}
|
||||
{# <th>{% trans "ID" %}</th>#}
|
||||
{# <th>{% trans "Date" %}</th>#}
|
||||
{# <th>{% trans "Restore" %}</th>#}
|
||||
{# <th>{% trans "Delete" %}</th>#}
|
||||
{# </tr>#}
|
||||
{# </thead>#}
|
||||
{# <tbody>#}
|
||||
{# <tr ng-repeat="record in records track by $index">#}
|
||||
{# <td ng-bind="record.id"></td>#}
|
||||
{# <td ng-bind="record.date"></td>#}
|
||||
{# <td>#}
|
||||
{# <a ng-click="restore(record.id)" data-toggle="modal" data-target="#settings"#}
|
||||
{# ng-click='deleteCLPackage()'#}
|
||||
{# class="btn btn-border btn-alt border-green btn-link font-green"#}
|
||||
{# title=""><span>Restore Points</span></a>#}
|
||||
{# <div id="settings" class="modal fade" role="dialog">#}
|
||||
{# <div class="modal-dialog modal-lg">#}
|
||||
{##}
|
||||
{# <!-- Modal content-->#}
|
||||
{# <div class="modal-content">#}
|
||||
{# <div class="modal-header">#}
|
||||
{# <button type="button" class="close" data-dismiss="modal">#}
|
||||
{# ×#}
|
||||
{# </button>#}
|
||||
{# <h4 class="modal-title">Restore Points#}
|
||||
{# <img ng-hide="cyberpanelLoading"#}
|
||||
{# src="{% static 'images/loading.gif' %}">#}
|
||||
{# </h4>#}
|
||||
{# </div>#}
|
||||
{# <div class="modal-body">#}
|
||||
{##}
|
||||
{# <table class="table">#}
|
||||
{# <thead>#}
|
||||
{# <tr>#}
|
||||
{# <th>{% trans "Job ID" %}</th>#}
|
||||
{# <th>{% trans "Snapshot ID" %}</th>#}
|
||||
{# <th>{% trans "Type" %}</th>#}
|
||||
{# <th>{% trans "Destination" %}</th>#}
|
||||
{# <th>{% trans "Action" %}</th>#}
|
||||
{# </tr>#}
|
||||
{# </thead>#}
|
||||
{# <tbody>#}
|
||||
{# <tr ng-repeat="job in jobs track by $index">#}
|
||||
{# <td ng-bind="job.id"></td>#}
|
||||
{# <td ng-bind="job.snapshotid"></td>#}
|
||||
{# <td ng-bind="job.type"></td>#}
|
||||
{# <td ng-bind="job.destination"></td>#}
|
||||
{# <td>#}
|
||||
{# <a ng-click="restorePoint(job.id, 0)" class="btn btn-border btn-alt border-green btn-link font-green"#}
|
||||
{# title=""><span>Restore</span></a>#}
|
||||
{# </td>#}
|
||||
{# </tr>#}
|
||||
{# </tbody>#}
|
||||
{# </table>#}
|
||||
{##}
|
||||
{# <div ng-hide="restoreSt" class="form-group">#}
|
||||
{# <div class="col-sm-12">#}
|
||||
{# <div class="col-sm-12">#}
|
||||
{# <textarea ng-model="status"#}
|
||||
{# class="form-control"#}
|
||||
{# rows="7"></textarea>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{# </div>#}
|
||||
{# <div class="modal-footer">#}
|
||||
{# <button type="button" ng-disabled="savingSettings"#}
|
||||
{# class="btn btn-default" data-dismiss="modal">#}
|
||||
{# Close#}
|
||||
{# </button>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </td>#}
|
||||
{# <a href="">#}
|
||||
{# <td ng-click="deleteBackup(record.id)"><img#}
|
||||
{# src="{% static 'images/delete.png' %}"></td>#}
|
||||
{# </a>#}
|
||||
{# </tr>#}
|
||||
{# </tbody>#}
|
||||
{# </table>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{##}
|
||||
{# <!------ List of records --------------->#}
|
||||
{##}
|
||||
{##}
|
||||
{# </form>#}
|
||||
{##}
|
||||
{##}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
@@ -22,4 +22,7 @@ urlpatterns = [
|
||||
url(r'^saveChanges$', views.save_changes, name='saveChanges'),
|
||||
url(r'^removeSite$', views.remove_site, name='removeSite'),
|
||||
url(r'^addWebsite$', views.add_website, name='addWebsite'),
|
||||
### V2 Backups URls
|
||||
url(r'^createV2Backup$', views.createV2Backup, name='createV2Backup'),
|
||||
|
||||
]
|
||||
@@ -704,3 +704,22 @@ def add_website(request):
|
||||
except BaseException as msg:
|
||||
final_json = json.dumps({'status': 0, 'error_message': str(msg)})
|
||||
return HttpResponse(final_json)
|
||||
|
||||
|
||||
|
||||
def createV2Backup(request):
|
||||
try:
|
||||
#user_id, current_acl = _get_user_acl(request)
|
||||
# if ACLManager.currentContextPermission(current_acl, 'createBackup') == 0:
|
||||
# return ACLManager.loadError()
|
||||
|
||||
# websites = ACLManager.findAllSites(current_acl, user_id)
|
||||
#
|
||||
# destinations = _get_destinations(local=True)
|
||||
proc = httpProc(request, 'IncBackups/createV2Backup.html', 'createBackup')
|
||||
return proc.render()
|
||||
|
||||
# return def_renderer(request, 'IncBackups/createV2Backup.html', 'createBackup')
|
||||
except BaseException as msg:
|
||||
final_json = json.dumps({'status': 0, 'error_message': str(msg)})
|
||||
return HttpResponse(final_json)
|
||||
|
||||
@@ -715,6 +715,24 @@
|
||||
</div><!-- .sidebar-submenu -->
|
||||
</li>
|
||||
|
||||
<li id="sidebar-menu-item-backupV2">
|
||||
<a href="{% url 'loadBackupHome' %}" title="{% trans 'BackupV2' %}">
|
||||
<i class="glyph-icon tooltip-button icon-copy" title=".icon-folder"></i>
|
||||
<span>{% trans "Backup V2" %}</span>
|
||||
</a>
|
||||
<div class="sidebar-submenu">
|
||||
|
||||
<ul>
|
||||
|
||||
<li><a href="{% url 'createV2Backup' %}"
|
||||
title="{% trans "Create V2 Backup" %}"><span>{% trans "Create V2 Backup" %}</span></a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div><!-- .sidebar-submenu -->
|
||||
</li>
|
||||
|
||||
|
||||
<li id="sidebar-menu-item-incremental-backup">
|
||||
<a href="{% url 'loadBackupHome' %}" title="{% trans 'Incremental Backup - Beta' %}">
|
||||
|
||||
Reference in New Issue
Block a user