-
-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Expand file tree
/
Copy pathserializers.py
More file actions
62 lines (54 loc) · 2.2 KB
/
serializers.py
File metadata and controls
62 lines (54 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from django.contrib.auth import authenticate, get_user_model
from django.utils.translation import gettext_lazy as _
from rest_framework import serializers
class AuthTokenSerializer(serializers.Serializer):
username = serializers.CharField(
label=_("Username"),
write_only=True
)
password = serializers.CharField(
label=_("Password"),
style={'input_type': 'password'},
trim_whitespace=False,
write_only=True
)
token = serializers.CharField(
label=_("Token"),
read_only=True
)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
User = get_user_model()
username_field = User.USERNAME_FIELD
if username_field != 'username' and 'username' in self.fields:
# Rebuild the fields mapping to preserve the original position
# of the login field when renaming it.
original_items = list(self.fields.items())
new_fields = self.fields.__class__(self)
for name, field in original_items:
if name == 'username':
name = username_field
field.label = _(username_field.capitalize())
new_fields[name] = field
self.fields = new_fields
def validate(self, attrs):
User = get_user_model()
username_field = User.USERNAME_FIELD
username = attrs.get(username_field)
password = attrs.get('password')
if username and password:
user = authenticate(
request=self.context.get('request'),
**{username_field: username, 'password': password}
)
# The authenticate call simply returns None for is_active=False
# users. (Assuming the default ModelBackend authentication
# backend.)
if not user:
msg = _('Unable to log in with provided credentials.')
raise serializers.ValidationError(msg, code='authorization')
else:
msg = _(f'Must include "{username_field}" and "password".')
raise serializers.ValidationError(msg, code='authorization')
attrs['user'] = user
return attrs