Skip to content
Snippets Groups Projects
Commit 6b44cebc authored by Julian Rother's avatar Julian Rother
Browse files

Allow custom port for LDAP connections

parent 3fdcba1d
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,8 @@ SQLITE_INIT_DATA = True
#JOBS_API_KEY = 'something random'
#LDAP_HOST = 'ldaps://rumo.fsmpi.rwth-aachen.de'
#LDAP_HOST = 'rumo.fsmpi.rwth-aachen.de'
LDAP_PORT = '636'
#ICAL_URL = 'https://user:password@mail.fsmpi.rwth-aachen.de/SOGo/....ics'
ERROR_PAGE = 'static/500.html'
RWTH_IP_RANGES = ['134.130.0.0/16', '137.226.0.0/16', '134.61.0.0/16', '192.35.229.0/24', '2a00:8a60::/32']
......@@ -152,7 +152,7 @@ if 'LDAP_HOST' in config:
def ldapauth(user, password):
user = LDAP_USERRE.sub(r'', user.lower())
try:
conn = ldap3.Connection(config['LDAP_HOST'], 'uid=%s,ou=users,dc=fsmpi,dc=rwth-aachen,dc=de'%user, password, auto_bind=True)
conn = ldap3.Connection(ldap3.Server(config['LDAP_HOST'], port=config['LDAP_PORT'], use_ssl=True), 'uid=%s,ou=users,dc=fsmpi,dc=rwth-aachen,dc=de'%user, password, auto_bind=True)
groups = []
if conn.search("ou=groups,dc=fsmpi,dc=rwth-aachen,dc=de", "(&(cn=*)(memberUid=%s))"%user, attributes=['cn']):
groups = [e['attributes']['cn'][0] for e in conn.response]
......@@ -163,7 +163,7 @@ if 'LDAP_HOST' in config:
def ldapget(user):
user = LDAP_USERRE.sub(r'', user.lower())
conn = ldap3.Connection('ldaps://rumo.fsmpi.rwth-aachen.de', auto_bind=True)
conn = ldap3.Connection(ldap3.Server(config['LDAP_HOST'], port=config['LDAP_PORT'], use_ssl=True), auto_bind=True)
conn.search("ou=users,dc=fsmpi,dc=rwth-aachen,dc=de", "(uid=%s)"%user,
attributes=ldap3.ALL_ATTRIBUTES)
if not conn.response:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment