mirror of
https://github.com/kakwa/ldapcherry
synced 2025-07-04 20:37:48 +02:00
factoring binding to the ldap
This commit is contained in:
parent
4d29706eaf
commit
16c757bdd4
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,7 @@ class Backend(ldapcherry.backend.Backend):
|
|||
def del_user(self, username):
|
||||
pass
|
||||
|
||||
def _search(self, searchfilter, attrs):
|
||||
def _bind(self):
|
||||
ldap_client = self._connect()
|
||||
try:
|
||||
ldap_client.simple_bind_s(self.binddn, self.bindpassword)
|
||||
|
@ -84,7 +84,11 @@ class Backend(ldapcherry.backend.Backend):
|
|||
)
|
||||
ldap_client.unbind_s()
|
||||
raise e
|
||||
return ldap_client
|
||||
|
||||
|
||||
def _search(self, searchfilter, attrs):
|
||||
ldap_client = self._bind()
|
||||
try:
|
||||
r = ldap_client.search_s(self.userdn,
|
||||
ldap.SCOPE_SUBTREE,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue