Source code for openstack_dashboard.dashboards.identity.identity_providers.tables

# 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 ugettext_lazy as _
from django.utils.translation import ungettext_lazy

from horizon import tables

from openstack_dashboard import api





[docs]class DeleteIdPsAction(tables.DeleteAction): @staticmethod
[docs] def action_present(count): return ungettext_lazy( u"Unregister Identity Provider", u"Unregister Identity Providers", count )
@staticmethod
[docs] def action_past(count): return ungettext_lazy( u"Unregistered Identity Provider", u"Unregistered Identity Providers", count )
policy_rules = (("identity", "identity:delete_identity_provider"),)
[docs] def delete(self, request, obj_id): api.keystone.identity_provider_delete(request, obj_id)
[docs]class IdPFilterAction(tables.FilterAction):
[docs] 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()]
[docs]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,))
[docs] def get_object_display(self, datum): return datum.id
[docs] class Meta(object): name = "identity_providers" verbose_name = _("Identity Providers") row_actions = (ManageProtocolsLink, EditIdPLink, DeleteIdPsAction) table_actions = (IdPFilterAction, RegisterIdPLink, DeleteIdPsAction)

Project Source