Last active
March 8, 2016 21:11
-
-
Save kylefox/0d6687308bf5c454cbd7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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