formatting fixes and refactoring from code review

This commit is contained in:
Vishvananda Ishaya
2010-06-28 20:31:06 -07:00
parent b6055fb3c3
commit 1c4715a73a

View File

@@ -29,11 +29,11 @@ import json
from nova import datastore from nova import datastore
SCOPE_SUBTREE = 2 SCOPE_SUBTREE = 2
MOD_ADD = 0 MOD_ADD = 0
MOD_DELETE = 1 MOD_DELETE = 1
class NO_SUCH_OBJECT(Exception): class NO_SUCH_OBJECT(Exception):
pass pass
@@ -43,93 +43,31 @@ class OBJECT_CLASS_VIOLATION(Exception):
def initialize(uri): def initialize(uri):
return FakeLDAP() return FakeLDAP()
def _match_query(query, attrs):
class FakeLDAP(object):
def simple_bind_s(self, dn, password):
"""This method is ignored, but provided for compatibility."""
pass
def unbind_s(self):
"""This method is ignored, but provided for compatibility."""
pass
def add_s(self, dn, attr):
"""Add an object with the specified attributes at dn."""
key = self._redis_prefix + dn
value_dict = dict([(k, self.__to_json(v)) for k, v in attr])
datastore.Redis.instance().hmset(key, value_dict)
def delete_s(self, dn):
"""Remove the ldap object at specified dn."""
datastore.Redis.instance().delete(self._redis_prefix + dn)
def modify_s(self, dn, attrs):
"""Modify the object at dn using the attribute list.
attr is a list of tuples in the following form:
([MOD_ADD | MOD_DELETE], attribute, value)
"""
redis = datastore.Redis.instance()
key = self._redis_prefix + dn
for cmd, k, v in attrs:
values = self.__from_json(redis.hget(key, k))
if cmd == MOD_ADD:
values.append(v)
else:
values.remove(v)
values = redis.hset(key, k, self.__to_json(values))
def search_s(self, dn, scope, query=None, fields=None):
"""search for all matching objects under dn using the query
only SCOPE_SUBTREE is supported.
"""
if scope != SCOPE_SUBTREE:
raise NotImplementedError(str(scope))
redis = datastore.Redis.instance()
keys = redis.keys(self._redis_prefix + '*' + dn)
objects = []
for key in keys:
# get the attributes from redis
attrs = redis.hgetall(key)
# turn the values from redis into lists
attrs = dict([(k, self.__from_json(v))
for k, v in attrs.iteritems()])
# filter the objects by query
if not query or self.__match_query(query, attrs):
# filter the attributes by fields
attrs = dict([(k, v) for k, v in attrs.iteritems()
if not fields or k in fields])
objects.append((key[len(self._redis_prefix):], attrs))
if objects == []:
raise NO_SUCH_OBJECT()
return objects
def __match_query(self, query, attrs):
"""Match an ldap query to an attribute dictionary. """Match an ldap query to an attribute dictionary.
&, |, and ! are supported
No syntax checking is performed, so malformed querys will &, |, and ! are supported in the query. No syntax checking is performed,
not work correctly. so malformed querys will not work correctly.
""" """
# cut off the parentheses # cut off the parentheses
inner = query[1:-1] inner = query[1:-1]
if inner.startswith('&'): if inner.startswith('&'):
# cut off the & # cut off the &
l, r = self.__paren_groups(inner[1:]) l, r = _paren_groups(inner[1:])
return self.__match_query(l, attrs) and self.__match_query(r, attrs) return _match_query(l, attrs) and _match_query(r, attrs)
if inner.startswith('|'): if inner.startswith('|'):
# cut off the | # cut off the |
l, r = self.__paren_groups(inner[1:]) l, r = _paren_groups(inner[1:])
return self.__match_query(l, attrs) or self.__match_query(r, attrs) return _match_query(l, attrs) or _match_query(r, attrs)
if inner.startswith('!'): if inner.startswith('!'):
# cut off the ! and the nested parentheses # cut off the ! and the nested parentheses
return not self.__match_query(query[2:-1], attrs) return not _match_query(query[2:-1], attrs)
(k, sep, v) = inner.partition('=') (k, sep, v) = inner.partition('=')
return self.__match(k, v, attrs) return _match(k, v, attrs)
def __paren_groups(self, source): def _paren_groups(source):
"""Split a string into parenthesized groups.""" """Split a string into parenthesized groups."""
count = 0 count = 0
start = 0 start = 0
@@ -145,42 +83,130 @@ class FakeLDAP(object):
result.append(source[start:pos+1]) result.append(source[start:pos+1])
return result return result
def __match(self, k, v, attrs): def _match(k, v, attrs):
"""Match a given key and value against an attribute list.""" """Match a given key and value against an attribute list."""
if k not in attrs: if k not in attrs:
return False return False
if k != "objectclass": if k != "objectclass":
return v in attrs[k] return v in attrs[k]
# it is an objectclass check, so check subclasses # it is an objectclass check, so check subclasses
values = self.__subs(v) values = _subs(v)
for value in values: for value in values:
if value in attrs[k]: if value in attrs[k]:
return True return True
return False return False
def __subs(self, value): def _subs(value):
"""Returns a list of strings representing the ldap objectclass plus """Returns a list of subclass strings.
any subclasses that inherit from it.
Fakeldap doesn't know about the ldap object structure, so subclasses The strings represent the ldap objectclass plus any subclasses that
need to be defined manually in the dictionary below inherit from it. Fakeldap doesn't know about the ldap object structure,
so subclasses need to be defined manually in the dictionary below.
""" """
subs = { subs = {'groupOfNames': ['novaProject']}
'groupOfNames': ['novaProject']
}
if value in subs: if value in subs:
return [value] + subs[value] return [value] + subs[value]
return [value] return [value]
class FakeLDAP(object):
#TODO(vish): refactor this class to use a wrapper instead of accessing
# redis directly
def simple_bind_s(self, dn, password):
"""This method is ignored, but provided for compatibility."""
pass
def unbind_s(self):
"""This method is ignored, but provided for compatibility."""
pass
def add_s(self, dn, attr):
"""Add an object with the specified attributes at dn."""
key = "%s%s" % (self.__redis_prefix, dn)
value_dict = dict([(k, self.__to_json(v)) for k, v in attr])
datastore.Redis.instance().hmset(key, value_dict)
def delete_s(self, dn):
"""Remove the ldap object at specified dn."""
datastore.Redis.instance().delete("%s%s" % (self.__redis_prefix, dn))
def modify_s(self, dn, attrs):
"""Modify the object at dn using the attribute list.
Args:
dn -- a dn
attrs -- a list of tuples in the following form:
([MOD_ADD | MOD_DELETE], attribute, value)
"""
redis = datastore.Redis.instance()
key = "%s%s" % (self.__redis_prefix, dn)
for cmd, k, v in attrs:
values = self.__from_json(redis.hget(key, k))
if cmd == MOD_ADD:
values.append(v)
else:
values.remove(v)
values = redis.hset(key, k, self.__to_json(values))
def search_s(self, dn, scope, query=None, fields=None):
"""Search for all matching objects under dn using the query.
Args:
dn -- dn to search under
scope -- only SCOPE_SUBTREE is supported
query -- query to filter objects by
fields -- fields to return. Returns all fields if not specified
"""
if scope != SCOPE_SUBTREE:
raise NotImplementedError(str(scope))
redis = datastore.Redis.instance()
keys = redis.keys("%s*%s" % (self.__redis_prefix, dn))
objects = []
for key in keys:
# get the attributes from redis
attrs = redis.hgetall(key)
# turn the values from redis into lists
attrs = dict([(k, self.__from_json(v))
for k, v in attrs.iteritems()])
# filter the objects by query
if not query or _match_query(query, attrs):
# filter the attributes by fields
attrs = dict([(k, v) for k, v in attrs.iteritems()
if not fields or k in fields])
objects.append((key[len(self.__redis_prefix):], attrs))
if objects == []:
raise NO_SUCH_OBJECT()
return objects
@property @property
def _redis_prefix(self): def __redis_prefix(self):
return 'ldap:' return 'ldap:'
def __from_json(self, encoded): def __from_json(self, encoded):
"""Convert attribute values from json representation.""" """Convert attribute values from json representation.
# return as simple strings instead of unicode strings
Args:
encoded -- a json encoded string
Returns a list of strings
"""
return [str(x) for x in json.loads(encoded)] return [str(x) for x in json.loads(encoded)]
def __to_json(self, unencoded): def __to_json(self, unencoded):
"""Convert attribute values into json representation.""" """Convert attribute values into json representation.
# all values are returned as lists from ldap
Args:
unencoded -- an unencoded string or list of strings. If it
is a single string, it will be converted into a list.
Returns a json string
"""
return json.dumps(list(unencoded)) return json.dumps(list(unencoded))