2013-07-03 18:12:58 -05:00
|
|
|
# Copyright 2012-2013 OpenStack Foundation
|
2012-05-10 16:25:31 -05:00
|
|
|
#
|
2013-01-24 12:00:30 -06:00
|
|
|
# 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
|
2012-05-10 16:25:31 -05:00
|
|
|
#
|
2013-01-24 12:00:30 -06:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-10 16:25:31 -05:00
|
|
|
#
|
2013-01-24 12:00:30 -06:00
|
|
|
# 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.
|
2012-05-10 16:25:31 -05:00
|
|
|
#
|
|
|
|
|
2013-01-31 19:30:25 -06:00
|
|
|
"""Identity v2.0 User action implementations"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
import logging
|
2013-07-03 18:12:58 -05:00
|
|
|
import six
|
2012-05-10 16:25:31 -05:00
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
from cliff import command
|
2012-05-10 16:25:31 -05:00
|
|
|
from cliff import lister
|
|
|
|
from cliff import show
|
|
|
|
|
|
|
|
from openstackclient.common import utils
|
|
|
|
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
class CreateUser(show.ShowOne):
|
2013-09-09 14:52:45 -05:00
|
|
|
"""Create new user"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + '.CreateUser')
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(CreateUser, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
|
|
|
'name',
|
|
|
|
metavar='<user-name>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user name',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--password',
|
|
|
|
metavar='<user-password>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user password',
|
|
|
|
)
|
2014-02-19 19:30:56 -07:00
|
|
|
parser.add_argument(
|
|
|
|
'--password-prompt',
|
|
|
|
dest="password_prompt",
|
|
|
|
action="store_true",
|
|
|
|
help='Prompt interactively for password',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--email',
|
|
|
|
metavar='<user-email>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user email address',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
2013-07-29 11:29:16 -05:00
|
|
|
'--project',
|
|
|
|
metavar='<project>',
|
|
|
|
help='Set default project (name or ID)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
enable_group = parser.add_mutually_exclusive_group()
|
|
|
|
enable_group.add_argument(
|
|
|
|
'--enable',
|
|
|
|
action='store_true',
|
2013-08-16 00:03:58 -05:00
|
|
|
help='Enable user (default)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
enable_group.add_argument(
|
|
|
|
'--disable',
|
2013-08-16 00:03:58 -05:00
|
|
|
action='store_true',
|
|
|
|
help='Disable user',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
return parser
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
def take_action(self, parsed_args):
|
2014-05-20 13:11:19 +02:00
|
|
|
self.log.debug('take_action(%s)', parsed_args)
|
2012-05-10 16:25:31 -05:00
|
|
|
identity_client = self.app.client_manager.identity
|
2013-09-09 14:52:45 -05:00
|
|
|
|
2013-07-29 11:29:16 -05:00
|
|
|
if parsed_args.project:
|
|
|
|
project_id = utils.find_resource(
|
|
|
|
identity_client.tenants,
|
|
|
|
parsed_args.project,
|
|
|
|
).id
|
2012-05-10 16:25:31 -05:00
|
|
|
else:
|
2013-07-29 11:29:16 -05:00
|
|
|
project_id = None
|
2013-09-09 14:52:45 -05:00
|
|
|
|
2013-08-16 00:03:58 -05:00
|
|
|
enabled = True
|
|
|
|
if parsed_args.disable:
|
|
|
|
enabled = False
|
2014-02-19 19:30:56 -07:00
|
|
|
if parsed_args.password_prompt:
|
|
|
|
parsed_args.password = utils.get_password(self.app.stdin)
|
2013-09-09 14:52:45 -05:00
|
|
|
|
2012-05-10 16:25:31 -05:00
|
|
|
user = identity_client.users.create(
|
|
|
|
parsed_args.name,
|
|
|
|
parsed_args.password,
|
|
|
|
parsed_args.email,
|
2013-07-29 11:29:16 -05:00
|
|
|
tenant_id=project_id,
|
2013-08-16 00:03:58 -05:00
|
|
|
enabled=enabled,
|
2013-07-29 11:29:16 -05:00
|
|
|
)
|
2013-08-16 00:03:58 -05:00
|
|
|
# NOTE(dtroyer): The users.create() method wants 'tenant_id' but
|
|
|
|
# the returned resource has 'tenantId'. Sigh.
|
|
|
|
# We're using project_id now inside OSC so there.
|
2013-07-29 11:29:16 -05:00
|
|
|
user._info.update(
|
|
|
|
{'project_id': user._info.pop('tenantId')}
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
info = {}
|
|
|
|
info.update(user._info)
|
2013-07-03 18:12:58 -05:00
|
|
|
return zip(*sorted(six.iteritems(info)))
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
class DeleteUser(command.Command):
|
2013-09-09 14:52:45 -05:00
|
|
|
"""Delete user"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + '.DeleteUser')
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(DeleteUser, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
|
|
|
'user',
|
|
|
|
metavar='<user>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='User to delete (name or ID)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
return parser
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
def take_action(self, parsed_args):
|
2014-05-20 13:11:19 +02:00
|
|
|
self.log.debug('take_action(%s)', parsed_args)
|
2012-05-10 16:25:31 -05:00
|
|
|
identity_client = self.app.client_manager.identity
|
2013-09-09 14:52:45 -05:00
|
|
|
|
|
|
|
user = utils.find_resource(
|
|
|
|
identity_client.users,
|
|
|
|
parsed_args.user,
|
|
|
|
)
|
|
|
|
|
2012-05-10 16:25:31 -05:00
|
|
|
identity_client.users.delete(user.id)
|
|
|
|
return
|
|
|
|
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
class ListUser(lister.Lister):
|
2013-09-09 14:52:45 -05:00
|
|
|
"""List users"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + '.ListUser')
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(ListUser, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
2013-07-29 11:29:16 -05:00
|
|
|
'--project',
|
|
|
|
metavar='<project>',
|
|
|
|
help='Filter users by project (name or ID)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--long',
|
|
|
|
action='store_true',
|
|
|
|
default=False,
|
2014-02-21 19:22:32 +01:00
|
|
|
help='List additional fields in output')
|
2012-05-10 16:25:31 -05:00
|
|
|
return parser
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
def take_action(self, parsed_args):
|
2014-05-20 13:11:19 +02:00
|
|
|
self.log.debug('take_action(%s)', parsed_args)
|
2014-03-31 14:48:42 -06:00
|
|
|
identity_client = self.app.client_manager.identity
|
2013-07-29 11:29:16 -05:00
|
|
|
|
|
|
|
def _format_project(project):
|
|
|
|
if not project:
|
|
|
|
return ""
|
|
|
|
if project in project_cache.keys():
|
|
|
|
return project_cache[project].name
|
|
|
|
else:
|
|
|
|
return project
|
|
|
|
|
2014-03-31 14:48:42 -06:00
|
|
|
project = None
|
|
|
|
if parsed_args.project:
|
|
|
|
project = utils.find_resource(
|
|
|
|
identity_client.tenants,
|
|
|
|
parsed_args.project,
|
|
|
|
)
|
|
|
|
project = project.id
|
|
|
|
|
2012-05-10 16:25:31 -05:00
|
|
|
if parsed_args.long:
|
2013-07-29 11:29:16 -05:00
|
|
|
columns = (
|
|
|
|
'ID',
|
|
|
|
'Name',
|
|
|
|
'tenantId',
|
|
|
|
'Email',
|
|
|
|
'Enabled',
|
|
|
|
)
|
|
|
|
column_headers = (
|
|
|
|
'ID',
|
|
|
|
'Name',
|
|
|
|
'Project',
|
|
|
|
'Email',
|
|
|
|
'Enabled',
|
|
|
|
)
|
|
|
|
# Cache the project list
|
|
|
|
project_cache = {}
|
|
|
|
try:
|
2014-03-31 14:48:42 -06:00
|
|
|
for p in identity_client.tenants.list():
|
2013-07-29 11:29:16 -05:00
|
|
|
project_cache[p.id] = p
|
|
|
|
except Exception:
|
|
|
|
# Just forget it if there's any trouble
|
|
|
|
pass
|
2012-05-10 16:25:31 -05:00
|
|
|
else:
|
2013-07-29 11:29:16 -05:00
|
|
|
columns = column_headers = ('ID', 'Name')
|
2014-03-31 14:48:42 -06:00
|
|
|
data = identity_client.users.list(tenant_id=project)
|
|
|
|
|
|
|
|
if parsed_args.project:
|
|
|
|
d = {}
|
|
|
|
for s in data:
|
|
|
|
d[s.id] = s
|
|
|
|
data = d.values()
|
2013-07-29 11:29:16 -05:00
|
|
|
|
|
|
|
if parsed_args.long:
|
|
|
|
# FIXME(dtroyer): Sometimes user objects have 'tenant_id' instead
|
|
|
|
# of 'tenantId'. Why? Dunno yet, but until that
|
|
|
|
# is fixed we need to handle it; auth_token.py
|
|
|
|
# only looks for 'tenantId'.
|
|
|
|
for d in data:
|
|
|
|
if 'tenant_id' in d._info:
|
|
|
|
d._info['tenantId'] = d._info.pop('tenant_id')
|
|
|
|
d._add_details(d._info)
|
|
|
|
|
|
|
|
return (column_headers,
|
2012-05-10 16:25:31 -05:00
|
|
|
(utils.get_item_properties(
|
|
|
|
s, columns,
|
2013-07-29 11:29:16 -05:00
|
|
|
mixed_case_fields=('tenantId',),
|
|
|
|
formatters={'tenantId': _format_project},
|
2013-01-31 13:31:41 -06:00
|
|
|
) for s in data))
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
class SetUser(command.Command):
|
2013-09-09 14:52:45 -05:00
|
|
|
"""Set user properties"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + '.SetUser')
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(SetUser, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
|
|
|
'user',
|
|
|
|
metavar='<user>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='User to change (name or ID)',
|
|
|
|
)
|
2012-05-18 17:19:10 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--name',
|
|
|
|
metavar='<new-user-name>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user name',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--password',
|
|
|
|
metavar='<user-password>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user password',
|
|
|
|
)
|
2014-02-19 19:30:56 -07:00
|
|
|
parser.add_argument(
|
|
|
|
'--password-prompt',
|
|
|
|
dest="password_prompt",
|
|
|
|
action="store_true",
|
|
|
|
help='Prompt interactively for password',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
|
|
|
'--email',
|
|
|
|
metavar='<user-email>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='New user email address',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
parser.add_argument(
|
2013-07-29 11:29:16 -05:00
|
|
|
'--project',
|
|
|
|
metavar='<project>',
|
|
|
|
help='New default project (name or ID)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
enable_group = parser.add_mutually_exclusive_group()
|
|
|
|
enable_group.add_argument(
|
|
|
|
'--enable',
|
|
|
|
action='store_true',
|
2013-08-16 00:03:58 -05:00
|
|
|
help='Enable user (default)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
enable_group.add_argument(
|
|
|
|
'--disable',
|
2013-08-16 00:03:58 -05:00
|
|
|
action='store_true',
|
|
|
|
help='Disable user',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
return parser
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
def take_action(self, parsed_args):
|
2014-05-20 13:11:19 +02:00
|
|
|
self.log.debug('take_action(%s)', parsed_args)
|
2012-05-10 16:25:31 -05:00
|
|
|
identity_client = self.app.client_manager.identity
|
2013-09-09 14:52:45 -05:00
|
|
|
|
2014-02-19 19:30:56 -07:00
|
|
|
if parsed_args.password_prompt:
|
|
|
|
parsed_args.password = utils.get_password(self.app.stdin)
|
|
|
|
|
2013-09-09 14:52:45 -05:00
|
|
|
if (not parsed_args.name
|
|
|
|
and not parsed_args.name
|
|
|
|
and not parsed_args.password
|
|
|
|
and not parsed_args.email
|
|
|
|
and not parsed_args.project
|
|
|
|
and not parsed_args.enable
|
|
|
|
and not parsed_args.disable):
|
|
|
|
return
|
|
|
|
|
|
|
|
user = utils.find_resource(
|
|
|
|
identity_client.users,
|
|
|
|
parsed_args.user,
|
|
|
|
)
|
2013-08-16 00:03:58 -05:00
|
|
|
|
|
|
|
if parsed_args.password:
|
|
|
|
identity_client.users.update_password(
|
|
|
|
user.id,
|
|
|
|
parsed_args.password,
|
|
|
|
)
|
|
|
|
|
2013-07-29 11:29:16 -05:00
|
|
|
if parsed_args.project:
|
|
|
|
project = utils.find_resource(
|
|
|
|
identity_client.tenants,
|
|
|
|
parsed_args.project,
|
|
|
|
)
|
2013-08-16 00:03:58 -05:00
|
|
|
identity_client.users.update_tenant(
|
|
|
|
user.id,
|
|
|
|
project.id,
|
|
|
|
)
|
|
|
|
|
|
|
|
kwargs = {}
|
|
|
|
if parsed_args.name:
|
|
|
|
kwargs['name'] = parsed_args.name
|
|
|
|
if parsed_args.email:
|
|
|
|
kwargs['email'] = parsed_args.email
|
2013-09-09 14:52:45 -05:00
|
|
|
kwargs['enabled'] = user.enabled
|
2013-08-16 00:03:58 -05:00
|
|
|
if parsed_args.enable:
|
|
|
|
kwargs['enabled'] = True
|
|
|
|
if parsed_args.disable:
|
|
|
|
kwargs['enabled'] = False
|
|
|
|
|
2013-09-09 14:52:45 -05:00
|
|
|
identity_client.users.update(user.id, **kwargs)
|
|
|
|
return
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
class ShowUser(show.ShowOne):
|
2013-09-09 14:52:45 -05:00
|
|
|
"""Show user details"""
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__ + '.ShowUser')
|
|
|
|
|
|
|
|
def get_parser(self, prog_name):
|
|
|
|
parser = super(ShowUser, self).get_parser(prog_name)
|
|
|
|
parser.add_argument(
|
|
|
|
'user',
|
|
|
|
metavar='<user>',
|
2013-09-09 14:52:45 -05:00
|
|
|
help='User to display (name or ID)',
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
return parser
|
|
|
|
|
2012-06-01 11:17:30 -05:00
|
|
|
def take_action(self, parsed_args):
|
2014-05-20 13:11:19 +02:00
|
|
|
self.log.debug('take_action(%s)', parsed_args)
|
2012-05-10 16:25:31 -05:00
|
|
|
identity_client = self.app.client_manager.identity
|
2013-09-09 14:52:45 -05:00
|
|
|
|
|
|
|
user = utils.find_resource(
|
|
|
|
identity_client.users,
|
|
|
|
parsed_args.user,
|
|
|
|
)
|
|
|
|
|
2013-07-29 11:29:16 -05:00
|
|
|
if 'tenantId' in user._info:
|
|
|
|
user._info.update(
|
|
|
|
{'project_id': user._info.pop('tenantId')}
|
|
|
|
)
|
|
|
|
if 'tenant_id' in user._info:
|
|
|
|
user._info.update(
|
|
|
|
{'project_id': user._info.pop('tenant_id')}
|
|
|
|
)
|
2012-05-10 16:25:31 -05:00
|
|
|
|
|
|
|
info = {}
|
|
|
|
info.update(user._info)
|
2013-07-03 18:12:58 -05:00
|
|
|
return zip(*sorted(six.iteritems(info)))
|