diff --git a/pinaxcon/account_hooks.py b/pinaxcon/account_hooks.py new file mode 100644 index 0000000000000000000000000000000000000000..e3affff3c4750f6fdfa6b6bf4327362383c4288e --- /dev/null +++ b/pinaxcon/account_hooks.py @@ -0,0 +1,26 @@ +from account import hooks +from django.contrib.auth.models import User + + +class BetterAccountHookSet(hooks.AccountDefaultHookSet): + + def get_user_credentials(self, form, identifier_field): + username = form.cleaned_data[identifier_field] + + # Find an actual username so we can authenticate + print username, + if identifier_field == "email": + username = self.get_username_by_email(username) + print username, + + return { + "username": username, + "password": form.cleaned_data["password"], + } + + def get_username_by_email(self, email): + + try: + return User.objects.get(email=email).username + except User.DoesNotExist: + return None diff --git a/pinaxcon/settings.py b/pinaxcon/settings.py index 8501577c02716bc40ef9ad62ecd7da7339070fcc..0e39def4c8b79e65c99f67eb02a96ededd43c613 100644 --- a/pinaxcon/settings.py +++ b/pinaxcon/settings.py @@ -272,6 +272,7 @@ ACCOUNT_LOGIN_REDIRECT_URL = "home" ACCOUNT_LOGOUT_REDIRECT_URL = "home" ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = 2 ACCOUNT_USE_AUTH_AUTHENTICATE = True +ACCOUNT_HOOKSET = "pinaxcon.account_hooks.BetterAccountHookSet" AUTHENTICATION_BACKENDS = [ "symposion.teams.backends.TeamPermissionsBackend", diff --git a/pinaxcon/templates/account_login.html b/pinaxcon/templates/account_login.html index 59f0bbc7474fd6ac11ab2baf90f46d2b6b76c3e8..a660e25004b85b5a0636365c052abeebb0cd7293 100644 --- a/pinaxcon/templates/account_login.html +++ b/pinaxcon/templates/account_login.html @@ -15,7 +15,7 @@
-
+

@@ -24,7 +24,7 @@

{% csrf_token %} - {{ login_form| bootstrap }} + {{ login_form|bootstrap }}