from rest_framework import serializers from .models import Correspondent, Tag, Document, Log, DocumentType class CorrespondentSerializer(serializers.HyperlinkedModelSerializer): class Meta(object): model = Correspondent fields = ("id", "slug", "name", "automatic_classification") class DocumentTypeSerializer(serializers.HyperlinkedModelSerializer): class Meta(object): model = DocumentType fields = ("id", "slug", "name") class TagSerializer(serializers.HyperlinkedModelSerializer): class Meta(object): model = Tag fields = ( "id", "slug", "name", "colour", "automatic_classification") class CorrespondentField(serializers.HyperlinkedRelatedField): def get_queryset(self): return Correspondent.objects.all() class TagsField(serializers.HyperlinkedRelatedField): def get_queryset(self): return Tag.objects.all() class DocumentTypeField(serializers.HyperlinkedRelatedField): def get_queryset(self): return DocumentType.objects.all() class DocumentSerializer(serializers.ModelSerializer): correspondent = CorrespondentField( view_name="drf:correspondent-detail", allow_null=True) tags = TagsField(view_name="drf:tag-detail", many=True) document_type = DocumentTypeField( view_name="drf:documenttype-detail", allow_null=True) class Meta(object): model = Document fields = ( "id", "correspondent", "document_type", "title", "content", "file_type", "tags", "checksum", "created", "modified", "file_name", "download_url", "thumbnail_url", ) class LogSerializer(serializers.ModelSerializer): time = serializers.DateTimeField() messages = serializers.CharField() class Meta(object): model = Log fields = ( "time", "messages" )