apmec-horizon/apmec_horizon/openstack_dashboard/dashboards/mec/meacatalog/views.py

113 lines
3.9 KiB
Python

# Copyright 2015 Brocade Communications System, 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 tabs
from horizon.utils import memoized
from openstack_dashboard import api
from apmec_horizon.openstack_dashboard import api as apmec_api
from apmec_horizon.openstack_dashboard.dashboards.mec.meacatalog \
import tabs as mec_tabs
from apmec_horizon.openstack_dashboard.dashboards.mec.meacatalog \
import forms as project_forms
class IndexView(tabs.TabbedTableView):
# A very simple class-based view...
tab_group_class = mec_tabs.MEACatalogTabs
template_name = 'mec/meacatalog/index.html'
def get_data(self, request, context, *args, **kwargs):
# Add data to the context here...
return context
class OnBoardMEAView(forms.ModalFormView):
form_class = project_forms.OnBoardMEA
template_name = 'mec/meacatalog/onboardmea.html'
success_url = reverse_lazy("horizon:mec:meacatalog:index")
modal_id = "onboardmea_modal"
modal_header = _("OnBoard MEA")
submit_label = _("OnBoard MEA")
submit_url = "horizon:mec:meacatalog:onboardmea"
@memoized.memoized_method
def get_object(self):
try:
return api.nova.server_get(self.request,
self.kwargs["instance_id"])
except Exception:
exceptions.handle(self.request,
_("Unable to retrieve instance."))
def get_initial(self):
# return {"instance_id": self.kwargs["instance_id"]}
return {}
def get_context_data(self, **kwargs):
context = super(OnBoardMEAView, self).get_context_data(**kwargs)
# instance_id = self.kwargs['instance_id']
# context['instance_id'] = instance_id
# context['instance'] = self.get_object()
context['submit_url'] = reverse(self.submit_url)
return context
class DetailView(tabs.TabView):
tab_group_class = mec_tabs.MEADDetailTabs
template_name = 'mec/meacatalog/detail.html'
redirect_url = 'horizon:mec:meacatalog:index'
page_title = _("MEAD Details: {{ mead_id }}")
def get_context_data(self, **kwargs):
context = super(DetailView, self).get_context_data(**kwargs)
mead = self.get_data()
context['mead'] = mead
context['mead_id'] = kwargs['mead_id']
context['url'] = reverse(self.redirect_url)
return context
@memoized.memoized_method
def get_data(self):
mead_id = self.kwargs['mead_id']
try:
template = None
mead = apmec_api.apmec.get_mead(self.request, mead_id)
attributes_json = mead['mead']['attributes']
template = attributes_json.get('mead', None)
mead['template'] = template
except Exception:
redirect = reverse(self.redirect_url)
exceptions.handle(self.request,
_('Unable to retrieve details for '
'MEAD "%s".') % mead_id,
redirect=redirect)
raise exceptions.Http302(redirect)
return mead
def get_tabs(self, request, *args, **kwargs):
mead = self.get_data()
return self.tab_group_class(request, mead=mead, **kwargs)