From 6addd55ab153402a7e5f39c71e3266b8eab54de5 Mon Sep 17 00:00:00 2001 From: jlaine Date: Mon, 11 Apr 2011 08:06:09 +0000 Subject: [PATCH] remove code from ldapdb.__init__ git-svn-id: https://svn.bolloretelecom.eu/opensource/django-ldapdb/trunk@1016 e071eeec-0327-468d-9b6a-08194a12b294 --- ldapdb/__init__.py | 61 ++---------------------------------- ldapdb/backends/ldap/base.py | 4 +-- 2 files changed, 4 insertions(+), 61 deletions(-) diff --git a/ldapdb/__init__.py b/ldapdb/__init__.py index 7fec75d..765bb5e 100644 --- a/ldapdb/__init__.py +++ b/ldapdb/__init__.py @@ -32,10 +32,8 @@ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -import ldap - from django.conf import settings -from django.db.backends import BaseDatabaseFeatures, BaseDatabaseOperations +from ldapdb.backends.ldap.base import DatabaseWrapper def escape_ldap_filter(value): value = unicode(value) @@ -45,64 +43,9 @@ def escape_ldap_filter(value): .replace(')', '\\29') \ .replace('\0', '\\00') -class DatabaseCursor(object): - def __init__(self, ldap_connection): - self.connection = ldap_connection - -class DatabaseFeatures(BaseDatabaseFeatures): - def __init__(self, connection): - self.connection = connection - -class DatabaseOperations(BaseDatabaseOperations): - def quote_name(self, name): - return name - -class DatabaseWrapper(object): - def __init__(self, settings_dict={}, alias='ldap'): - self.settings_dict = settings_dict - self.connection = None - self.charset = "utf-8" - self.features = DatabaseFeatures(self) - self.ops = DatabaseOperations() - - def close(self): - pass - - def _cursor(self): - if self.connection is None: - self.connection = ldap.initialize(self.settings_dict['NAME']) - self.connection.simple_bind_s( - self.settings_dict['USER'], - self.settings_dict['PASSWORD']) - return DatabaseCursor(self.connection) - - def add_s(self, dn, modlist): - cursor = self._cursor() - return cursor.connection.add_s(dn.encode(self.charset), modlist) - - def delete_s(self, dn): - cursor = self._cursor() - return cursor.connection.delete_s(dn.encode(self.charset)) - - def modify_s(self, dn, modlist): - cursor = self._cursor() - return cursor.connection.modify_s(dn.encode(self.charset), modlist) - - def rename_s(self, dn, newrdn): - cursor = self._cursor() - return cursor.connection.rename_s(dn.encode(self.charset), newrdn.encode(self.charset)) - - def search_s(self, base, scope, filterstr, attrlist): - cursor = self._cursor() - results = cursor.connection.search_s(base, scope, filterstr.encode(self.charset), attrlist) - output = [] - for dn, attrs in results: - output.append((dn.decode(self.charset), attrs)) - return output - # FIXME: is this the right place to initialize the LDAP connection? connection = DatabaseWrapper({ 'NAME': settings.LDAPDB_SERVER_URI, 'USER': settings.LDAPDB_BIND_DN, - 'PASSWORD': settings.LDAPDB_BIND_PASSWORD}) + 'PASSWORD': settings.LDAPDB_BIND_PASSWORD}, 'ldap') diff --git a/ldapdb/backends/ldap/base.py b/ldapdb/backends/ldap/base.py index 1b21647..1edb07d 100644 --- a/ldapdb/backends/ldap/base.py +++ b/ldapdb/backends/ldap/base.py @@ -49,8 +49,8 @@ class DatabaseOperations(BaseDatabaseOperations): return name class DatabaseWrapper(BaseDatabaseWrapper): - def __init__(self, settings_dict, alias='ldap'): - super(DatabaseWrapper, self).__init__(settings_dict, alias=alias) + def __init__(self, *args, **kwargs): + super(DatabaseWrapper, self).__init__(*args, **kwargs) self.charset = "utf-8" self.features = DatabaseFeatures(self) -- 2.30.2