
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
86 lines
3.0 KiB
Python
86 lines
3.0 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.utils.translation import gettext_lazy as _
|
|
from django.utils.translation import ngettext_lazy
|
|
|
|
from horizon import tables
|
|
|
|
from openstack_dashboard import api
|
|
from openstack_dashboard import policy
|
|
|
|
APP_CRED_DETAILS_LINK = "horizon:identity:application_credentials:detail"
|
|
|
|
|
|
class CreateApplicationCredentialLink(tables.LinkAction):
|
|
name = "create"
|
|
verbose_name = _("Create Application Credential")
|
|
url = "horizon:identity:application_credentials:create"
|
|
classes = ("ajax-modal",)
|
|
icon = "plus"
|
|
policy_rules = (('identity', 'identity:create_application_credential'),)
|
|
|
|
|
|
class DeleteApplicationCredentialAction(policy.PolicyTargetMixin,
|
|
tables.DeleteAction):
|
|
@staticmethod
|
|
def action_present(count):
|
|
return ngettext_lazy(
|
|
"Delete Application Credential",
|
|
"Delete Application Credentials",
|
|
count
|
|
)
|
|
|
|
@staticmethod
|
|
def action_past(count):
|
|
return ngettext_lazy(
|
|
"Deleted Application Credential",
|
|
"Deleted Application Credentialss",
|
|
count
|
|
)
|
|
|
|
policy_rules = (("identity", "identity:delete_application_credential"),)
|
|
|
|
def delete(self, request, obj_id):
|
|
api.keystone.application_credential_delete(request, obj_id)
|
|
|
|
|
|
class ApplicationCredentialFilterAction(tables.FilterAction):
|
|
filter_type = "query"
|
|
filter_choices = (("name", _("Application Credential Name ="), True))
|
|
|
|
|
|
def _render_roles(obj):
|
|
names = [role['name'] for role in obj.roles]
|
|
return ', '.join(names)
|
|
|
|
|
|
class ApplicationCredentialsTable(tables.DataTable):
|
|
name = tables.WrappingColumn('name',
|
|
link=APP_CRED_DETAILS_LINK,
|
|
verbose_name=_('Name'))
|
|
project_id = tables.Column('project_id', verbose_name=_('Project ID'))
|
|
description = tables.Column('description',
|
|
verbose_name=_('Description'))
|
|
expires_at = tables.Column('expires_at',
|
|
verbose_name=_('Expiration'))
|
|
id = tables.Column('id', verbose_name=_('ID'))
|
|
roles = tables.Column(_render_roles, verbose_name=_('Roles'))
|
|
|
|
class Meta(object):
|
|
name = "application_credentials"
|
|
verbose_name = _("Application Credentials")
|
|
row_actions = (DeleteApplicationCredentialAction,)
|
|
table_actions = (CreateApplicationCredentialLink,
|
|
DeleteApplicationCredentialAction,
|
|
ApplicationCredentialFilterAction,)
|