django-defender/defender/decorators.py

47 lines
1.6 KiB
Python
Raw Normal View History

from . import utils
2014-09-24 00:31:17 +00:00
def watch_login(func):
"""
Used to decorate the django.contrib.admin.site.login method.
"""
def decorated_login(request, *args, **kwargs):
# if the request is currently under lockout, do not proceed to the
# login function, go directly to lockout url, do not pass go, do not
# collect messages about this login attempt
if utils.is_already_locked(request):
return utils.lockout_response(request)
2014-09-24 00:31:17 +00:00
# call the login function
response = func(request, *args, **kwargs)
if func.__name__ == 'decorated_login':
# if we're dealing with this function itself, don't bother checking
# for invalid login attempts. I suppose there's a bunch of
# recursion going on here that used to cause one failed login
# attempt to generate 10+ failed access attempt records (with 3
# failed attempts each supposedly)
return response
if request.method == 'POST':
# see if the login was successful
login_unsuccessful = (
response and
not response.has_header('location') and
response.status_code != 302
)
2015-01-01 00:27:18 +00:00
# ideally make this background task, but to keep simple, keeping
# it inline for now.
utils.add_login_attempt_to_db(request, not login_unsuccessful)
2015-01-01 00:27:18 +00:00
if utils.check_request(request, login_unsuccessful):
2014-09-24 00:31:17 +00:00
return response
return utils.lockout_response(request)
2014-09-24 00:31:17 +00:00
return response
return decorated_login