# Copyright (c) 2018 NTT DATA # # 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.conf import settings 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 tables from horizon import tabs from horizon.utils import memoized from masakaridashboard.api import api from masakaridashboard.hosts import forms as host_forms from masakaridashboard.hosts import tables as masakari_tab from masakaridashboard.hosts import tabs as host_tab class IndexView(tables.DataTableView): table_class = masakari_tab.HostTable template_name = 'masakaridashboard/hosts/index.html' page_title = _("Hosts") def needs_filter_first(self, table): return self._needs_filter_first def get_data(self): segments = api.segment_list(self.request) host_list = [] filters = self.get_filters() self._needs_filter_first = True filter_first = getattr(settings, 'FILTER_DATA_FIRST', {}) if filter_first.get('masakaridashboard.hosts', False) and len( filters) == 0: self._needs_filter_first = True self._more = False return host_list for segment in segments: host_gen = api.get_host_list(self.request, segment.uuid, filters) for item in host_gen: host_list.append(item) return host_list class DetailView(tabs.TabbedTableView): tab_group_class = host_tab.HostDetailTabs template_name = 'horizon/common/_detail.html' page_title = "{{ host.name|default:host.id }}" def get_context_data(self, **kwargs): context = super(DetailView, self).get_context_data(**kwargs) host = self.get_data() table = masakari_tab.HostTable(self.request) context["host"] = host context["url"] = self.get_redirect_url() context["actions"] = table.render_row_actions(host) return context @memoized.memoized_method def get_data(self): try: row_data = self.kwargs['host_id'].split(',') segment_id = row_data[1] host_id = row_data[0] host = api.get_host(self.request, host_id, segment_id) except Exception: msg = _('Unable to get host "%s".') % host_id redirect = reverse('horizon:masakaridashboard:hosts:index') exceptions.handle(self.request, msg, redirect=redirect) return host def get_redirect_url(self): return reverse('horizon:masakaridashboard:hosts:index') def get_tabs(self, request, *args, **kwargs): host = self.get_data() return self.tab_group_class(request, host=host, **kwargs) class UpdateView(forms.ModalFormView): template_name = 'masakaridashboard/hosts/update.html' modal_header = _("Update Host") form_id = "update_host" form_class = host_forms.UpdateHostForm submit_label = _("Update") submit_url = "horizon:masakaridashboard:hosts:update" success_url = reverse_lazy("horizon:masakaridashboard:hosts:index") page_title = _("Update Host") @memoized.memoized_method def get_object(self): try: row_data = self.kwargs['host_id'].split(',') host_id = row_data[0] segment_id = row_data[1] host = api.get_host(self.request, host_id, segment_id) return host except Exception: msg = _('Unable to retrieve host.') redirect = reverse('horizon:masakaridashboard:hosts:index') exceptions.handle(self.request, msg, redirect=redirect) def get_context_data(self, **kwargs): context = super(UpdateView, self).get_context_data(**kwargs) context['submit_url'] = reverse( self.submit_url, args=[self.kwargs['host_id']] ) return context def get_initial(self, **kwargs): host = self.get_object() return {'name': host.name, 'reserved': host.reserved, 'type': host.type, 'control_attributes': host.control_attributes, 'on_maintenance': host.on_maintenance, 'uuid': host.uuid, 'failover_segment_id': host.failover_segment_id}