This repository has been archived by the owner on Mar 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
backends.py
43 lines (39 loc) · 1.75 KB
/
backends.py
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
40
41
42
43
##
# Copyright (C) 2014 Jessica Tallon & Matt Molyneaux
#
# This file is part of Inboxen.
#
# Inboxen is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Inboxen is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Inboxen. If not, see <http://www.gnu.org/licenses/>.
##
from django.conf import settings
from django.contrib.auth import get_user_model
from django.contrib.auth.backends import ModelBackend
from ratelimitbackend.backends import RateLimitMixin
class CaseInsensitiveMixin(object):
def authenticate(self, username=None, password=None, **kwargs):
# we're also case insensitive
user_model = get_user_model()
username_field = user_model.USERNAME_FIELD
if username is None:
username = kwargs.get(username_field)
try:
user = user_model.objects.get(**{"{0}__iexact".format(username_field): username})
if user.check_password(password):
return user
except user_model.DoesNotExist:
# do like the default backend does, slow down return on non-existence
user_model.set_password(password)
class RateLimitWithSettings(RateLimitMixin, CaseInsensitiveMixin, ModelBackend):
minutes = settings.LOGIN_ATTEMPT_COOLOFF
requests = settings.LOGIN_ATTEMPT_LIMIT