 258c1102cc
			
		
	
	258c1102cc
	
	
	
		
			
			Previously each command logs take_action parameters explicitly by using @utils.log_method decorator or log.debug(). Some commands have no logging. This commit calls a logger in the base class and drops all logging definition from individual commands. Closes-Bug: #1532294 Change-Id: I43cd0290a4353c68c075bade9571c940733da1be
		
			
				
	
	
		
			163 lines
		
	
	
		
			5.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			163 lines
		
	
	
		
			5.4 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.
 | |
| #
 | |
| 
 | |
| """Identity v3 Assignment action implementations """
 | |
| 
 | |
| from openstackclient.common import command
 | |
| from openstackclient.common import utils
 | |
| from openstackclient.identity import common
 | |
| 
 | |
| 
 | |
| class ListRoleAssignment(command.Lister):
 | |
|     """List role assignments"""
 | |
| 
 | |
|     def get_parser(self, prog_name):
 | |
|         parser = super(ListRoleAssignment, self).get_parser(prog_name)
 | |
|         parser.add_argument(
 | |
|             '--effective',
 | |
|             action="store_true",
 | |
|             default=False,
 | |
|             help='Returns only effective role assignments',
 | |
|         )
 | |
|         parser.add_argument(
 | |
|             '--role',
 | |
|             metavar='<role>',
 | |
|             help='Role to filter (name or ID)',
 | |
|         )
 | |
|         user_or_group = parser.add_mutually_exclusive_group()
 | |
|         user_or_group.add_argument(
 | |
|             '--user',
 | |
|             metavar='<user>',
 | |
|             help='User to filter (name or ID)',
 | |
|         )
 | |
|         common.add_user_domain_option_to_parser(parser)
 | |
|         user_or_group.add_argument(
 | |
|             '--group',
 | |
|             metavar='<group>',
 | |
|             help='Group to filter (name or ID)',
 | |
|         )
 | |
|         common.add_group_domain_option_to_parser(parser)
 | |
|         domain_or_project = parser.add_mutually_exclusive_group()
 | |
|         domain_or_project.add_argument(
 | |
|             '--domain',
 | |
|             metavar='<domain>',
 | |
|             help='Domain to filter (name or ID)',
 | |
|         )
 | |
|         domain_or_project.add_argument(
 | |
|             '--project',
 | |
|             metavar='<project>',
 | |
|             help='Project to filter (name or ID)',
 | |
|         )
 | |
|         common.add_project_domain_option_to_parser(parser)
 | |
|         common.add_inherited_option_to_parser(parser)
 | |
|         return parser
 | |
| 
 | |
|     def _as_tuple(self, assignment):
 | |
|         return (assignment.role, assignment.user, assignment.group,
 | |
|                 assignment.project, assignment.domain, assignment.inherited)
 | |
| 
 | |
|     def take_action(self, parsed_args):
 | |
|         identity_client = self.app.client_manager.identity
 | |
| 
 | |
|         role = None
 | |
|         if parsed_args.role:
 | |
|             role = utils.find_resource(
 | |
|                 identity_client.roles,
 | |
|                 parsed_args.role,
 | |
|             )
 | |
| 
 | |
|         user = None
 | |
|         if parsed_args.user:
 | |
|             user = common.find_user(
 | |
|                 identity_client,
 | |
|                 parsed_args.user,
 | |
|                 parsed_args.user_domain,
 | |
|             )
 | |
| 
 | |
|         domain = None
 | |
|         if parsed_args.domain:
 | |
|             domain = common.find_domain(
 | |
|                 identity_client,
 | |
|                 parsed_args.domain,
 | |
|             )
 | |
| 
 | |
|         project = None
 | |
|         if parsed_args.project:
 | |
|             project = common.find_project(
 | |
|                 identity_client,
 | |
|                 parsed_args.project,
 | |
|                 parsed_args.project_domain,
 | |
|             )
 | |
| 
 | |
|         group = None
 | |
|         if parsed_args.group:
 | |
|             group = common.find_group(
 | |
|                 identity_client,
 | |
|                 parsed_args.group,
 | |
|                 parsed_args.group_domain,
 | |
|             )
 | |
| 
 | |
|         effective = True if parsed_args.effective else False
 | |
|         columns = ('Role', 'User', 'Group', 'Project', 'Domain', 'Inherited')
 | |
| 
 | |
|         inherited_to = 'projects' if parsed_args.inherited else None
 | |
|         data = identity_client.role_assignments.list(
 | |
|             domain=domain,
 | |
|             user=user,
 | |
|             group=group,
 | |
|             project=project,
 | |
|             role=role,
 | |
|             effective=effective,
 | |
|             os_inherit_extension_inherited_to=inherited_to)
 | |
| 
 | |
|         data_parsed = []
 | |
|         for assignment in data:
 | |
|             # Removing the extra "scope" layer in the assignment json
 | |
|             scope = assignment.scope
 | |
|             if 'project' in scope:
 | |
|                 setattr(assignment, 'project', scope['project']['id'])
 | |
|                 assignment.domain = ''
 | |
|             elif 'domain' in scope:
 | |
|                 setattr(assignment, 'domain', scope['domain']['id'])
 | |
|                 assignment.project = ''
 | |
| 
 | |
|             else:
 | |
|                 assignment.domain = ''
 | |
|                 assignment.project = ''
 | |
| 
 | |
|             inherited = scope.get('OS-INHERIT:inherited_to') == 'projects'
 | |
|             assignment.inherited = inherited
 | |
| 
 | |
|             del assignment.scope
 | |
| 
 | |
|             if hasattr(assignment, 'user'):
 | |
|                 setattr(assignment, 'user', assignment.user['id'])
 | |
|                 assignment.group = ''
 | |
|             elif hasattr(assignment, 'group'):
 | |
|                 setattr(assignment, 'group', assignment.group['id'])
 | |
|                 assignment.user = ''
 | |
|             else:
 | |
|                 assignment.user = ''
 | |
|                 assignment.group = ''
 | |
| 
 | |
|             if hasattr(assignment, 'role'):
 | |
|                 setattr(assignment, 'role', assignment.role['id'])
 | |
|             else:
 | |
|                 assignment.role = ''
 | |
| 
 | |
|             # Creating a tuple from data object fields
 | |
|             # (including the blank ones)
 | |
|             data_parsed.append(self._as_tuple(assignment))
 | |
| 
 | |
|         return columns, tuple(data_parsed)
 |