mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
81 lines
2.0 KiB
Python
Executable File
81 lines
2.0 KiB
Python
Executable File
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"
|
|
)
|