Akihiro Motoki cd7c1b5110 Address RemovedInDjango40Warning (2)
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
2022-02-04 16:22:07 +09:00

102 lines
3.5 KiB
Python

# Copyright (C) 2015 Yahoo! Inc. 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.
from django.template import defaultfilters as filters
from django.utils.translation import gettext_lazy as _
from django.utils.translation import ngettext_lazy
from horizon import tables
from openstack_dashboard import api
class RegisterIdPLink(tables.LinkAction):
name = "register"
verbose_name = _("Register Identity Provider")
url = "horizon:identity:identity_providers:register"
classes = ("ajax-modal",)
icon = "plus"
policy_rules = (("identity", "identity:create_identity_provider"),)
class EditIdPLink(tables.LinkAction):
name = "edit"
verbose_name = _("Edit")
url = "horizon:identity:identity_providers:update"
classes = ("ajax-modal",)
icon = "pencil"
policy_rules = (("identity", "identity:update_identity_provider"),)
class ManageProtocolsLink(tables.LinkAction):
name = "manage_protocols"
verbose_name = _("Manage Protocols")
url = "horizon:identity:identity_providers:protocols_tab"
icon = "pencil"
policy_rules = (("identity", "identity:list_protocols"),)
class DeleteIdPsAction(tables.DeleteAction):
@staticmethod
def action_present(count):
return ngettext_lazy(
"Unregister Identity Provider",
"Unregister Identity Providers",
count
)
@staticmethod
def action_past(count):
return ngettext_lazy(
"Unregistered Identity Provider",
"Unregistered Identity Providers",
count
)
policy_rules = (("identity", "identity:delete_identity_provider"),)
def delete(self, request, obj_id):
api.keystone.identity_provider_delete(request, obj_id)
class IdPFilterAction(tables.FilterAction):
def filter(self, table, idps, filter_string):
"""Naive case-insensitive search."""
q = filter_string.lower()
return [idp for idp in idps
if q in idp.ud.lower()]
class IdentityProvidersTable(tables.DataTable):
id = tables.Column('id',
verbose_name=_('Identity Provider ID'),
link="horizon:identity:identity_providers:detail")
description = tables.Column(lambda obj: getattr(obj, 'description', None),
verbose_name=_('Description'))
enabled = tables.Column('enabled', verbose_name=_('Enabled'), status=True,
filters=(filters.yesno, filters.capfirst))
remote_ids = tables.Column(
lambda obj: getattr(obj, 'remote_ids', []),
verbose_name=_("Remote IDs"),
wrap_list=True,
filters=(filters.unordered_list,))
def get_object_display(self, datum):
return datum.id
class Meta(object):
name = "identity_providers"
verbose_name = _("Identity Providers")
row_actions = (ManageProtocolsLink, EditIdPLink, DeleteIdPsAction)
table_actions = (IdPFilterAction, RegisterIdPLink, DeleteIdPsAction)