
Users can create, view, delete and restore volume backups Change-Id: I85b372013c4573018d39178314e769ec8adfd3c7 Co-Authored-By: Lin Hua Cheng <lin-hua.cheng@hp.com> Implements: blueprint volume-backups
89 lines
3.2 KiB
Python
89 lines
3.2 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from django.core.urlresolvers import reverse
|
|
from django.core.urlresolvers import reverse_lazy
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from horizon import exceptions
|
|
from horizon import forms
|
|
from horizon import tabs
|
|
from horizon.utils import memoized
|
|
|
|
from openstack_dashboard import api
|
|
from openstack_dashboard.dashboards.project.volumes.backups \
|
|
import forms as backup_forms
|
|
from openstack_dashboard.dashboards.project.volumes.backups \
|
|
import tabs as backup_tabs
|
|
|
|
|
|
class CreateBackupView(forms.ModalFormView):
|
|
form_class = backup_forms.CreateBackupForm
|
|
template_name = 'project/volumes/backups/create_backup.html'
|
|
success_url = reverse_lazy("horizon:project:volumes:backups_tab")
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(CreateBackupView, self).get_context_data(**kwargs)
|
|
context['volume_id'] = self.kwargs['volume_id']
|
|
return context
|
|
|
|
def get_initial(self):
|
|
return {"volume_id": self.kwargs["volume_id"]}
|
|
|
|
|
|
class BackupDetailView(tabs.TabView):
|
|
tab_group_class = backup_tabs.BackupDetailTabs
|
|
template_name = 'project/volumes/backups/detail.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(BackupDetailView, self).get_context_data(**kwargs)
|
|
context["backup"] = self.get_data()
|
|
return context
|
|
|
|
@memoized.memoized_method
|
|
def get_data(self):
|
|
try:
|
|
backup_id = self.kwargs['backup_id']
|
|
backup = api.cinder.volume_backup_get(self.request,
|
|
backup_id)
|
|
except Exception:
|
|
redirect = reverse('horizon:project:volumes:index')
|
|
exceptions.handle(self.request,
|
|
_('Unable to retrieve backup details.'),
|
|
redirect=redirect)
|
|
return backup
|
|
|
|
def get_tabs(self, request, *args, **kwargs):
|
|
backup = self.get_data()
|
|
return self.tab_group_class(request, backup=backup, **kwargs)
|
|
|
|
|
|
class RestoreBackupView(forms.ModalFormView):
|
|
form_class = backup_forms.RestoreBackupForm
|
|
template_name = 'project/volumes/backups/restore_backup.html'
|
|
success_url = reverse_lazy('horizon:project:volumes:index')
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(RestoreBackupView, self).get_context_data(**kwargs)
|
|
context['backup_id'] = self.kwargs['backup_id']
|
|
return context
|
|
|
|
def get_initial(self):
|
|
backup_id = self.kwargs['backup_id']
|
|
backup_name = self.request.GET.get('backup_name')
|
|
volume_id = self.request.GET.get('volume_id')
|
|
return {
|
|
'backup_id': backup_id,
|
|
'backup_name': backup_name,
|
|
'volume_id': volume_id,
|
|
}
|