自定义用户身份验证

时间:2014-01-24 13:53:09

标签: django python-2.7 django-authentication authentication

任何人都可以提供有关自定义Django身份验证系统的更多信息。好吧,我创建了一个自定义用户,我在其中使用电子邮件作为标识符:

    USERNAME_FIELD = 'email'

我创建了一个自定义身份验证后端,并在设置文件中将身份验证后端更改为这个新后端:

    class Custom_Authentication(ModelBackend):
         def authenticate(self, email=None, password=None):
             try:
                user = self.user_class.objects.get(email=email)
                if user.check_password(password):
                   return user
             except self.user_class.DoesNotExist:
                   return None

         def get_user(self, user_id):
             try:
                return self.user_class.objects.get(pk=user_id)
             except self.user_class.DoesNotExist:
                return None

         @property
         def user_class(self):
             if not hasattr(self, '_user_class'):
                self._user_class = get_model(*settings.AUTH_USER_MODEL.split('.', 2))
                if not self._user_class:
                   raise ImproperlyConfigured('Could not get custom user model')
             return self._user_class

但现在我不知道如何使用他的电子邮件验证自定义用户,我是否使用:

    from django.contrib import auth
    def auth_view(request):
        email = request.POST.get('email', '')
        password = request.POST.get('password', '')
        user = auth.authenticate(username=email, password=password)

        if user is not None:
           auth.login(request, user)
           return HttpResponseRedirect('/loggedin/')
        else:
           return HttpResponseRedirect('/invalid/') 

我试过这个,似乎它无法识别我使用管理界面创建的用户。还有其他事情要改变吗?

1 个答案:

答案 0 :(得分:1)

如果您想进行自定义身份验证,我建议您为此制作表单。创建一个接收电子邮件和密码的表单,然后编写clean方法来验证这两个。

Try taking a look at this answer as an example.