
Separating tabs of single panel to separate panels. It will reduce amount of redundant calls, because it is very unlikely that someone will need all tabs at once. Also, it is current approach that is used by core projects. Similar refactor for admin dashboard is located at [1] [1] I874253e0e9a35ede8239bc1bdf0a330a44ade413 Change-Id: Ia8a432e136a9c06f3db887b9289d90853dd027e6 Partially-Implements BluePrint create-share-panel-group
354 lines
13 KiB
Python
354 lines
13 KiB
Python
# Copyright 2012 Nebula, Inc.
|
|
#
|
|
# 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 tables
|
|
from horizon import tabs
|
|
from horizon.utils import memoized
|
|
|
|
from manila_ui.api import manila
|
|
from manila_ui.dashboards.project.shares import forms as share_form
|
|
from manila_ui.dashboards.project.shares import tables as shares_tables
|
|
from manila_ui.dashboards.project.shares import tabs as shares_tabs
|
|
from manila_ui.dashboards import utils as ui_utils
|
|
from openstack_dashboard.usage import quotas
|
|
|
|
|
|
class ShareTableMixIn(object):
|
|
def _get_shares(self, search_opts=None):
|
|
try:
|
|
return manila.share_list(self.request, search_opts=search_opts)
|
|
except Exception:
|
|
exceptions.handle(self.request,
|
|
_('Unable to retrieve share list.'))
|
|
return []
|
|
|
|
def _set_id_if_nameless(self, shares):
|
|
for share in shares:
|
|
# It is possible to create a share with no name
|
|
if not share.name:
|
|
share.name = share.id
|
|
|
|
|
|
class SharesView(tables.MultiTableView, ShareTableMixIn):
|
|
table_classes = (
|
|
shares_tables.SharesTable,
|
|
)
|
|
template_name = "project/shares/index.html"
|
|
page_title = _("Shares")
|
|
|
|
@memoized.memoized_method
|
|
def get_shares_data(self):
|
|
share_nets_names = {}
|
|
share_nets = manila.share_network_list(self.request)
|
|
for share_net in share_nets:
|
|
share_nets_names[share_net.id] = share_net.name
|
|
try:
|
|
shares = manila.share_list(self.request)
|
|
for share in shares:
|
|
share.share_network = (
|
|
share_nets_names.get(share.share_network_id) or
|
|
share.share_network_id)
|
|
share.metadata = ui_utils.metadata_to_str(share.metadata)
|
|
|
|
snapshots = manila.share_snapshot_list(self.request, detailed=True)
|
|
share_ids_with_snapshots = []
|
|
for snapshot in snapshots:
|
|
share_ids_with_snapshots.append(snapshot.to_dict()['share_id'])
|
|
for share in shares:
|
|
if share.to_dict()['id'] in share_ids_with_snapshots:
|
|
setattr(share, 'has_snapshot', True)
|
|
else:
|
|
setattr(share, 'has_snapshot', False)
|
|
except Exception:
|
|
exceptions.handle(
|
|
self.request, _('Unable to retrieve share list.'))
|
|
return []
|
|
# Gather our tenants to correlate against IDs
|
|
return shares
|
|
|
|
|
|
class DetailView(tabs.TabView):
|
|
tab_group_class = shares_tabs.ShareDetailTabs
|
|
template_name = 'project/shares/detail.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(DetailView, self).get_context_data(**kwargs)
|
|
share = self.get_data()
|
|
share_display_name = share.name or share.id
|
|
context["share"] = share
|
|
context["share_display_name"] = share_display_name
|
|
context["page_title"] = _("Share Details: "
|
|
"%(share_display_name)s") % {
|
|
'share_display_name': share_display_name}
|
|
return context
|
|
|
|
@memoized.memoized_method
|
|
def get_data(self):
|
|
try:
|
|
share_id = self.kwargs['share_id']
|
|
share = manila.share_get(self.request, share_id)
|
|
share.rules = manila.share_rules_list(self.request, share_id)
|
|
share.export_locations = manila.share_export_location_list(
|
|
self.request, share_id)
|
|
export_locations = [
|
|
exp['path'] for exp in share.export_locations]
|
|
share.el_size = ui_utils.calculate_longest_str_size(
|
|
export_locations)
|
|
except Exception:
|
|
redirect = reverse('horizon:project:shares:index')
|
|
exceptions.handle(self.request,
|
|
_('Unable to retrieve share details.'),
|
|
redirect=redirect)
|
|
return share
|
|
|
|
def get_tabs(self, request, *args, **kwargs):
|
|
share = self.get_data()
|
|
return self.tab_group_class(request, share=share, **kwargs)
|
|
|
|
|
|
class CreateView(forms.ModalFormView):
|
|
form_class = share_form.CreateForm
|
|
form_id = "create_share"
|
|
template_name = 'project/shares/create.html'
|
|
modal_header = _("Create Share")
|
|
modal_id = "create_share_modal"
|
|
submit_label = _("Create")
|
|
submit_url = reverse_lazy("horizon:project:shares:create")
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Create a Share')
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(CreateView, self).get_context_data(**kwargs)
|
|
try:
|
|
context['usages'] = quotas.tenant_limit_usages(self.request)
|
|
except Exception:
|
|
exceptions.handle(self.request)
|
|
return context
|
|
|
|
|
|
class UpdateView(forms.ModalFormView):
|
|
form_class = share_form.UpdateForm
|
|
form_id = "update_share"
|
|
template_name = 'project/shares/update.html'
|
|
modal_header = _("Edit Share")
|
|
modal_id = "update_share_modal"
|
|
submit_label = _("Edit")
|
|
submit_url = "horizon:project:shares:update"
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Edit Share')
|
|
|
|
def get_object(self):
|
|
if not hasattr(self, "_object"):
|
|
vol_id = self.kwargs['share_id']
|
|
try:
|
|
self._object = manila.share_get(self.request, vol_id)
|
|
except Exception:
|
|
msg = _('Unable to retrieve share.')
|
|
url = reverse('horizon:project:shares:index')
|
|
exceptions.handle(self.request, msg, redirect=url)
|
|
return self._object
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(UpdateView, self).get_context_data(**kwargs)
|
|
return context
|
|
|
|
def get_initial(self):
|
|
self.submit_url = reverse(self.submit_url, kwargs=self.kwargs)
|
|
share = self.get_object()
|
|
return {'share_id': self.kwargs["share_id"],
|
|
'name': share.name,
|
|
'description': share.description}
|
|
|
|
|
|
class UpdateMetadataView(forms.ModalFormView):
|
|
form_class = share_form.UpdateMetadataForm
|
|
form_id = "update_share_metadata"
|
|
template_name = 'project/shares/update_metadata.html'
|
|
modal_header = _("Edit Share Metadata")
|
|
modal_id = "update_share_metadata_modal"
|
|
submit_label = _("Save Changes")
|
|
submit_url = "horizon:project:shares:update_metadata"
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Edit Share Metadata')
|
|
|
|
def get_object(self):
|
|
if not hasattr(self, "_object"):
|
|
sh_id = self.kwargs['share_id']
|
|
try:
|
|
self._object = manila.share_get(self.request, sh_id)
|
|
except Exception:
|
|
msg = _('Unable to retrieve share.')
|
|
url = reverse('horizon:project:shares:index')
|
|
exceptions.handle(self.request, msg, redirect=url)
|
|
return self._object
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(UpdateMetadataView, self).get_context_data(**kwargs)
|
|
args = (self.get_object().id,)
|
|
context['submit_url'] = reverse(self.submit_url, args=args)
|
|
return context
|
|
|
|
def get_initial(self):
|
|
share = self.get_object()
|
|
return {'share_id': self.kwargs["share_id"],
|
|
'metadata': share.metadata}
|
|
|
|
|
|
class AddRuleView(forms.ModalFormView):
|
|
form_class = share_form.AddRule
|
|
form_id = "rule_add"
|
|
template_name = 'project/shares/rule_add.html'
|
|
modal_header = _("Add Rule")
|
|
modal_id = "rule_add_modal"
|
|
submit_label = _("Add")
|
|
submit_url = "horizon:project:shares:rule_add"
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Add Rule')
|
|
|
|
def get_object(self):
|
|
if not hasattr(self, "_object"):
|
|
vol_id = self.kwargs['share_id']
|
|
try:
|
|
self._object = manila.share_get(self.request, vol_id)
|
|
except Exception:
|
|
msg = _('Unable to retrieve share.')
|
|
url = reverse('horizon:project:shares:index')
|
|
exceptions.handle(self.request, msg, redirect=url)
|
|
return self._object
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(AddRuleView, self).get_context_data(**kwargs)
|
|
args = (self.get_object().id,)
|
|
context['submit_url'] = reverse(self.submit_url, args=args)
|
|
return context
|
|
|
|
def get_initial(self):
|
|
share = self.get_object()
|
|
return {'share_id': self.kwargs["share_id"],
|
|
'name': share.name,
|
|
'description': share.description}
|
|
|
|
def get_success_url(self):
|
|
return reverse("horizon:project:shares:manage_rules",
|
|
args=[self.kwargs['share_id']])
|
|
|
|
|
|
class ManageRulesView(tables.DataTableView):
|
|
table_class = shares_tables.RulesTable
|
|
template_name = 'project/shares/manage_rules.html'
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(ManageRulesView, self).get_context_data(**kwargs)
|
|
share = manila.share_get(self.request, self.kwargs['share_id'])
|
|
context['share_display_name'] = share.name or share.id
|
|
context["share"] = self.get_data()
|
|
context["page_title"] = _("Share Rules: "
|
|
"%(share_display_name)s") % {
|
|
'share_display_name': context['share_display_name']}
|
|
return context
|
|
|
|
@memoized.memoized_method
|
|
def get_data(self):
|
|
try:
|
|
share_id = self.kwargs['share_id']
|
|
rules = manila.share_rules_list(self.request, share_id)
|
|
except Exception:
|
|
redirect = reverse('horizon:project:shares:index')
|
|
exceptions.handle(self.request,
|
|
_('Unable to retrieve share rules.'),
|
|
redirect=redirect)
|
|
return rules
|
|
|
|
|
|
class ExtendView(forms.ModalFormView):
|
|
form_class = share_form.ExtendForm
|
|
form_id = "extend_share"
|
|
template_name = 'project/shares/extend.html'
|
|
modal_header = _("Extend Share")
|
|
modal_id = "extend_share_modal"
|
|
submit_label = _("Extend")
|
|
submit_url = "horizon:project:shares:extend"
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Extend Share')
|
|
|
|
@memoized.memoized_method
|
|
def get_object(self):
|
|
try:
|
|
return manila.share_get(self.request, self.kwargs['share_id'])
|
|
except Exception:
|
|
exceptions.handle(self.request, _('Unable to retrieve share.'))
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(ExtendView, self).get_context_data(**kwargs)
|
|
args = (self.get_object().id,)
|
|
context['submit_url'] = reverse(self.submit_url, args=args)
|
|
try:
|
|
context['usages'] = quotas.tenant_limit_usages(self.request)
|
|
context['usages']['totalShareGigabytesUsed'] -= int(
|
|
self.get_object().size)
|
|
except Exception:
|
|
exceptions.handle(self.request)
|
|
|
|
return context
|
|
|
|
def get_initial(self):
|
|
share = self.get_object()
|
|
if not share or isinstance(share, Exception):
|
|
raise exceptions.NotFound()
|
|
return {
|
|
'share_id': self.kwargs["share_id"],
|
|
'name': share.name or share.id,
|
|
'orig_size': share.size,
|
|
'new_size': int(share.size) + 1,
|
|
}
|
|
|
|
|
|
class RevertView(forms.ModalFormView):
|
|
form_class = share_form.RevertForm
|
|
form_id = "revert_share"
|
|
template_name = 'project/shares/revert.html'
|
|
modal_header = _("Revert Share to a Snapshot")
|
|
modal_id = "revert_share_modal"
|
|
submit_label = _("Revert share to a snapshot")
|
|
submit_url = "horizon:project:shares:revert"
|
|
success_url = reverse_lazy("horizon:project:shares:index")
|
|
page_title = _('Revert Share to a Snapshot')
|
|
|
|
@memoized.memoized_method
|
|
def get_object(self):
|
|
try:
|
|
return manila.share_get(self.request, self.kwargs['share_id'])
|
|
except Exception:
|
|
exceptions.handle(self.request, _('Unable to retrieve share.'))
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super(self.__class__, self).get_context_data(**kwargs)
|
|
args = (self.get_object().id,)
|
|
context['submit_url'] = reverse(self.submit_url, args=args)
|
|
return context
|
|
|
|
def get_initial(self):
|
|
share = self.get_object()
|
|
if not share or isinstance(share, Exception):
|
|
raise exceptions.NotFound()
|
|
return {
|
|
'share_id': self.kwargs["share_id"],
|
|
'name': share.name or share.id,
|
|
}
|