2020-03-18 13:36:40 +00:00
|
|
|
from django.contrib.auth import get_user_model
|
2020-11-14 09:50:43 +00:00
|
|
|
from django.db import transaction
|
|
|
|
from ldap3.core.exceptions import LDAPEntryAlreadyExistsResult
|
2020-03-18 13:36:40 +00:00
|
|
|
from rest_framework import serializers
|
2020-03-18 13:53:26 +00:00
|
|
|
|
2020-12-09 19:22:33 +00:00
|
|
|
from uncloud import AMOUNT_DECIMALS, AMOUNT_MAX_DIGITS
|
2020-05-10 19:47:44 +00:00
|
|
|
from uncloud_pay.models import BillingAddress
|
2020-03-18 13:36:40 +00:00
|
|
|
|
2020-11-14 09:50:43 +00:00
|
|
|
from .ungleich_ldap import LdapManager
|
|
|
|
|
|
|
|
|
2020-03-18 13:36:40 +00:00
|
|
|
class UserSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = get_user_model()
|
2020-05-10 19:47:44 +00:00
|
|
|
read_only_fields = [ 'username', 'balance', 'maximum_credit' ]
|
2020-11-14 09:50:43 +00:00
|
|
|
fields = read_only_fields + [ 'email' ] # , 'primary_billing_address' ]
|
2020-05-10 19:47:44 +00:00
|
|
|
|
|
|
|
def validate(self, data):
|
|
|
|
"""
|
|
|
|
Ensure that the primary billing address belongs to the user
|
|
|
|
"""
|
2020-11-14 09:50:43 +00:00
|
|
|
# The following is raising exceptions probably, it is WIP somewhere
|
|
|
|
# if 'primary_billing_address' in data:
|
|
|
|
# if not data['primary_billing_address'].owner == self.instance:
|
|
|
|
# raise serializers.ValidationError('Invalid data')
|
2020-05-10 19:47:44 +00:00
|
|
|
|
|
|
|
return data
|
2020-03-18 13:36:40 +00:00
|
|
|
|
2020-11-14 09:50:43 +00:00
|
|
|
def update(self, instance, validated_data):
|
|
|
|
ldap_manager = LdapManager()
|
|
|
|
return_val, _ = ldap_manager.change_user_details(
|
|
|
|
instance.username, {'mail': validated_data.get('email')}
|
|
|
|
)
|
|
|
|
if not return_val:
|
|
|
|
raise serializers.ValidationError('Couldn\'t update email')
|
|
|
|
instance.email = validated_data.get('email')
|
|
|
|
instance.save()
|
|
|
|
return instance
|
|
|
|
|
|
|
|
|
|
|
|
class UserRegistrationSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = get_user_model()
|
|
|
|
fields = ['username', 'first_name', 'last_name', 'email', 'password']
|
|
|
|
extra_kwargs = {
|
|
|
|
'password': {'style': {'input_type': 'password'}},
|
|
|
|
'first_name': {'allow_blank': False, 'required': True},
|
|
|
|
'last_name': {'allow_blank': False, 'required': True},
|
|
|
|
'email': {'allow_blank': False, 'required': True},
|
|
|
|
}
|
|
|
|
|
|
|
|
def create(self, validated_data):
|
|
|
|
ldap_manager = LdapManager()
|
|
|
|
try:
|
|
|
|
data = {
|
|
|
|
'user': validated_data['username'],
|
|
|
|
'password': validated_data['password'],
|
|
|
|
'email': validated_data['email'],
|
|
|
|
'firstname': validated_data['first_name'],
|
|
|
|
'lastname': validated_data['last_name'],
|
|
|
|
}
|
|
|
|
ldap_manager.create_user(**data)
|
|
|
|
except LDAPEntryAlreadyExistsResult:
|
|
|
|
raise serializers.ValidationError(
|
|
|
|
{'username': ['A user with that username already exists.']}
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
return get_user_model().objects.create_user(**validated_data)
|
|
|
|
|
|
|
|
|
2020-04-18 13:11:02 +00:00
|
|
|
class ImportUserSerializer(serializers.Serializer):
|
|
|
|
username = serializers.CharField()
|