Skip to content

Instantly share code, notes, and snippets.

@kylefox
Last active March 8, 2016 21:11
Show Gist options
  • Save kylefox/0d6687308bf5c454cbd7 to your computer and use it in GitHub Desktop.
Save kylefox/0d6687308bf5c454cbd7 to your computer and use it in GitHub Desktop.
from rest_framework_jwt.serializers import JSONWebTokenSerializer
from rest_framework.serializers import ValidationError
from rest_framework.authtoken.serializers import AuthTokenSerializer
from .models import LoginLockout
class LockableTokenSerializer(object):
"""
In addition to the normal token auth validation,
validate that the user is not currently locked out from failed logins.
"""
def validate(self, attrs):
attrs = super(LockableTokenSerializer, self).validate(attrs)
if LoginLockout.objects.user_is_locked_out(attrs['user']):
raise ValidationError('User account is temporarily locked.')
return attrs
class LockableJSONWebTokenSerializer(LockableTokenSerializer,
JSONWebTokenSerializer):
pass
class LockableAuthTokenSerializer(LockableTokenSerializer,
AuthTokenSerializer):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment