mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
26 lines
628 B
Python
26 lines
628 B
Python
from functools import wraps
|
|
|
|
from axes.handlers.proxy import AxesProxyHandler
|
|
from axes.helpers import get_lockout_response
|
|
|
|
|
|
def axes_dispatch(func):
|
|
@wraps(func)
|
|
def inner(request, *args, **kwargs):
|
|
if AxesProxyHandler.is_allowed(request):
|
|
return func(request, *args, **kwargs)
|
|
|
|
return get_lockout_response(request)
|
|
|
|
return inner
|
|
|
|
|
|
def axes_form_invalid(func):
|
|
@wraps(func)
|
|
def inner(self, *args, **kwargs):
|
|
if AxesProxyHandler.is_allowed(self.request):
|
|
return func(self, *args, **kwargs)
|
|
|
|
return get_lockout_response(self.request)
|
|
|
|
return inner
|