
django.utils.translation.ugettext(), ugettext_lazy(), ugettext_noop(), ungettext(), and ungettext_lazy() are deprecated in favor of the functions that they’re aliases for: django.utils.translation.gettext(), gettext_lazy(), gettext_noop(), ngettext(), and ngettext_lazy(). https://docs.djangoproject.com/en/4.0/releases/3.0/#id3 Change-Id: I77878f84e9d10cf6a136dada81eabf4e18676250
101 lines
3.6 KiB
Python
101 lines
3.6 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 openstack_dashboard import api
|
|
from openstack_dashboard.dashboards.admin.hypervisors.compute \
|
|
import forms as project_forms
|
|
|
|
|
|
class EvacuateHostView(forms.ModalFormView):
|
|
form_class = project_forms.EvacuateHostForm
|
|
template_name = 'admin/hypervisors/compute/evacuate_host.html'
|
|
context_object_name = 'compute_host'
|
|
success_url = reverse_lazy("horizon:admin:hypervisors:index")
|
|
page_title = _("Evacuate Host")
|
|
submit_label = page_title
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context["compute_host"] = self.kwargs['compute_host']
|
|
return context
|
|
|
|
def get_active_compute_hosts_names(self, *args, **kwargs):
|
|
try:
|
|
services = api.nova.service_list(self.request,
|
|
binary='nova-compute')
|
|
return [service.host for service in services
|
|
if service.state == 'up']
|
|
except Exception:
|
|
redirect = reverse("horizon:admin:hypervisors:index")
|
|
msg = _('Unable to retrieve compute host information.')
|
|
exceptions.handle(self.request, msg, redirect=redirect)
|
|
|
|
def get_initial(self):
|
|
initial = super().get_initial()
|
|
hosts = self.get_active_compute_hosts_names()
|
|
current_host = self.kwargs['compute_host']
|
|
initial.update({'current_host': current_host,
|
|
'hosts': hosts})
|
|
return initial
|
|
|
|
|
|
class DisableServiceView(forms.ModalFormView):
|
|
form_class = project_forms.DisableServiceForm
|
|
template_name = 'admin/hypervisors/compute/disable_service.html'
|
|
context_object_name = 'compute_host'
|
|
success_url = reverse_lazy("horizon:admin:hypervisors:index")
|
|
page_title = _("Disable Service")
|
|
submit_label = page_title
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context["compute_host"] = self.kwargs['compute_host']
|
|
return context
|
|
|
|
def get_initial(self):
|
|
initial = super().get_initial()
|
|
initial.update({'host': self.kwargs['compute_host']})
|
|
return initial
|
|
|
|
|
|
class MigrateHostView(forms.ModalFormView):
|
|
form_class = project_forms.MigrateHostForm
|
|
template_name = 'admin/hypervisors/compute/migrate_host.html'
|
|
context_object_name = 'compute_host'
|
|
success_url = reverse_lazy("horizon:admin:hypervisors:index")
|
|
page_title = _("Migrate Host")
|
|
submit_label = page_title
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context["compute_host"] = self.kwargs['compute_host']
|
|
return context
|
|
|
|
def get_initial(self):
|
|
initial = super().get_initial()
|
|
current_host = self.kwargs['compute_host']
|
|
|
|
initial.update({
|
|
'current_host': current_host,
|
|
'live_migrate': True,
|
|
'block_migration': False,
|
|
'disk_over_commit': False
|
|
})
|
|
return initial
|