123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- # -*- coding: utf-8 -*-
- #
- # django-ldapdb
- # Copyright (c) 2009-2011, Bolloré telecom
- # Copyright (c) 2013, Jeremy Lainé
- # All rights reserved.
- #
- # See AUTHORS file for a full list of contributors.
- #
- # Redistribution and use in source and binary forms, with or without
- # modification, are permitted provided that the following conditions are met:
- #
- # 1. Redistributions of source code must retain the above copyright notice,
- # this list of conditions and the following disclaimer.
- #
- # 2. Redistributions in binary form must reproduce the above copyright
- # notice, this list of conditions and the following disclaimer in the
- # documentation and/or other materials provided with the distribution.
- #
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- # POSSIBILITY OF SUCH DAMAGE.
- #
- import ldap
- import django
- from django.db.backends import (BaseDatabaseFeatures, BaseDatabaseOperations,
- BaseDatabaseWrapper)
- from django.db.backends.creation import BaseDatabaseCreation
- class DatabaseCreation(BaseDatabaseCreation):
- def create_test_db(self, verbosity=1, autoclobber=False):
- """
- Creates a test database, prompting the user for confirmation if the
- database already exists. Returns the name of the test database created.
- """
- pass
- def destroy_test_db(self, old_database_name, verbosity=1):
- """
- Destroy a test database, prompting the user for confirmation if the
- database already exists. Returns the name of the test database created.
- """
- pass
- class DatabaseCursor(object):
- def __init__(self, ldap_connection):
- self.connection = ldap_connection
- class DatabaseFeatures(BaseDatabaseFeatures):
- def __init__(self, connection):
- self.connection = connection
- self.supports_transactions = False
- class DatabaseOperations(BaseDatabaseOperations):
- compiler_module = "ldapdb.backends.ldap.compiler"
- def quote_name(self, name):
- return name
- class DatabaseWrapper(BaseDatabaseWrapper):
- def __init__(self, *args, **kwargs):
- super(DatabaseWrapper, self).__init__(*args, **kwargs)
- self.charset = "utf-8"
- self.creation = DatabaseCreation(self)
- self.features = DatabaseFeatures(self)
- if django.VERSION > (1, 4):
- self.ops = DatabaseOperations(self)
- else:
- self.ops = DatabaseOperations()
- self.settings_dict['SUPPORTS_TRANSACTIONS'] = False
- def close(self):
- if hasattr(self, 'validate_thread_sharing'):
- # django >= 1.4
- self.validate_thread_sharing()
- if self.connection is not None:
- self.connection.unbind_s()
- self.connection = None
- def ensure_connection(self):
- if self.connection is None:
- self.connection = ldap.initialize(self.settings_dict['NAME'])
- options = self.settings_dict.get('CONNECTION_OPTIONS', {})
- for opt, value in options.items():
- self.connection.set_option(opt, value)
- if self.settings_dict.get('TLS', False):
- self.connection.start_tls_s()
- self.connection.simple_bind_s(
- self.settings_dict['USER'],
- self.settings_dict['PASSWORD'])
- def _commit(self):
- pass
- def _cursor(self):
- self.ensure_connection()
- return DatabaseCursor(self.connection)
- def _rollback(self):
- pass
- 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='(objectClass=*)',
- attrlist=None):
- 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
|