
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
91 lines
3.2 KiB
Python
91 lines
3.2 KiB
Python
# Copyright 2016 Letv Cloud Computing
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
import logging
|
|
|
|
from django import shortcuts
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from horizon import exceptions
|
|
from horizon import messages
|
|
from horizon import tables
|
|
|
|
from openstack_dashboard import api
|
|
from openstack_dashboard.dashboards.project.floating_ips \
|
|
import tables as project_tables
|
|
from openstack_dashboard import policy
|
|
from openstack_dashboard.utils import filters
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class AdminAllocateFloatingIP(project_tables.AllocateIP):
|
|
url = "horizon:admin:floating_ips:allocate"
|
|
|
|
def single(self, data_table, request, *args):
|
|
return shortcuts.redirect('horizon:admin:floating_ips:index')
|
|
|
|
def allowed(self, request, fip=None):
|
|
policy_rules = (("network", "create_floatingip"),)
|
|
return policy.check(policy_rules, request)
|
|
|
|
|
|
class AdminReleaseFloatingIP(project_tables.ReleaseIPs):
|
|
pass
|
|
|
|
|
|
class AdminSimpleDisassociateIP(project_tables.DisassociateIP):
|
|
|
|
def single(self, table, request, obj_id):
|
|
try:
|
|
fip = table.get_object_by_id(filters.get_int_or_uuid(obj_id))
|
|
api.neutron.floating_ip_disassociate(request, fip.id)
|
|
LOG.info('Disassociating Floating IP "%s".', obj_id)
|
|
messages.success(request,
|
|
_('Successfully disassociated Floating IP: %s')
|
|
% fip.ip)
|
|
except Exception:
|
|
exceptions.handle(request,
|
|
_('Unable to disassociate floating IP.'))
|
|
return shortcuts.redirect('horizon:admin:floating_ips:index')
|
|
|
|
|
|
class AdminFloatingIPsFilterAction(tables.FilterAction):
|
|
filter_type = "server"
|
|
filter_choices = (
|
|
('project_id', _('Project ID'), True), ) + \
|
|
project_tables.FLOATING_IPS_FILTER_CHOICES
|
|
|
|
|
|
class FloatingIPsTable(project_tables.FloatingIPsTable):
|
|
tenant = tables.Column("tenant_name", verbose_name=_("Project"))
|
|
ip = tables.Column("ip",
|
|
link=("horizon:admin:floating_ips:detail"),
|
|
verbose_name=_("IP Address"),
|
|
attrs={'data-type': "ip"})
|
|
|
|
class Meta(object):
|
|
name = "floating_ips"
|
|
verbose_name = _("Floating IPs")
|
|
status_columns = ["status"]
|
|
table_actions = (AdminAllocateFloatingIP,
|
|
AdminReleaseFloatingIP,
|
|
AdminFloatingIPsFilterAction)
|
|
row_actions = (AdminSimpleDisassociateIP,
|
|
AdminReleaseFloatingIP)
|
|
columns = ('tenant', 'ip', 'description', 'fixed_ip', 'pool',
|
|
'status', 'dns_name', 'dns_domain')
|