django-rest-framework/rest_framework/authtoken/serializers.py

31 lines
1002 B
Python
Raw Normal View History

from django.contrib.auth import authenticate
from django.utils.translation import ugettext_lazy as _
from rest_framework import exceptions, serializers
class AuthTokenSerializer(serializers.Serializer):
username = serializers.CharField()
password = serializers.CharField()
def validate(self, attrs):
username = attrs.get('username')
password = attrs.get('password')
if username and password:
user = authenticate(username=username, password=password)
if user:
if not user.is_active:
msg = _('User account is disabled.')
raise exceptions.ValidationFailed(msg)
else:
2014-09-11 07:27:52 +04:00
msg = _('Unable to log in with provided credentials.')
raise exceptions.ValidationFailed(msg)
else:
msg = _('Must include "username" and "password"')
raise exceptions.ValidationFailed(msg)
2014-09-02 20:41:23 +04:00
attrs['user'] = user
return attrs