tacker-horizon/tacker_horizon/openstack_dashboard/dashboards/nfv/vnffgcatalog/views.py

110 lines
3.9 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.urls import reverse
from django.urls import reverse_lazy
from django.utils.translation import gettext_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 tacker_horizon.openstack_dashboard import api as tacker_api
from tacker_horizon.openstack_dashboard.dashboards.nfv.vnffgcatalog \
import tabs as nfv_tabs
from tacker_horizon.openstack_dashboard.dashboards.nfv.vnffgcatalog \
import forms as project_forms
class IndexView(tabs.TabbedTableView):
# A very simple class-based view...
tab_group_class = nfv_tabs.VNFFGCatalogTabs
template_name = 'nfv/vnffgcatalog/index.html'
def get_data(self, request, context, *args, **kwargs):
# Add data to the context here...
return context
class OnBoardVNFFGView(forms.ModalFormView):
form_class = project_forms.OnBoardVNFFG
template_name = 'nfv/vnffgcatalog/onboardvnffg.html'
success_url = reverse_lazy("horizon:nfv:vnffgcatalog:index")
modal_id = "onboardvnffg_modal"
modal_header = _("OnBoard VNFFG")
submit_label = _("OnBoard VNFFG")
submit_url = "horizon:nfv:vnffgcatalog:onboardvnffg"
@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(OnBoardVNFFGView, 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 = nfv_tabs.VNFFGDDetailTabs
template_name = 'nfv/vnffgcatalog/detail.html'
redirect_url = 'horizon:nfv:vnffgcatalog:index'
page_title = _("VNFFGD Details: {{ vnffgd_id }}")
def get_context_data(self, **kwargs):
context = super(DetailView, self).get_context_data(**kwargs)
vnffgd = self.get_data()
context['vnffgd'] = vnffgd
context['vnffgd_id'] = kwargs['vnffgd_id']
context['url'] = reverse(self.redirect_url)
return context
@memoized.memoized_method
def get_data(self):
vnffgd_id = self.kwargs['vnffgd_id']
try:
template = None
vnffgd = tacker_api.tacker.get_vnffgd(self.request, vnffgd_id)
template = vnffgd['vnffgd']['template'].get('vnffgd', None)
vnffgd['template'] = template
except Exception:
redirect = reverse(self.redirect_url)
exceptions.handle(self.request,
_('Unable to retrieve details for '
'VNFFGD "%s".') % vnffgd_id,
redirect=redirect)
raise exceptions.Http302(redirect)
return vnffgd
def get_tabs(self, request, *args, **kwargs):
vnffgd = self.get_data()
return self.tab_group_class(request, vnffgd=vnffgd, **kwargs)