2013-09-20 04:30:41 +08:00
|
|
|
# Copyright 2011 OpenStack Foundation
|
2011-10-25 16:50:08 -07:00
|
|
|
# Copyright 2011 Nebula, 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 keystoneclient import base
|
2023-09-27 13:14:26 +03:00
|
|
|
import urllib.parse
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
|
|
|
|
class User(base.Resource):
|
2014-06-16 02:08:59 -04:00
|
|
|
"""Represents a Keystone user."""
|
2016-05-03 18:08:31 +00:00
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
def __repr__(self):
|
2016-05-04 19:14:01 +00:00
|
|
|
"""Return string representation of user resource information."""
|
2011-10-25 16:50:08 -07:00
|
|
|
return "<User %s>" % self._info
|
|
|
|
|
|
|
|
def delete(self):
|
|
|
|
return self.manager.delete(self)
|
|
|
|
|
2012-01-28 18:35:46 -08:00
|
|
|
def list_roles(self, tenant=None):
|
|
|
|
return self.manager.list_roles(self.id, base.getid(tenant))
|
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
class UserManager(base.ManagerWithFind):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""Manager class for manipulating Keystone users."""
|
2016-05-03 18:08:31 +00:00
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
resource_class = User
|
|
|
|
|
2014-07-04 09:51:04 +10:00
|
|
|
def __init__(self, client, role_manager):
|
|
|
|
super(UserManager, self).__init__(client)
|
|
|
|
self.role_manager = role_manager
|
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
def get(self, user):
|
|
|
|
return self._get("/users/%s" % base.getid(user), "user")
|
|
|
|
|
2012-02-01 16:01:06 +02:00
|
|
|
def update(self, user, **kwargs):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Update user data.
|
2011-10-25 16:50:08 -07:00
|
|
|
|
2012-02-21 15:02:41 -08:00
|
|
|
Supported arguments include ``name``, ``email``, and ``enabled``.
|
2012-02-01 16:01:06 +02:00
|
|
|
"""
|
|
|
|
# FIXME(gabriel): "tenantId" seems to be accepted by the API but
|
|
|
|
# fails to actually update the default tenant.
|
|
|
|
params = {"user": kwargs}
|
|
|
|
url = "/users/%s" % base.getid(user)
|
2012-02-16 11:56:59 -08:00
|
|
|
return self._update(url, params, "user")
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
def update_enabled(self, user, enabled):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Update enabled-ness."""
|
2016-07-29 16:17:44 +03:00
|
|
|
params = {"user": {"enabled": enabled}}
|
2011-10-25 16:50:08 -07:00
|
|
|
|
2012-01-27 10:08:59 -06:00
|
|
|
self._update("/users/%s/OS-KSADM/enabled" % base.getid(user), params,
|
2012-06-01 18:07:26 -07:00
|
|
|
"user")
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
def update_password(self, user, password):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Update password."""
|
2016-07-29 16:17:44 +03:00
|
|
|
params = {"user": {"password": password}}
|
2011-10-25 16:50:08 -07:00
|
|
|
|
2012-02-01 16:01:06 +02:00
|
|
|
return self._update("/users/%s/OS-KSADM/password" % base.getid(user),
|
2014-06-18 10:22:10 +10:00
|
|
|
params, "user", log=False)
|
2011-10-25 16:50:08 -07:00
|
|
|
|
2012-11-23 09:17:24 +00:00
|
|
|
def update_own_password(self, origpasswd, passwd):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Update password."""
|
2012-11-23 09:17:24 +00:00
|
|
|
params = {"user": {"password": passwd,
|
|
|
|
"original_password": origpasswd}}
|
|
|
|
|
2015-07-24 14:14:00 -05:00
|
|
|
return self._update("/OS-KSCRUD/users/%s" % self.client.user_id,
|
|
|
|
params,
|
2012-11-23 09:17:24 +00:00
|
|
|
response_key="access",
|
|
|
|
method="PATCH",
|
2014-07-04 09:09:18 +10:00
|
|
|
endpoint_filter={'interface': 'public'},
|
2014-06-18 10:22:10 +10:00
|
|
|
log=False)
|
2012-11-23 09:17:24 +00:00
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
def update_tenant(self, user, tenant):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Update default tenant."""
|
2016-07-29 16:17:44 +03:00
|
|
|
params = {"user": {"tenantId": base.getid(tenant)}}
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
# FIXME(ja): seems like a bad url - default tenant is an attribute
|
|
|
|
# not a subresource!???
|
2012-02-01 16:01:06 +02:00
|
|
|
return self._update("/users/%s/OS-KSADM/tenant" % base.getid(user),
|
2011-11-10 08:51:12 -08:00
|
|
|
params, "user")
|
2011-10-25 16:50:08 -07:00
|
|
|
|
2014-06-03 15:58:02 -03:00
|
|
|
def create(self, name, password=None, email=None,
|
|
|
|
tenant_id=None, enabled=True):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Create a user."""
|
2011-10-25 16:50:08 -07:00
|
|
|
params = {"user": {"name": name,
|
|
|
|
"password": password,
|
|
|
|
"tenantId": tenant_id,
|
|
|
|
"email": email,
|
|
|
|
"enabled": enabled}}
|
2015-12-29 18:38:01 -06:00
|
|
|
return self._post('/users', params, "user", log=not bool(password))
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
def delete(self, user):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Delete a user."""
|
2011-10-25 16:50:08 -07:00
|
|
|
return self._delete("/users/%s" % base.getid(user))
|
|
|
|
|
2012-01-26 16:13:09 -08:00
|
|
|
def list(self, tenant_id=None, limit=None, marker=None):
|
2013-08-04 23:10:16 +02:00
|
|
|
"""Get a list of users (optionally limited to a tenant).
|
2011-10-25 16:50:08 -07:00
|
|
|
|
|
|
|
:rtype: list of :class:`User`
|
|
|
|
"""
|
2012-01-26 16:13:09 -08:00
|
|
|
params = {}
|
|
|
|
if limit:
|
|
|
|
params['limit'] = int(limit)
|
|
|
|
if marker:
|
2013-05-09 16:47:46 +08:00
|
|
|
params['marker'] = marker
|
2012-01-26 16:13:09 -08:00
|
|
|
|
|
|
|
query = ""
|
|
|
|
if params:
|
2013-12-12 14:25:06 +01:00
|
|
|
query = "?" + urllib.parse.urlencode(params)
|
2012-01-26 16:13:09 -08:00
|
|
|
|
2011-10-25 16:50:08 -07:00
|
|
|
if not tenant_id:
|
2012-01-26 16:13:09 -08:00
|
|
|
return self._list("/users%s" % query, "users")
|
2011-10-25 16:50:08 -07:00
|
|
|
else:
|
2012-01-26 16:13:09 -08:00
|
|
|
return self._list("/tenants/%s/users%s" % (tenant_id, query),
|
|
|
|
"users")
|
2012-01-28 18:35:46 -08:00
|
|
|
|
|
|
|
def list_roles(self, user, tenant=None):
|
2014-07-04 09:51:04 +10:00
|
|
|
return self.role_manager.roles_for_user(base.getid(user),
|
|
|
|
base.getid(tenant))
|