mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-10-31 07:57:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.contrib.auth import authenticate
 | |
| from django.utils.translation import ugettext_lazy as _
 | |
| 
 | |
| from rest_framework import 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 serializers.ValidationError(msg)
 | |
|                 attrs['user'] = user
 | |
|                 return attrs
 | |
|             else:
 | |
|                 msg = _('Unable to log in with provided credentials.')
 | |
|                 raise serializers.ValidationError(msg)
 | |
|         else:
 | |
|             msg = _('Must include "username" and "password"')
 | |
|             raise serializers.ValidationError(msg)
 |