Created
October 28, 2012 00:21
-
-
Save pije76/3967010 to your computer and use it in GitHub Desktop.
Email/Username Registration
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment