2013-09-20 05:09:03 +08:00
|
|
|
# Copyright (c) 2011 OpenStack Foundation
|
2012-03-07 08:04:53 -06:00
|
|
|
# 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.
|
|
|
|
|
2013-06-17 23:34:27 -07:00
|
|
|
from troveclient import base
|
2013-09-26 22:26:02 -07:00
|
|
|
from troveclient.v1 import databases
|
2013-06-17 23:34:27 -07:00
|
|
|
from troveclient.common import check_for_exceptions
|
|
|
|
from troveclient.common import limit_url
|
|
|
|
from troveclient.common import Paginated
|
|
|
|
from troveclient.common import quote_user_host
|
2012-05-22 16:35:47 -05:00
|
|
|
import urlparse
|
2012-03-07 08:04:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
class User(base.Resource):
|
|
|
|
"""
|
|
|
|
A database user
|
|
|
|
"""
|
|
|
|
def __repr__(self):
|
|
|
|
return "<User: %s>" % self.name
|
|
|
|
|
|
|
|
|
|
|
|
class Users(base.ManagerWithFind):
|
|
|
|
"""
|
|
|
|
Manage :class:`Users` resources.
|
|
|
|
"""
|
|
|
|
resource_class = User
|
|
|
|
|
|
|
|
def create(self, instance_id, users):
|
|
|
|
"""
|
|
|
|
Create users with permissions to the specified databases
|
|
|
|
"""
|
|
|
|
body = {"users": users}
|
|
|
|
url = "/instances/%s/users" % instance_id
|
|
|
|
resp, body = self.api.client.post(url, body=body)
|
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
|
2013-03-11 10:53:36 -05:00
|
|
|
def delete(self, instance_id, username, hostname=None):
|
2012-03-07 08:04:53 -06:00
|
|
|
"""Delete an existing user in the specified instance"""
|
2013-03-11 10:53:36 -05:00
|
|
|
user = quote_user_host(username, hostname)
|
2012-04-23 12:58:21 -05:00
|
|
|
url = "/instances/%s/users/%s" % (instance_id, user)
|
2012-03-07 08:04:53 -06:00
|
|
|
resp, body = self.api.client.delete(url)
|
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
|
2012-05-22 16:35:47 -05:00
|
|
|
def _list(self, url, response_key, limit=None, marker=None):
|
|
|
|
resp, body = self.api.client.get(limit_url(url, limit, marker))
|
2012-03-07 08:04:53 -06:00
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
if not body:
|
|
|
|
raise Exception("Call to " + url +
|
|
|
|
" did not return a body.")
|
2012-05-22 16:35:47 -05:00
|
|
|
links = body.get('links', [])
|
|
|
|
next_links = [link['href'] for link in links if link['rel'] == 'next']
|
|
|
|
next_marker = None
|
|
|
|
for link in next_links:
|
|
|
|
# Extract the marker from the url.
|
|
|
|
parsed_url = urlparse.urlparse(link)
|
|
|
|
query_dict = dict(urlparse.parse_qsl(parsed_url.query))
|
|
|
|
next_marker = query_dict.get('marker', None)
|
|
|
|
users = [self.resource_class(self, res) for res in body[response_key]]
|
|
|
|
return Paginated(users, next_marker=next_marker, links=links)
|
2012-03-07 08:04:53 -06:00
|
|
|
|
2012-05-22 16:35:47 -05:00
|
|
|
def list(self, instance, limit=None, marker=None):
|
2012-03-07 08:04:53 -06:00
|
|
|
"""
|
|
|
|
Get a list of all Users from the instance's Database.
|
|
|
|
|
|
|
|
:rtype: list of :class:`User`.
|
|
|
|
"""
|
|
|
|
return self._list("/instances/%s/users" % base.getid(instance),
|
2012-05-22 16:35:47 -05:00
|
|
|
"users", limit, marker)
|
2013-01-22 12:58:26 -06:00
|
|
|
|
2013-03-11 10:53:36 -05:00
|
|
|
def get(self, instance_id, username, hostname=None):
|
2013-01-22 12:58:26 -06:00
|
|
|
"""
|
|
|
|
Get a single User from the instance's Database.
|
|
|
|
|
|
|
|
:rtype: :class:`User`.
|
|
|
|
"""
|
2013-03-11 10:53:36 -05:00
|
|
|
user = quote_user_host(username, hostname)
|
|
|
|
url = "/instances/%s/users/%s" % (instance_id, user)
|
2013-02-28 17:07:33 -06:00
|
|
|
return self._get(url, "user")
|
2013-01-22 12:58:26 -06:00
|
|
|
|
2013-06-28 17:48:03 -05:00
|
|
|
def update_attributes(self, instance, username, newuserattr=None,
|
|
|
|
hostname=None):
|
|
|
|
"""
|
|
|
|
Update attributes of a single User in an instance.
|
|
|
|
|
|
|
|
:rtype: :class:`User`.
|
|
|
|
"""
|
|
|
|
instance_id = base.getid(instance)
|
|
|
|
user = quote_user_host(username, hostname)
|
|
|
|
user_dict = {}
|
|
|
|
if not newuserattr:
|
|
|
|
newuserattr = {}
|
|
|
|
else:
|
|
|
|
user_dict['user'] = newuserattr
|
|
|
|
url = "/instances/%s/users/%s" % (instance_id, user)
|
|
|
|
resp, body = self.api.client.put(url, body=user_dict)
|
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
|
2013-03-11 10:53:36 -05:00
|
|
|
def list_access(self, instance, username, hostname=None):
|
2013-01-22 12:58:26 -06:00
|
|
|
"""Show all databases the given user has access to. """
|
|
|
|
instance_id = base.getid(instance)
|
2013-03-11 10:53:36 -05:00
|
|
|
user = quote_user_host(username, hostname)
|
|
|
|
url = "/instances/%(instance_id)s/users/%(user)s/databases"
|
2013-08-30 20:32:17 +03:00
|
|
|
local_vars = locals()
|
|
|
|
resp, body = self.api.client.get(url % local_vars)
|
2013-01-22 12:58:26 -06:00
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
if not body:
|
|
|
|
raise Exception("Call to %s did not return to a body" % url)
|
|
|
|
return [databases.Database(self, db) for db in body['databases']]
|
|
|
|
|
2013-03-11 10:53:36 -05:00
|
|
|
def grant(self, instance, username, databases, hostname=None):
|
2013-01-22 12:58:26 -06:00
|
|
|
"""Allow an existing user permissions to access a database."""
|
|
|
|
instance_id = base.getid(instance)
|
2013-03-11 10:53:36 -05:00
|
|
|
user = quote_user_host(username, hostname)
|
|
|
|
url = "/instances/%(instance_id)s/users/%(user)s/databases"
|
2013-01-22 12:58:26 -06:00
|
|
|
dbs = {'databases': [{'name': db} for db in databases]}
|
2013-08-30 20:32:17 +03:00
|
|
|
local_vars = locals()
|
|
|
|
resp, body = self.api.client.put(url % local_vars, body=dbs)
|
2013-01-22 12:58:26 -06:00
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
|
2013-03-11 10:53:36 -05:00
|
|
|
def revoke(self, instance, username, database, hostname=None):
|
2013-01-22 12:58:26 -06:00
|
|
|
"""Revoke from an existing user access permissions to a database."""
|
|
|
|
instance_id = base.getid(instance)
|
2013-03-11 10:53:36 -05:00
|
|
|
user = quote_user_host(username, hostname)
|
|
|
|
url = ("/instances/%(instance_id)s/users/%(user)s/"
|
2013-01-22 12:58:26 -06:00
|
|
|
"databases/%(database)s")
|
2013-08-30 20:32:17 +03:00
|
|
|
local_vars = locals()
|
|
|
|
resp, body = self.api.client.delete(url % local_vars)
|
2013-01-22 12:58:26 -06:00
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
|
|
|
|
def change_passwords(self, instance, users):
|
|
|
|
"""Change the password for one or more users."""
|
|
|
|
instance_id = base.getid(instance)
|
|
|
|
user_dict = {"users": users}
|
|
|
|
url = "/instances/%s/users" % instance_id
|
|
|
|
resp, body = self.api.client.put(url, body=user_dict)
|
|
|
|
check_for_exceptions(resp, body)
|