Created
August 16, 2013 11:26
-
-
Save eduardo-matos/6249098 to your computer and use it in GitHub Desktop.
Django email authentication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.conf import settings | |
from django.contrib.auth.models import User | |
class EmailOrUsernameModelBackend(object): | |
def authenticate(self, username=None, password=None): | |
if '@' in username: | |
kwargs = {'email': username} | |
else: | |
kwargs = {'username': username} | |
try: | |
user = User.objects.get(**kwargs) | |
if user.check_password(password): | |
return user | |
except User.DoesNotExist: | |
return None | |
def get_user(self, user_id): | |
try: | |
return User.objects.get(pk=user_id) | |
except User.DoesNotExist: | |
return None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AUTHENTICATION_BACKENDS = ( | |
'myproject.accounts.backends.EmailOrUsernameModelBackend', | |
'django.contrib.auth.backends.ModelBackend' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment