2013-04-25 15:47:34 +04:00
|
|
|
"""
|
|
|
|
Serializers and ModelSerializers are similar to Forms and ModelForms.
|
|
|
|
Unlike forms, they are not constrained to dealing with HTML output, and
|
|
|
|
form encoded input.
|
|
|
|
|
|
|
|
Serialization in REST framework is a two-phase process:
|
|
|
|
|
|
|
|
1. Serializers marshal between complex types like model instances, and
|
2013-11-11 13:54:30 +04:00
|
|
|
python primitives.
|
|
|
|
2. The process of marshalling between python primitives and request and
|
2013-04-25 15:47:34 +04:00
|
|
|
response content is handled by parsers and renderers.
|
|
|
|
"""
|
2014-10-10 17:16:09 +04:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2012-10-02 19:16:49 +04:00
|
|
|
from django.db import models
|
2014-10-28 19:21:49 +03:00
|
|
|
from django.db.models.fields import FieldDoesNotExist
|
2014-08-19 20:06:55 +04:00
|
|
|
from django.utils import six
|
2014-09-10 19:57:22 +04:00
|
|
|
from django.utils.datastructures import SortedDict
|
2014-11-03 17:01:02 +03:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2014-10-17 16:23:14 +04:00
|
|
|
from rest_framework.exceptions import ValidationError
|
2014-09-05 19:29:46 +04:00
|
|
|
from rest_framework.fields import empty, set_value, Field, SkipField
|
2014-01-14 12:38:49 +04:00
|
|
|
from rest_framework.settings import api_settings
|
2014-09-15 12:50:51 +04:00
|
|
|
from rest_framework.utils import html, model_meta, representation
|
2014-09-18 14:20:56 +04:00
|
|
|
from rest_framework.utils.field_mapping import (
|
|
|
|
get_url_kwargs, get_field_kwargs,
|
|
|
|
get_relation_kwargs, get_nested_relation_kwargs,
|
2014-09-24 17:09:49 +04:00
|
|
|
ClassLookupDict
|
2014-09-18 14:20:56 +04:00
|
|
|
)
|
2014-10-22 16:30:28 +04:00
|
|
|
from rest_framework.validators import (
|
2014-10-22 19:29:09 +04:00
|
|
|
UniqueForDateValidator, UniqueForMonthValidator, UniqueForYearValidator,
|
|
|
|
UniqueTogetherValidator
|
2014-10-22 16:30:28 +04:00
|
|
|
)
|
2014-08-29 19:46:26 +04:00
|
|
|
import copy
|
2014-09-19 19:43:13 +04:00
|
|
|
import inspect
|
2014-10-08 19:09:37 +04:00
|
|
|
import warnings
|
2012-11-05 14:56:30 +04:00
|
|
|
|
|
|
|
# Note: We do the following so that users of the framework can use this style:
|
|
|
|
#
|
|
|
|
# example_field = serializers.CharField(...)
|
|
|
|
#
|
2013-05-28 18:09:23 +04:00
|
|
|
# This helps keep the separation between model fields, form fields, and
|
2012-11-05 14:56:30 +04:00
|
|
|
# serializer fields more explicit.
|
|
|
|
|
2014-05-17 02:05:33 +04:00
|
|
|
from rest_framework.relations import * # NOQA
|
|
|
|
from rest_framework.fields import * # NOQA
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-11-05 18:23:13 +03:00
|
|
|
LIST_SERIALIZER_KWARGS = (
|
|
|
|
'read_only', 'write_only', 'required', 'default', 'initial', 'source',
|
|
|
|
'label', 'help_text', 'style', 'error_messages',
|
|
|
|
'instance', 'data', 'partial', 'context'
|
|
|
|
)
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
# BaseSerializer
|
|
|
|
# --------------
|
2013-10-02 16:45:35 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
class BaseSerializer(Field):
|
2014-09-05 19:29:46 +04:00
|
|
|
"""
|
|
|
|
The BaseSerializer class provides a minimal class which may be used
|
|
|
|
for writing custom serializer implementations.
|
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
def __init__(self, instance=None, data=None, **kwargs):
|
|
|
|
self.instance = instance
|
|
|
|
self._initial_data = data
|
2014-09-26 15:48:20 +04:00
|
|
|
self.partial = kwargs.pop('partial', False)
|
|
|
|
self._context = kwargs.pop('context', {})
|
|
|
|
kwargs.pop('many', None)
|
|
|
|
super(BaseSerializer, self).__init__(**kwargs)
|
|
|
|
|
|
|
|
def __new__(cls, *args, **kwargs):
|
|
|
|
# We override this method in order to automagically create
|
|
|
|
# `ListSerializer` classes instead when `many=True` is set.
|
|
|
|
if kwargs.pop('many', False):
|
2014-11-05 18:23:13 +03:00
|
|
|
list_kwargs = {'child': cls(*args, **kwargs)}
|
|
|
|
for key in kwargs.keys():
|
|
|
|
if key in LIST_SERIALIZER_KWARGS:
|
|
|
|
list_kwargs[key] = kwargs[key]
|
|
|
|
return ListSerializer(*args, **list_kwargs)
|
2014-09-26 15:48:20 +04:00
|
|
|
return super(BaseSerializer, cls).__new__(cls, *args, **kwargs)
|
2013-10-02 16:45:35 +04:00
|
|
|
|
2014-09-12 12:49:35 +04:00
|
|
|
def to_internal_value(self, data):
|
|
|
|
raise NotImplementedError('`to_internal_value()` must be implemented.')
|
2013-04-18 21:28:20 +04:00
|
|
|
|
2014-09-12 12:49:35 +04:00
|
|
|
def to_representation(self, instance):
|
|
|
|
raise NotImplementedError('`to_representation()` must be implemented.')
|
2013-11-08 16:12:40 +04:00
|
|
|
|
2014-09-26 13:46:52 +04:00
|
|
|
def update(self, instance, validated_data):
|
2014-09-05 19:29:46 +04:00
|
|
|
raise NotImplementedError('`update()` must be implemented.')
|
2013-03-12 22:35:20 +04:00
|
|
|
|
2014-09-26 13:46:52 +04:00
|
|
|
def create(self, validated_data):
|
2014-09-05 19:29:46 +04:00
|
|
|
raise NotImplementedError('`create()` must be implemented.')
|
2013-03-12 22:35:20 +04:00
|
|
|
|
2014-10-03 16:42:06 +04:00
|
|
|
def save(self, **kwargs):
|
2014-09-26 13:46:52 +04:00
|
|
|
validated_data = self.validated_data
|
2014-10-03 16:42:06 +04:00
|
|
|
if kwargs:
|
2014-09-26 13:46:52 +04:00
|
|
|
validated_data = dict(
|
|
|
|
list(validated_data.items()) +
|
2014-10-03 16:42:06 +04:00
|
|
|
list(kwargs.items())
|
2014-09-26 13:46:52 +04:00
|
|
|
)
|
2013-03-12 22:35:20 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
if self.instance is not None:
|
2014-10-08 15:17:30 +04:00
|
|
|
self.instance = self.update(self.instance, validated_data)
|
|
|
|
assert self.instance is not None, (
|
|
|
|
'`update()` did not return an object instance.'
|
|
|
|
)
|
2013-03-13 07:59:25 +04:00
|
|
|
else:
|
2014-09-26 13:46:52 +04:00
|
|
|
self.instance = self.create(validated_data)
|
2014-09-26 14:56:29 +04:00
|
|
|
assert self.instance is not None, (
|
|
|
|
'`create()` did not return an object instance.'
|
|
|
|
)
|
2013-03-12 17:33:02 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
return self.instance
|
2013-03-12 17:33:02 +04:00
|
|
|
|
2014-09-05 19:29:46 +04:00
|
|
|
def is_valid(self, raise_exception=False):
|
2014-10-17 16:23:14 +04:00
|
|
|
assert not hasattr(self, 'restore_object'), (
|
2014-10-22 13:32:32 +04:00
|
|
|
'Serializer `%s.%s` has old-style version 2 `.restore_object()` '
|
2014-10-17 16:23:14 +04:00
|
|
|
'that is no longer compatible with REST framework 3. '
|
|
|
|
'Use the new-style `.create()` and `.update()` methods instead.' %
|
2014-10-22 13:32:32 +04:00
|
|
|
(self.__class__.__module__, self.__class__.__name__)
|
2014-10-17 16:23:14 +04:00
|
|
|
)
|
|
|
|
|
2014-09-05 19:29:46 +04:00
|
|
|
if not hasattr(self, '_validated_data'):
|
|
|
|
try:
|
2014-09-29 14:23:02 +04:00
|
|
|
self._validated_data = self.run_validation(self._initial_data)
|
2014-10-17 16:23:14 +04:00
|
|
|
except ValidationError as exc:
|
2014-09-05 19:29:46 +04:00
|
|
|
self._validated_data = {}
|
2014-10-10 17:16:09 +04:00
|
|
|
self._errors = exc.detail
|
2014-09-05 19:29:46 +04:00
|
|
|
else:
|
|
|
|
self._errors = {}
|
|
|
|
|
|
|
|
if self._errors and raise_exception:
|
2014-10-17 16:23:14 +04:00
|
|
|
raise ValidationError(self._errors)
|
2014-09-05 19:29:46 +04:00
|
|
|
|
|
|
|
return not bool(self._errors)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
@property
|
|
|
|
def data(self):
|
|
|
|
if not hasattr(self, '_data'):
|
2014-10-15 18:13:28 +04:00
|
|
|
if self.instance is not None and not getattr(self, '_errors', None):
|
2014-09-12 12:49:35 +04:00
|
|
|
self._data = self.to_representation(self.instance)
|
2014-10-17 16:23:14 +04:00
|
|
|
elif hasattr(self, '_validated_data') and not getattr(self, '_errors', None):
|
|
|
|
self._data = self.to_representation(self.validated_data)
|
2014-08-29 19:46:26 +04:00
|
|
|
else:
|
|
|
|
self._data = self.get_initial()
|
|
|
|
return self._data
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
@property
|
|
|
|
def errors(self):
|
|
|
|
if not hasattr(self, '_errors'):
|
|
|
|
msg = 'You must call `.is_valid()` before accessing `.errors`.'
|
|
|
|
raise AssertionError(msg)
|
|
|
|
return self._errors
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
@property
|
|
|
|
def validated_data(self):
|
|
|
|
if not hasattr(self, '_validated_data'):
|
|
|
|
msg = 'You must call `.is_valid()` before accessing `.validated_data`.'
|
|
|
|
raise AssertionError(msg)
|
|
|
|
return self._validated_data
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
# Serializer & ListSerializer classes
|
|
|
|
# -----------------------------------
|
|
|
|
|
|
|
|
class ReturnDict(SortedDict):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-10-02 19:24:24 +04:00
|
|
|
Return object from `serialier.data` for the `Serializer` class.
|
|
|
|
Includes a backlink to the serializer instance for renderers
|
|
|
|
to use if they need richer field information.
|
|
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.serializer = kwargs.pop('serializer')
|
|
|
|
super(ReturnDict, self).__init__(*args, **kwargs)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
|
|
|
|
class ReturnList(list):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-10-02 19:24:24 +04:00
|
|
|
Return object from `serialier.data` for the `SerializerList` class.
|
|
|
|
Includes a backlink to the serializer instance for renderers
|
|
|
|
to use if they need richer field information.
|
|
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.serializer = kwargs.pop('serializer')
|
|
|
|
super(ReturnList, self).__init__(*args, **kwargs)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
class BoundField(object):
|
|
|
|
"""
|
|
|
|
A field object that also includes `.value` and `.error` properties.
|
|
|
|
Returned when iterating over a serializer instance,
|
|
|
|
providing an API similar to Django forms and form fields.
|
|
|
|
"""
|
2014-10-09 18:11:19 +04:00
|
|
|
def __init__(self, field, value, errors, prefix=''):
|
2014-10-02 19:24:24 +04:00
|
|
|
self._field = field
|
|
|
|
self.value = value
|
|
|
|
self.errors = errors
|
2014-10-09 18:11:19 +04:00
|
|
|
self.name = prefix + self.field_name
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
def __getattr__(self, attr_name):
|
|
|
|
return getattr(self._field, attr_name)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-10 17:16:09 +04:00
|
|
|
@property
|
|
|
|
def _proxy_class(self):
|
|
|
|
return self._field.__class__
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return '<%s value=%s errors=%s>' % (
|
|
|
|
self.__class__.__name__, self.value, self.errors
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class NestedBoundField(BoundField):
|
|
|
|
"""
|
|
|
|
This BoundField additionally implements __iter__ and __getitem__
|
|
|
|
in order to support nested bound fields. This class is the type of
|
|
|
|
BoundField that is used for serializer fields.
|
|
|
|
"""
|
2014-10-09 18:11:19 +04:00
|
|
|
def __iter__(self):
|
|
|
|
for field in self.fields.values():
|
|
|
|
yield self[field.field_name]
|
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
field = self.fields[key]
|
|
|
|
value = self.value.get(key) if self.value else None
|
|
|
|
error = self.errors.get(key) if self.errors else None
|
2014-10-10 17:16:09 +04:00
|
|
|
if isinstance(field, Serializer):
|
|
|
|
return NestedBoundField(field, value, error, prefix=self.name + '.')
|
2014-10-09 18:11:19 +04:00
|
|
|
return BoundField(field, value, error, prefix=self.name + '.')
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-09-25 14:04:18 +04:00
|
|
|
class BindingDict(object):
|
2014-09-25 14:40:32 +04:00
|
|
|
"""
|
|
|
|
This dict-like object is used to store fields on a serializer.
|
|
|
|
|
|
|
|
This ensures that whenever fields are added to the serializer we call
|
|
|
|
`field.bind()` so that the `field_name` and `parent` attributes
|
|
|
|
can be set correctly.
|
|
|
|
"""
|
2014-09-25 14:04:18 +04:00
|
|
|
def __init__(self, serializer):
|
|
|
|
self.serializer = serializer
|
|
|
|
self.fields = SortedDict()
|
|
|
|
|
|
|
|
def __setitem__(self, key, field):
|
|
|
|
self.fields[key] = field
|
2014-09-25 14:40:32 +04:00
|
|
|
field.bind(field_name=key, parent=self.serializer)
|
2014-09-25 14:04:18 +04:00
|
|
|
|
|
|
|
def __getitem__(self, key):
|
|
|
|
return self.fields[key]
|
|
|
|
|
|
|
|
def __delitem__(self, key):
|
|
|
|
del self.fields[key]
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
return self.fields.items()
|
|
|
|
|
2014-10-16 04:54:58 +04:00
|
|
|
def keys(self):
|
|
|
|
return self.fields.keys()
|
|
|
|
|
2014-09-25 14:04:18 +04:00
|
|
|
def values(self):
|
|
|
|
return self.fields.values()
|
|
|
|
|
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
class SerializerMetaclass(type):
|
|
|
|
"""
|
|
|
|
This metaclass sets a dictionary named `base_fields` on the class.
|
|
|
|
|
|
|
|
Any instances of `Field` included as attributes on either the class
|
|
|
|
or on any of its superclasses will be include in the
|
|
|
|
`base_fields` dictionary.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _get_declared_fields(cls, bases, attrs):
|
|
|
|
fields = [(field_name, attrs.pop(field_name))
|
|
|
|
for field_name, obj in list(attrs.items())
|
|
|
|
if isinstance(obj, Field)]
|
|
|
|
fields.sort(key=lambda x: x[1]._creation_counter)
|
|
|
|
|
|
|
|
# If this class is subclassing another Serializer, add that Serializer's
|
|
|
|
# fields. Note that we loop over the bases in *reverse*. This is necessary
|
|
|
|
# in order to maintain the correct order of fields.
|
|
|
|
for base in bases[::-1]:
|
|
|
|
if hasattr(base, '_declared_fields'):
|
|
|
|
fields = list(base._declared_fields.items()) + fields
|
|
|
|
|
|
|
|
return SortedDict(fields)
|
|
|
|
|
|
|
|
def __new__(cls, name, bases, attrs):
|
|
|
|
attrs['_declared_fields'] = cls._get_declared_fields(bases, attrs)
|
|
|
|
return super(SerializerMetaclass, cls).__new__(cls, name, bases, attrs)
|
|
|
|
|
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
@six.add_metaclass(SerializerMetaclass)
|
|
|
|
class Serializer(BaseSerializer):
|
2014-11-03 17:01:02 +03:00
|
|
|
default_error_messages = {
|
|
|
|
'invalid': _('Invalid data. Expected a dictionary, but got {datatype}.')
|
|
|
|
}
|
|
|
|
|
2014-10-31 19:38:39 +03:00
|
|
|
@property
|
|
|
|
def fields(self):
|
|
|
|
if not hasattr(self, '_fields'):
|
|
|
|
self._fields = BindingDict(self)
|
|
|
|
for key, value in self.get_fields().items():
|
|
|
|
self._fields[key] = value
|
|
|
|
return self._fields
|
|
|
|
|
|
|
|
def get_fields(self):
|
2014-08-29 19:46:26 +04:00
|
|
|
# Every new serializer is created with a clone of the field instances.
|
|
|
|
# This allows users to dynamically modify the fields on a serializer
|
|
|
|
# instance without affecting every other serializer class.
|
2014-09-18 14:20:56 +04:00
|
|
|
return copy.deepcopy(self._declared_fields)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-31 19:38:39 +03:00
|
|
|
def get_validators(self):
|
|
|
|
return getattr(getattr(self, 'Meta', None), 'validators', [])
|
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def get_initial(self):
|
2014-10-02 19:24:24 +04:00
|
|
|
if self._initial_data is not None:
|
2014-11-05 16:40:21 +03:00
|
|
|
return self.to_representation(self._initial_data)
|
2014-10-02 19:24:24 +04:00
|
|
|
|
|
|
|
return ReturnDict([
|
2014-09-10 19:57:22 +04:00
|
|
|
(field.field_name, field.get_initial())
|
2014-08-29 19:46:26 +04:00
|
|
|
for field in self.fields.values()
|
2014-10-02 19:24:24 +04:00
|
|
|
if not field.write_only
|
|
|
|
], serializer=self)
|
2012-10-24 12:28:10 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def get_value(self, dictionary):
|
|
|
|
# We override the default field access in order to support
|
|
|
|
# nested HTML forms.
|
|
|
|
if html.is_html_input(dictionary):
|
|
|
|
return html.parse_html_dict(dictionary, prefix=self.field_name)
|
|
|
|
return dictionary.get(self.field_name, empty)
|
2012-10-24 14:39:17 +04:00
|
|
|
|
2014-09-29 14:23:02 +04:00
|
|
|
def run_validation(self, data=empty):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-09-29 14:23:02 +04:00
|
|
|
We override the default `run_validation`, because the validation
|
|
|
|
performed by validators and the `.validate()` method should
|
|
|
|
be coerced into an error dictionary with a 'non_fields_error' key.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-09-29 14:23:02 +04:00
|
|
|
if data is empty:
|
|
|
|
if getattr(self.root, 'partial', False):
|
|
|
|
raise SkipField()
|
|
|
|
if self.required:
|
|
|
|
self.fail('required')
|
|
|
|
return self.get_default()
|
|
|
|
|
|
|
|
if data is None:
|
|
|
|
if not self.allow_null:
|
|
|
|
self.fail('null')
|
|
|
|
return None
|
|
|
|
|
2014-09-05 19:29:46 +04:00
|
|
|
if not isinstance(data, dict):
|
2014-11-03 17:01:02 +03:00
|
|
|
message = self.error_messages['invalid'].format(
|
|
|
|
datatype=type(data).__name__
|
|
|
|
)
|
2014-10-17 16:23:14 +04:00
|
|
|
raise ValidationError({
|
2014-11-03 17:01:02 +03:00
|
|
|
api_settings.NON_FIELD_ERRORS_KEY: [message]
|
2014-09-12 13:21:35 +04:00
|
|
|
})
|
2014-09-05 19:29:46 +04:00
|
|
|
|
2014-09-29 14:23:02 +04:00
|
|
|
value = self.to_internal_value(data)
|
|
|
|
try:
|
|
|
|
self.run_validators(value)
|
2014-10-08 15:36:28 +04:00
|
|
|
value = self.validate(value)
|
|
|
|
assert value is not None, '.validate() should return the validated data'
|
2014-10-17 16:23:14 +04:00
|
|
|
except ValidationError as exc:
|
2014-10-22 13:32:32 +04:00
|
|
|
if isinstance(exc.detail, dict):
|
|
|
|
# .validate() errors may be a dict, in which case, use
|
|
|
|
# standard {key: list of values} style.
|
|
|
|
raise ValidationError(dict([
|
|
|
|
(key, value if isinstance(value, list) else [value])
|
|
|
|
for key, value in exc.detail.items()
|
|
|
|
]))
|
|
|
|
elif isinstance(exc.detail, list):
|
|
|
|
raise ValidationError({
|
|
|
|
api_settings.NON_FIELD_ERRORS_KEY: exc.detail
|
|
|
|
})
|
|
|
|
else:
|
|
|
|
raise ValidationError({
|
|
|
|
api_settings.NON_FIELD_ERRORS_KEY: [exc.detail]
|
|
|
|
})
|
|
|
|
|
2014-09-29 14:23:02 +04:00
|
|
|
return value
|
|
|
|
|
|
|
|
def to_internal_value(self, data):
|
|
|
|
"""
|
|
|
|
Dict of native values <- Dict of primitive datatypes.
|
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
ret = {}
|
2014-10-15 18:13:28 +04:00
|
|
|
errors = ReturnDict(serializer=self)
|
2014-10-28 19:21:49 +03:00
|
|
|
fields = [
|
|
|
|
field for field in self.fields.values()
|
|
|
|
if (not field.read_only) or (field.default is not empty)
|
|
|
|
]
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
for field in fields:
|
2014-09-05 19:29:46 +04:00
|
|
|
validate_method = getattr(self, 'validate_' + field.field_name, None)
|
2014-08-29 19:46:26 +04:00
|
|
|
primitive_value = field.get_value(data)
|
|
|
|
try:
|
2014-09-12 12:49:35 +04:00
|
|
|
validated_value = field.run_validation(primitive_value)
|
2014-09-05 19:29:46 +04:00
|
|
|
if validate_method is not None:
|
|
|
|
validated_value = validate_method(validated_value)
|
2014-10-17 16:23:14 +04:00
|
|
|
except ValidationError as exc:
|
2014-10-10 17:16:09 +04:00
|
|
|
errors[field.field_name] = exc.detail
|
2014-08-29 19:46:26 +04:00
|
|
|
except SkipField:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
set_value(ret, field.source_attrs, validated_value)
|
2013-01-31 21:06:23 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
if errors:
|
2014-10-17 16:23:14 +04:00
|
|
|
raise ValidationError(errors)
|
2013-10-02 19:13:34 +04:00
|
|
|
|
2014-09-29 14:23:02 +04:00
|
|
|
return ret
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-09-12 12:49:35 +04:00
|
|
|
def to_representation(self, instance):
|
2012-10-22 18:12:25 +04:00
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
Object instance -> Dict of primitive datatypes.
|
2012-10-22 18:12:25 +04:00
|
|
|
"""
|
2014-10-02 19:24:24 +04:00
|
|
|
ret = ReturnDict(serializer=self)
|
2014-08-29 19:46:26 +04:00
|
|
|
fields = [field for field in self.fields.values() if not field.write_only]
|
2014-01-14 15:25:44 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
for field in fields:
|
2014-10-16 23:45:36 +04:00
|
|
|
attribute = field.get_attribute(instance)
|
|
|
|
if attribute is None:
|
|
|
|
value = None
|
|
|
|
else:
|
|
|
|
value = field.to_representation(attribute)
|
2014-10-08 15:36:28 +04:00
|
|
|
transform_method = getattr(self, 'transform_' + field.field_name, None)
|
|
|
|
if transform_method is not None:
|
|
|
|
value = transform_method(value)
|
|
|
|
|
|
|
|
ret[field.field_name] = value
|
2013-01-27 00:54:03 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
return ret
|
2012-11-20 13:41:36 +04:00
|
|
|
|
2014-09-02 20:41:23 +04:00
|
|
|
def validate(self, attrs):
|
|
|
|
return attrs
|
|
|
|
|
2014-10-09 18:11:19 +04:00
|
|
|
def __repr__(self):
|
|
|
|
return representation.serializer_repr(self, indent=1)
|
|
|
|
|
|
|
|
# The following are used for accessing `BoundField` instances on the
|
|
|
|
# serializer, for the purposes of presenting a form-like API onto the
|
|
|
|
# field values and field errors.
|
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def __iter__(self):
|
|
|
|
for field in self.fields.values():
|
2014-10-09 18:11:19 +04:00
|
|
|
yield self[field.field_name]
|
2012-10-22 18:12:25 +04:00
|
|
|
|
2014-10-09 18:11:19 +04:00
|
|
|
def __getitem__(self, key):
|
|
|
|
field = self.fields[key]
|
|
|
|
value = self.data.get(key)
|
|
|
|
error = self.errors.get(key) if hasattr(self, '_errors') else None
|
2014-10-10 17:16:09 +04:00
|
|
|
if isinstance(field, Serializer):
|
|
|
|
return NestedBoundField(field, value, error)
|
2014-10-09 18:11:19 +04:00
|
|
|
return BoundField(field, value, error)
|
2014-09-09 20:46:28 +04:00
|
|
|
|
2012-12-29 17:19:05 +04:00
|
|
|
|
2014-09-26 16:08:20 +04:00
|
|
|
# There's some replication of `ListField` here,
|
|
|
|
# but that's probably better than obfuscating the call hierarchy.
|
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
class ListSerializer(BaseSerializer):
|
|
|
|
child = None
|
2014-10-02 19:24:24 +04:00
|
|
|
many = True
|
2013-03-12 17:33:02 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.child = kwargs.pop('child', copy.deepcopy(self.child))
|
|
|
|
assert self.child is not None, '`child` is a required argument.'
|
2014-09-19 19:43:13 +04:00
|
|
|
assert not inspect.isclass(self.child), '`child` has not been instantiated.'
|
2014-08-29 19:46:26 +04:00
|
|
|
super(ListSerializer, self).__init__(*args, **kwargs)
|
2014-09-25 14:40:32 +04:00
|
|
|
self.child.bind(field_name='', parent=self)
|
2013-03-22 21:01:06 +04:00
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
def get_initial(self):
|
|
|
|
if self._initial_data is not None:
|
|
|
|
return self.to_representation(self._initial_data)
|
|
|
|
return ReturnList(serializer=self)
|
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def get_value(self, dictionary):
|
|
|
|
# We override the default field access in order to support
|
|
|
|
# lists in HTML forms.
|
2014-09-26 16:08:20 +04:00
|
|
|
if html.is_html_input(dictionary):
|
2014-08-29 19:46:26 +04:00
|
|
|
return html.parse_html_list(dictionary, prefix=self.field_name)
|
|
|
|
return dictionary.get(self.field_name, empty)
|
2013-03-19 18:26:48 +04:00
|
|
|
|
2014-09-12 12:49:35 +04:00
|
|
|
def to_internal_value(self, data):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
List of dicts of native values <- List of dicts of primitive datatypes.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
if html.is_html_input(data):
|
|
|
|
data = html.parse_html_list(data)
|
2014-09-12 12:49:35 +04:00
|
|
|
return [self.child.run_validation(item) for item in data]
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-09-12 12:49:35 +04:00
|
|
|
def to_representation(self, data):
|
2013-01-31 00:38:11 +04:00
|
|
|
"""
|
2014-08-29 19:46:26 +04:00
|
|
|
List of object instances -> List of dicts of primitive datatypes.
|
2013-01-31 00:38:11 +04:00
|
|
|
"""
|
2014-10-09 18:11:19 +04:00
|
|
|
iterable = data.all() if (hasattr(data, 'all')) else data
|
2014-10-02 19:24:24 +04:00
|
|
|
return ReturnList(
|
2014-10-09 18:11:19 +04:00
|
|
|
[self.child.to_representation(item) for item in iterable],
|
2014-10-02 19:24:24 +04:00
|
|
|
serializer=self
|
|
|
|
)
|
2013-01-31 21:06:23 +04:00
|
|
|
|
2014-08-29 19:46:26 +04:00
|
|
|
def create(self, attrs_list):
|
|
|
|
return [self.child.create(attrs) for attrs in attrs_list]
|
2013-01-31 21:06:23 +04:00
|
|
|
|
2014-09-09 20:46:28 +04:00
|
|
|
def __repr__(self):
|
|
|
|
return representation.list_repr(self, indent=1)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2014-10-02 19:24:24 +04:00
|
|
|
# ModelSerializer & HyperlinkedModelSerializer
|
|
|
|
# --------------------------------------------
|
|
|
|
|
2012-10-04 16:28:14 +04:00
|
|
|
class ModelSerializer(Serializer):
|
2014-09-24 17:09:49 +04:00
|
|
|
_field_mapping = ClassLookupDict({
|
2013-02-28 17:41:42 +04:00
|
|
|
models.AutoField: IntegerField,
|
2014-09-09 20:46:28 +04:00
|
|
|
models.BigIntegerField: IntegerField,
|
|
|
|
models.BooleanField: BooleanField,
|
|
|
|
models.CharField: CharField,
|
|
|
|
models.CommaSeparatedIntegerField: CharField,
|
|
|
|
models.DateField: DateField,
|
|
|
|
models.DateTimeField: DateTimeField,
|
|
|
|
models.DecimalField: DecimalField,
|
|
|
|
models.EmailField: EmailField,
|
2014-09-11 23:22:32 +04:00
|
|
|
models.Field: ModelField,
|
2014-09-09 20:46:28 +04:00
|
|
|
models.FileField: FileField,
|
|
|
|
models.FloatField: FloatField,
|
2014-09-10 11:53:33 +04:00
|
|
|
models.ImageField: ImageField,
|
2013-02-28 17:41:42 +04:00
|
|
|
models.IntegerField: IntegerField,
|
2014-09-23 17:30:17 +04:00
|
|
|
models.NullBooleanField: NullBooleanField,
|
2013-02-28 17:41:42 +04:00
|
|
|
models.PositiveIntegerField: IntegerField,
|
|
|
|
models.PositiveSmallIntegerField: IntegerField,
|
2014-09-09 20:46:28 +04:00
|
|
|
models.SlugField: SlugField,
|
|
|
|
models.SmallIntegerField: IntegerField,
|
|
|
|
models.TextField: CharField,
|
2014-09-02 20:41:23 +04:00
|
|
|
models.TimeField: TimeField,
|
|
|
|
models.URLField: URLField,
|
2014-09-24 17:09:49 +04:00
|
|
|
})
|
2014-09-18 14:20:56 +04:00
|
|
|
_related_class = PrimaryKeyRelatedField
|
2014-08-29 19:46:26 +04:00
|
|
|
|
2014-10-08 15:17:30 +04:00
|
|
|
def create(self, validated_attrs):
|
2014-10-22 13:32:32 +04:00
|
|
|
# Check that the user isn't trying to handle a writable nested field.
|
|
|
|
# If we don't do this explicitly they'd likely get a confusing
|
|
|
|
# error at the point of calling `Model.objects.create()`.
|
2014-10-16 23:45:18 +04:00
|
|
|
assert not any(
|
|
|
|
isinstance(field, BaseSerializer) and not field.read_only
|
|
|
|
for field in self.fields.values()
|
|
|
|
), (
|
|
|
|
'The `.create()` method does not suport nested writable fields '
|
|
|
|
'by default. Write an explicit `.create()` method for serializer '
|
2014-10-22 13:32:32 +04:00
|
|
|
'`%s.%s`, or set `read_only=True` on nested serializer fields.' %
|
|
|
|
(self.__class__.__module__, self.__class__.__name__)
|
2014-10-16 23:45:18 +04:00
|
|
|
)
|
|
|
|
|
2014-09-18 14:20:56 +04:00
|
|
|
ModelClass = self.Meta.model
|
2014-09-18 17:58:08 +04:00
|
|
|
|
2014-10-08 15:17:30 +04:00
|
|
|
# Remove many-to-many relationships from validated_attrs.
|
2014-09-18 17:58:08 +04:00
|
|
|
# They are not valid arguments to the default `.create()` method,
|
|
|
|
# as they require that the instance has already been saved.
|
|
|
|
info = model_meta.get_field_info(ModelClass)
|
|
|
|
many_to_many = {}
|
2014-09-18 18:47:27 +04:00
|
|
|
for field_name, relation_info in info.relations.items():
|
2014-10-08 15:17:30 +04:00
|
|
|
if relation_info.to_many and (field_name in validated_attrs):
|
|
|
|
many_to_many[field_name] = validated_attrs.pop(field_name)
|
2014-09-18 17:58:08 +04:00
|
|
|
|
2014-10-08 15:17:30 +04:00
|
|
|
instance = ModelClass.objects.create(**validated_attrs)
|
2014-09-18 17:58:08 +04:00
|
|
|
|
2014-09-18 18:47:27 +04:00
|
|
|
# Save many-to-many relationships after the instance is created.
|
2014-09-18 17:58:08 +04:00
|
|
|
if many_to_many:
|
2014-09-18 18:47:27 +04:00
|
|
|
for field_name, value in many_to_many.items():
|
|
|
|
setattr(instance, field_name, value)
|
2014-09-18 17:58:08 +04:00
|
|
|
|
|
|
|
return instance
|
2014-09-02 20:41:23 +04:00
|
|
|
|
2014-10-08 15:17:30 +04:00
|
|
|
def update(self, instance, validated_attrs):
|
2014-10-16 23:45:18 +04:00
|
|
|
assert not any(
|
|
|
|
isinstance(field, BaseSerializer) and not field.read_only
|
|
|
|
for field in self.fields.values()
|
|
|
|
), (
|
|
|
|
'The `.update()` method does not suport nested writable fields '
|
|
|
|
'by default. Write an explicit `.update()` method for serializer '
|
2014-10-22 13:32:32 +04:00
|
|
|
'`%s.%s`, or set `read_only=True` on nested serializer fields.' %
|
|
|
|
(self.__class__.__module__, self.__class__.__name__)
|
2014-10-16 23:45:18 +04:00
|
|
|
)
|
|
|
|
|
2014-10-08 15:17:30 +04:00
|
|
|
for attr, value in validated_attrs.items():
|
|
|
|
setattr(instance, attr, value)
|
|
|
|
instance.save()
|
|
|
|
return instance
|
2014-09-02 20:41:23 +04:00
|
|
|
|
2014-10-31 19:38:39 +03:00
|
|
|
def get_validators(self):
|
2014-09-29 14:23:02 +04:00
|
|
|
field_names = set([
|
|
|
|
field.source for field in self.fields.values()
|
|
|
|
if (field.source != '*') and ('.' not in field.source)
|
|
|
|
])
|
|
|
|
|
2014-10-31 19:38:39 +03:00
|
|
|
validators = getattr(getattr(self, 'Meta', None), 'validators', [])
|
2014-09-29 14:23:02 +04:00
|
|
|
model_class = self.Meta.model
|
|
|
|
|
2014-10-22 16:30:28 +04:00
|
|
|
# Note that we make sure to check `unique_together` both on the
|
|
|
|
# base model class, but also on any parent classes.
|
|
|
|
for parent_class in [model_class] + list(model_class._meta.parents.keys()):
|
2014-09-29 14:23:02 +04:00
|
|
|
for unique_together in parent_class._meta.unique_together:
|
|
|
|
if field_names.issuperset(set(unique_together)):
|
|
|
|
validator = UniqueTogetherValidator(
|
|
|
|
queryset=parent_class._default_manager,
|
|
|
|
fields=unique_together
|
|
|
|
)
|
|
|
|
validators.append(validator)
|
|
|
|
|
2014-10-28 19:21:49 +03:00
|
|
|
# Add any unique_for_date/unique_for_month/unique_for_year constraints.
|
2014-10-22 16:30:28 +04:00
|
|
|
info = model_meta.get_field_info(model_class)
|
|
|
|
for field_name, field in info.fields_and_pk.items():
|
|
|
|
if field.unique_for_date and field_name in field_names:
|
|
|
|
validator = UniqueForDateValidator(
|
|
|
|
queryset=model_class._default_manager,
|
|
|
|
field=field_name,
|
|
|
|
date_field=field.unique_for_date
|
|
|
|
)
|
|
|
|
validators.append(validator)
|
|
|
|
|
2014-10-22 19:29:09 +04:00
|
|
|
if field.unique_for_month and field_name in field_names:
|
|
|
|
validator = UniqueForMonthValidator(
|
|
|
|
queryset=model_class._default_manager,
|
|
|
|
field=field_name,
|
|
|
|
date_field=field.unique_for_month
|
|
|
|
)
|
|
|
|
validators.append(validator)
|
|
|
|
|
|
|
|
if field.unique_for_year and field_name in field_names:
|
|
|
|
validator = UniqueForYearValidator(
|
|
|
|
queryset=model_class._default_manager,
|
|
|
|
field=field_name,
|
|
|
|
date_field=field.unique_for_year
|
|
|
|
)
|
|
|
|
validators.append(validator)
|
|
|
|
|
2014-09-29 14:23:02 +04:00
|
|
|
return validators
|
|
|
|
|
2014-10-31 19:38:39 +03:00
|
|
|
def get_fields(self):
|
2014-09-18 14:20:56 +04:00
|
|
|
declared_fields = copy.deepcopy(self._declared_fields)
|
2014-08-29 19:46:26 +04:00
|
|
|
|
2014-09-10 19:57:22 +04:00
|
|
|
ret = SortedDict()
|
2014-09-18 14:20:56 +04:00
|
|
|
model = getattr(self.Meta, 'model')
|
|
|
|
fields = getattr(self.Meta, 'fields', None)
|
2014-10-10 17:16:09 +04:00
|
|
|
exclude = getattr(self.Meta, 'exclude', None)
|
2014-09-18 14:20:56 +04:00
|
|
|
depth = getattr(self.Meta, 'depth', 0)
|
2014-09-18 15:17:21 +04:00
|
|
|
extra_kwargs = getattr(self.Meta, 'extra_kwargs', {})
|
2014-09-18 14:20:56 +04:00
|
|
|
|
2014-10-10 18:08:43 +04:00
|
|
|
assert not (fields and exclude), "Cannot set both 'fields' and 'exclude'."
|
2014-10-10 17:16:09 +04:00
|
|
|
|
2014-10-08 19:09:37 +04:00
|
|
|
extra_kwargs = self._include_additional_options(extra_kwargs)
|
|
|
|
|
2014-09-18 14:20:56 +04:00
|
|
|
# Retrieve metadata about fields & relationships on the model class.
|
|
|
|
info = model_meta.get_field_info(model)
|
|
|
|
|
2014-10-28 19:21:49 +03:00
|
|
|
# Use the default set of field names if none is supplied explicitly.
|
2014-09-18 14:20:56 +04:00
|
|
|
if fields is None:
|
|
|
|
fields = self._get_default_field_names(declared_fields, info)
|
2014-10-08 19:09:37 +04:00
|
|
|
exclude = getattr(self.Meta, 'exclude', None)
|
|
|
|
if exclude is not None:
|
|
|
|
for field_name in exclude:
|
|
|
|
fields.remove(field_name)
|
2014-09-18 14:20:56 +04:00
|
|
|
|
2014-10-28 19:21:49 +03:00
|
|
|
# Determine the set of model fields, and the fields that they map to.
|
|
|
|
# We actually only need this to deal with the slightly awkward case
|
|
|
|
# of supporting `unique_for_date`/`unique_for_month`/`unique_for_year`.
|
|
|
|
model_field_mapping = {}
|
|
|
|
for field_name in fields:
|
|
|
|
if field_name in declared_fields:
|
|
|
|
field = declared_fields[field_name]
|
|
|
|
source = field.source or field_name
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
source = extra_kwargs[field_name]['source']
|
|
|
|
except KeyError:
|
|
|
|
source = field_name
|
|
|
|
# Model fields will always have a simple source mapping,
|
|
|
|
# they can't be nested attribute lookups.
|
|
|
|
if '.' not in source and source != '*':
|
|
|
|
model_field_mapping[source] = field_name
|
|
|
|
|
|
|
|
# Determine if we need any additional `HiddenField` or extra keyword
|
|
|
|
# arguments to deal with `unique_for` dates that are required to
|
|
|
|
# be in the input data in order to validate it.
|
|
|
|
unique_fields = {}
|
|
|
|
for model_field_name, field_name in model_field_mapping.items():
|
|
|
|
try:
|
|
|
|
model_field = model._meta.get_field(model_field_name)
|
|
|
|
except FieldDoesNotExist:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Deal with each of the `unique_for_*` cases.
|
|
|
|
for date_field_name in (
|
|
|
|
model_field.unique_for_date,
|
|
|
|
model_field.unique_for_month,
|
|
|
|
model_field.unique_for_year
|
|
|
|
):
|
|
|
|
if date_field_name is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Get the model field that is refered too.
|
|
|
|
date_field = model._meta.get_field(date_field_name)
|
|
|
|
|
|
|
|
if date_field.auto_now_add:
|
|
|
|
default = CreateOnlyDefault(timezone.now)
|
|
|
|
elif date_field.auto_now:
|
|
|
|
default = timezone.now
|
|
|
|
elif date_field.has_default():
|
|
|
|
default = model_field.default
|
|
|
|
else:
|
|
|
|
default = empty
|
|
|
|
|
|
|
|
if date_field_name in model_field_mapping:
|
|
|
|
# The corresponding date field is present in the serializer
|
|
|
|
if date_field_name not in extra_kwargs:
|
|
|
|
extra_kwargs[date_field_name] = {}
|
|
|
|
if default is empty:
|
|
|
|
if 'required' not in extra_kwargs[date_field_name]:
|
|
|
|
extra_kwargs[date_field_name]['required'] = True
|
|
|
|
else:
|
|
|
|
if 'default' not in extra_kwargs[date_field_name]:
|
|
|
|
extra_kwargs[date_field_name]['default'] = default
|
|
|
|
else:
|
|
|
|
# The corresponding date field is not present in the,
|
|
|
|
# serializer. We have a default to use for the date, so
|
|
|
|
# add in a hidden field that populates it.
|
|
|
|
unique_fields[date_field_name] = HiddenField(default=default)
|
|
|
|
|
|
|
|
# Now determine the fields that should be included on the serializer.
|
2014-09-18 14:20:56 +04:00
|
|
|
for field_name in fields:
|
|
|
|
if field_name in declared_fields:
|
|
|
|
# Field is explicitly declared on the class, use that.
|
|
|
|
ret[field_name] = declared_fields[field_name]
|
|
|
|
continue
|
|
|
|
|
|
|
|
elif field_name in info.fields_and_pk:
|
|
|
|
# Create regular model fields.
|
|
|
|
model_field = info.fields_and_pk[field_name]
|
2014-09-24 17:09:49 +04:00
|
|
|
field_cls = self._field_mapping[model_field]
|
2014-09-18 14:20:56 +04:00
|
|
|
kwargs = get_field_kwargs(field_name, model_field)
|
|
|
|
if 'choices' in kwargs:
|
|
|
|
# Fields with choices get coerced into `ChoiceField`
|
|
|
|
# instead of using their regular typed field.
|
|
|
|
field_cls = ChoiceField
|
|
|
|
if not issubclass(field_cls, ModelField):
|
|
|
|
# `model_field` is only valid for the fallback case of
|
|
|
|
# `ModelField`, which is used when no other typed field
|
|
|
|
# matched to the model field.
|
|
|
|
kwargs.pop('model_field', None)
|
2014-09-23 17:15:00 +04:00
|
|
|
if not issubclass(field_cls, CharField):
|
|
|
|
# `allow_blank` is only valid for textual fields.
|
|
|
|
kwargs.pop('allow_blank', None)
|
2014-09-18 14:20:56 +04:00
|
|
|
|
|
|
|
elif field_name in info.relations:
|
|
|
|
# Create forward and reverse relationships.
|
|
|
|
relation_info = info.relations[field_name]
|
|
|
|
if depth:
|
|
|
|
field_cls = self._get_nested_class(depth, relation_info)
|
|
|
|
kwargs = get_nested_relation_kwargs(relation_info)
|
|
|
|
else:
|
|
|
|
field_cls = self._related_class
|
|
|
|
kwargs = get_relation_kwargs(field_name, relation_info)
|
|
|
|
# `view_name` is only valid for hyperlinked relationships.
|
|
|
|
if not issubclass(field_cls, HyperlinkedRelatedField):
|
|
|
|
kwargs.pop('view_name', None)
|
2013-03-11 11:23:44 +04:00
|
|
|
|
2014-09-18 15:17:21 +04:00
|
|
|
elif hasattr(model, field_name):
|
|
|
|
# Create a read only field for model methods and properties.
|
|
|
|
field_cls = ReadOnlyField
|
|
|
|
kwargs = {}
|
2013-04-23 14:31:38 +04:00
|
|
|
|
2014-10-08 14:22:10 +04:00
|
|
|
elif field_name == api_settings.URL_FIELD_NAME:
|
|
|
|
# Create the URL field.
|
|
|
|
field_cls = HyperlinkedIdentityField
|
|
|
|
kwargs = get_url_kwargs(model)
|
|
|
|
|
2014-09-18 15:17:21 +04:00
|
|
|
else:
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
'Field name `%s` is not valid for model `%s`.' %
|
|
|
|
(field_name, model.__class__.__name__)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check that any fields declared on the class are
|
|
|
|
# also explicity included in `Meta.fields`.
|
|
|
|
missing_fields = set(declared_fields.keys()) - set(fields)
|
|
|
|
if missing_fields:
|
|
|
|
missing_field = list(missing_fields)[0]
|
|
|
|
raise ImproperlyConfigured(
|
|
|
|
'Field `%s` has been declared on serializer `%s`, but '
|
|
|
|
'is missing from `Meta.fields`.' %
|
|
|
|
(missing_field, self.__class__.__name__)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Populate any kwargs defined in `Meta.extra_kwargs`
|
2014-10-08 19:09:37 +04:00
|
|
|
extras = extra_kwargs.get(field_name, {})
|
|
|
|
if extras.get('read_only', False):
|
|
|
|
for attr in [
|
|
|
|
'required', 'default', 'allow_blank', 'allow_null',
|
|
|
|
'min_length', 'max_length', 'min_value', 'max_value',
|
2014-10-10 18:34:00 +04:00
|
|
|
'validators', 'queryset'
|
2014-10-08 19:09:37 +04:00
|
|
|
]:
|
|
|
|
kwargs.pop(attr, None)
|
|
|
|
kwargs.update(extras)
|
2014-09-18 15:17:21 +04:00
|
|
|
|
|
|
|
# Create the serializer field.
|
2014-09-18 14:20:56 +04:00
|
|
|
ret[field_name] = field_cls(**kwargs)
|
2014-05-22 23:51:20 +04:00
|
|
|
|
2014-10-28 19:21:49 +03:00
|
|
|
for field_name, field in unique_fields.items():
|
|
|
|
ret[field_name] = field
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
return ret
|
|
|
|
|
2014-10-08 19:09:37 +04:00
|
|
|
def _include_additional_options(self, extra_kwargs):
|
|
|
|
read_only_fields = getattr(self.Meta, 'read_only_fields', None)
|
|
|
|
if read_only_fields is not None:
|
|
|
|
for field_name in read_only_fields:
|
|
|
|
kwargs = extra_kwargs.get(field_name, {})
|
|
|
|
kwargs['read_only'] = True
|
|
|
|
extra_kwargs[field_name] = kwargs
|
|
|
|
|
|
|
|
# These are all pending deprecation.
|
|
|
|
write_only_fields = getattr(self.Meta, 'write_only_fields', None)
|
|
|
|
if write_only_fields is not None:
|
|
|
|
warnings.warn(
|
|
|
|
"The `Meta.write_only_fields` option is pending deprecation. "
|
|
|
|
"Use `Meta.extra_kwargs={<field_name>: {'write_only': True}}` instead.",
|
|
|
|
PendingDeprecationWarning,
|
|
|
|
stacklevel=3
|
|
|
|
)
|
|
|
|
for field_name in write_only_fields:
|
|
|
|
kwargs = extra_kwargs.get(field_name, {})
|
|
|
|
kwargs['write_only'] = True
|
|
|
|
extra_kwargs[field_name] = kwargs
|
|
|
|
|
|
|
|
view_name = getattr(self.Meta, 'view_name', None)
|
|
|
|
if view_name is not None:
|
|
|
|
warnings.warn(
|
|
|
|
"The `Meta.view_name` option is pending deprecation. "
|
|
|
|
"Use `Meta.extra_kwargs={'url': {'view_name': ...}}` instead.",
|
|
|
|
PendingDeprecationWarning,
|
|
|
|
stacklevel=3
|
|
|
|
)
|
2014-10-15 12:24:49 +04:00
|
|
|
kwargs = extra_kwargs.get(api_settings.URL_FIELD_NAME, {})
|
2014-10-08 19:09:37 +04:00
|
|
|
kwargs['view_name'] = view_name
|
|
|
|
extra_kwargs[api_settings.URL_FIELD_NAME] = kwargs
|
|
|
|
|
|
|
|
lookup_field = getattr(self.Meta, 'lookup_field', None)
|
|
|
|
if lookup_field is not None:
|
|
|
|
warnings.warn(
|
|
|
|
"The `Meta.lookup_field` option is pending deprecation. "
|
|
|
|
"Use `Meta.extra_kwargs={'url': {'lookup_field': ...}}` instead.",
|
|
|
|
PendingDeprecationWarning,
|
|
|
|
stacklevel=3
|
|
|
|
)
|
2014-10-15 12:24:49 +04:00
|
|
|
kwargs = extra_kwargs.get(api_settings.URL_FIELD_NAME, {})
|
2014-10-08 19:09:37 +04:00
|
|
|
kwargs['lookup_field'] = lookup_field
|
|
|
|
extra_kwargs[api_settings.URL_FIELD_NAME] = kwargs
|
|
|
|
|
|
|
|
return extra_kwargs
|
|
|
|
|
2014-09-18 14:20:56 +04:00
|
|
|
def _get_default_field_names(self, declared_fields, model_info):
|
|
|
|
return (
|
|
|
|
[model_info.pk.name] +
|
|
|
|
list(declared_fields.keys()) +
|
|
|
|
list(model_info.fields.keys()) +
|
|
|
|
list(model_info.forward_relations.keys())
|
|
|
|
)
|
2013-04-30 11:24:33 +04:00
|
|
|
|
2014-09-18 14:20:56 +04:00
|
|
|
def _get_nested_class(self, nested_depth, relation_info):
|
|
|
|
class NestedSerializer(ModelSerializer):
|
2012-11-13 15:47:32 +04:00
|
|
|
class Meta:
|
2014-09-18 14:20:56 +04:00
|
|
|
model = relation_info.related
|
|
|
|
depth = nested_depth
|
|
|
|
return NestedSerializer
|
2012-10-04 14:26:41 +04:00
|
|
|
|
|
|
|
|
|
|
|
class HyperlinkedModelSerializer(ModelSerializer):
|
2014-09-18 14:20:56 +04:00
|
|
|
_related_class = HyperlinkedRelatedField
|
|
|
|
|
|
|
|
def _get_default_field_names(self, declared_fields, model_info):
|
|
|
|
return (
|
|
|
|
[api_settings.URL_FIELD_NAME] +
|
|
|
|
list(declared_fields.keys()) +
|
|
|
|
list(model_info.fields.keys()) +
|
|
|
|
list(model_info.forward_relations.keys())
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_nested_class(self, nested_depth, relation_info):
|
|
|
|
class NestedSerializer(HyperlinkedModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = relation_info.related
|
|
|
|
depth = nested_depth
|
|
|
|
return NestedSerializer
|