Skip to main content

Basic, pure python, LDAP connection for Flask Applications

Project description

Flask-LDAPConn is a Flask extension providing ldap3 (an LDAP V3 pure Python client) connection for accessing LDAP servers.

To abstract access to LDAP data this extension also provides a simple model class, currently with read-only access, based on the ldap3.abstract package.

Installation

pip install flask-ldapconn

Configuration

Your configuration should be declared within your Flask config. Sample configuration:

LDAP_SERVER = 'localhost'
LDAP_PORT = 389
LDAP_BINDDN = 'cn=admin,dc=example,dc=com'
LDAP_SECRET = 'forty-two'
LDAP_TIMEOUT = 10
LDAP_USE_TLS = True
LDAP_CERT_PATH = '/etc/openldap/certs'

To create the ldap instance within your application:

from flask import Flask
from flask_ldapconn import LDAPConn

app = Flask(__name__)
ldap_conn = LDAPConn(app)

Client sample

from flask import Flask
from flask_ldapconn import LDAPConn
from ldap3 import SUBTREE

app = Flask(__name__)
ldap_conn = LDAPConn(app)

@app.route('/')
def index():
    basedn = 'ou=people,dc=example,dc=com'
    search_filter = '(objectClass=posixAccount)'
    attributes = ['sn', 'givenName', 'uid', 'mail']
    ldap_conn.search(basedn, search_filter, SUBTREE,
                     attributes=attributes)
    response = ldap_conn.get_response()

User model sample

from flask import Flask
from flask_ldapconn import LDAPConn

app = Flask(__name__)
ldap_conn = LDAPConn(app)

class User(ldap_conn.BaseModel):

    __basedn__ = 'ou=people,dc=example,dc=com'
    __objectclass__ = ['inetOrgPerson']

    name = ldap_conn.BaseAttr('cn')
    email = ldap_conn.BaseAttr('mail')
    userid = ldap_conn.BaseAttr('uid')

with app.app_context():
    u = User()
    entries = u.search('email: @example.com')
    for entry in entries:
        print u'Name: {}'.format(entry.name)

Contribute

  1. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.

  2. Fork the repository on Github to start making your changes to the master branch (or branch off of it).

  3. Write a test which shows that the bug was fixed or that the feature works as expected.

  4. Send a pull request and bug the maintainer until it gets merged and published.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-LDAPConn-0.3.1.tar.gz (4.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page