Source code for pyams_ldap.query

#
# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#

__docformat__ = 'restructuredtext'


# import standard library
import logging
logger = logging.getLogger('PyAMS (ldap)')

# import interfaces

# import packages


[docs]class LDAPQuery(object): """Object representing an LDAP query""" def __init__(self, base_dn, filter_tmpl, scope, attributes): self.base_dn = base_dn self.filter_tmpl = filter_tmpl self.scope = scope self.attributes = attributes def __str__(self): return ('base_dn={base_dn}, filter_tmpl={filter_tmpl}, ' 'scope={scope}, attributes={attributes}'.format(**self.__dict__))
[docs] def execute(self, conn, **kwargs): key = (self.base_dn.format(**kwargs), self.filter_tmpl.format(**kwargs)) logger.debug(">>> LDAP query: {0} (base {1}) <<< {2}".format(self.filter_tmpl, self.base_dn, str(kwargs))) ret = conn.search(search_scope=self.scope, attributes=self.attributes, *key) result, ret = conn.get_response(ret) if result is None: result = [] else: result = [(r['dn'], r['attributes']) for r in result if 'dn' in r] logger.debug("<<< LDAP result = {0}".format(str(result))) return result