1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | import ldap
from django.contrib.auth.models import User
from django.core.validators import email_re
AUTH_LDAP_SERVER = 'xxx.xxx.xxx.xxx'
class Authenticate:
def authenticate(self, username=None, password=None):
try:
user = User.objects.get(email=username)
if user.check_password(password):
return user
else:
try:
l = ldap.open(AUTH_LDAP_SERVER)
except ldap.LDAPError, e:
return None
try:
# Attempt to bind to the user's DN
l.simple_bind_s(username, password)
try:
user = User.objects.get(email__exact=username)
except:
return None
# Success.
return user
except ldap.INVALID_CREDENTIALS:
return None
except User.DoesNotExist:
return None
def get_user(self, user_id):
try:
return User.objects.get(pk=user_id)
except User.DoesNotExist:
return None
|
More like this
- Authenticate against Active Directory - LDAP (my version) by trebor74hr 4 years, 2 months ago
- Use email addresses for user name for django 1.0+ by jasongreen 3 years, 5 months ago
- Authentication Against Active Directory (LDAP) over SSL by mary 4 years, 11 months ago
- SMTP sink server: prettier output by huwshimi 3 years, 1 month ago
- Django Registration without username by newmaniese 5 years, 2 months ago
Comments
Could you update this snippet for django1.0?
thanks
#