Coverage for django_napse/utils/serializers/fields.py: 96%
50 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1import uuid
2from datetime import datetime
5def instance_check(target_type) -> callable:
6 def _instance_check(instance, target_type=target_type):
7 return isinstance(instance, target_type)
9 return _instance_check
12class Field:
13 validate = None
14 # Define if the getter method takes the serializer as argument.
15 getter_takes_serializer = False
17 def __init__(self, required: bool = False, source: str | None = None):
18 self.required = required
19 self.source = source
21 def to_value(self, value):
22 """Overwrite this method for custom transformation on the serialized value."""
23 return value
25 def as_getter(self, serializer_field_name, serializer_cls) -> None:
26 """Return a getter method for the field."""
27 return
30class StrField(Field):
31 to_value: callable = staticmethod(str)
32 validate: callable = staticmethod(instance_check(str))
35class IntField(Field):
36 to_value: callable = staticmethod(int)
37 validate: callable = staticmethod(instance_check(int))
40class FloatField(Field):
41 to_value: callable = staticmethod(float)
42 validate: callable = staticmethod(instance_check(float))
45class BoolField(Field):
46 to_value: callable = staticmethod(bool)
47 validate: callable = staticmethod(instance_check(bool))
50class UUIDField(Field):
51 to_value: callable = staticmethod(uuid.UUID)
52 validate: callable = staticmethod(instance_check(uuid.UUID))
54 @staticmethod
55 def to_value(value):
56 if not isinstance(value, uuid.UUID):
57 return str(uuid.UUID(value))
58 return str(value)
61class DatetimeField(Field):
62 # to_value: callable = staticmethod(datetime)
63 validate: callable = instance_check(datetime)
65 @staticmethod
66 def to_value(value):
67 return value.strftime("%Y-%m-%d %H:%M:%S")
70class MethodField(Field):
71 getter_takes_serializer = True
73 # Avoir type serialization on data
74 to_value = None
75 validate = None
77 def __init__(self, method_name: str | None = None, **kwargs):
78 super().__init__(**kwargs)
79 self.method_name = method_name
81 def as_getter(self, serializer_field_name, serializer_cls) -> callable:
82 """Get the (get_<field> | method_name) method from the serializer class."""
83 return getattr(
84 serializer_cls,
85 self.method_name or f"get_{serializer_field_name}",
86 )