mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
added filenames to the API #108
This commit is contained in:
parent
35c3d5c0b5
commit
87fa118de0
47
docs/api.rst
47
docs/api.rst
@ -13,9 +13,9 @@ available filters and ordering fields.
|
|||||||
|
|
||||||
The API provides 5 main endpoints:
|
The API provides 5 main endpoints:
|
||||||
|
|
||||||
|
* ``/api/documents/``: Full CRUD support, except POSTing new documents. See below.
|
||||||
* ``/api/correspondents/``: Full CRUD support.
|
* ``/api/correspondents/``: Full CRUD support.
|
||||||
* ``/api/document_types/``: Full CRUD support.
|
* ``/api/document_types/``: Full CRUD support.
|
||||||
* ``/api/documents/``: Full CRUD support, except POSTing new documents. See below.
|
|
||||||
* ``/api/logs/``: Read-Only.
|
* ``/api/logs/``: Read-Only.
|
||||||
* ``/api/tags/``: Full CRUD support.
|
* ``/api/tags/``: Full CRUD support.
|
||||||
|
|
||||||
@ -23,13 +23,45 @@ All of these endpoints except for the logging endpoint
|
|||||||
allow you to fetch, edit and delete individual objects
|
allow you to fetch, edit and delete individual objects
|
||||||
by appending their primary key to the path, for example ``/api/documents/454/``.
|
by appending their primary key to the path, for example ``/api/documents/454/``.
|
||||||
|
|
||||||
|
The objects served by the document endpoint contain the following fields:
|
||||||
|
|
||||||
|
* ``id``: ID of the document. Read-only.
|
||||||
|
* ``title``: Title of the document.
|
||||||
|
* ``content``: Plain text content of the document.
|
||||||
|
* ``tags``: List of IDs of tags assigned to this document, or empty list.
|
||||||
|
* ``document_type``: Document type of this document, or null.
|
||||||
|
* ``correspondent``: Correspondent of this document or null.
|
||||||
|
* ``created``: The date at which this document was created.
|
||||||
|
* ``modified``: The date at which this document was last edited in paperless. Read-only.
|
||||||
|
* ``added``: The date at which this document was added to paperless. Read-only.
|
||||||
|
* ``archive_serial_number``: The identifier of this document in a physical document archive.
|
||||||
|
* ``original_file_name``: Verbose filename of the original document. Read-only.
|
||||||
|
* ``archived_file_name``: Verbose filename of the archived document. Read-only. Null if no archived document is available.
|
||||||
|
|
||||||
|
|
||||||
|
Downloading documents
|
||||||
|
#####################
|
||||||
|
|
||||||
In addition to that, the document endpoint offers these additional actions on
|
In addition to that, the document endpoint offers these additional actions on
|
||||||
individual documents:
|
individual documents:
|
||||||
|
|
||||||
* ``/api/documents/<pk>/download/``: Download the original document.
|
* ``/api/documents/<pk>/download/``: Download the document.
|
||||||
* ``/api/documents/<pk>/thumb/``: Download the PNG thumbnail of a document.
|
* ``/api/documents/<pk>/preview/``: Display the document inline,
|
||||||
* ``/api/documents/<pk>/preview/``: Display the original document inline,
|
|
||||||
without downloading it.
|
without downloading it.
|
||||||
|
* ``/api/documents/<pk>/thumb/``: Download the PNG thumbnail of a document.
|
||||||
|
|
||||||
|
Paperless generates archived PDF/A documents from consumed files and stores both
|
||||||
|
the original files as well as the archived files. By default, the endpoints
|
||||||
|
for previews and downloads serve the archived file, if it is available.
|
||||||
|
Otherwise, the original file is served.
|
||||||
|
Some document cannot be archived.
|
||||||
|
|
||||||
|
The endpoints correctly serve the response header fields ``Content-Disposition``
|
||||||
|
and ``Content-Type`` to indicate the filename for download and the type of content of
|
||||||
|
the document.
|
||||||
|
|
||||||
|
In order to download or preview the original document when an archied document is available,
|
||||||
|
supply the query parameter ``original=true``.
|
||||||
|
|
||||||
.. hint::
|
.. hint::
|
||||||
|
|
||||||
@ -38,13 +70,6 @@ individual documents:
|
|||||||
are in place. However, if you use these old URLs to access documents, you
|
are in place. However, if you use these old URLs to access documents, you
|
||||||
should update your app or script to use the new URLs.
|
should update your app or script to use the new URLs.
|
||||||
|
|
||||||
.. note::
|
|
||||||
|
|
||||||
The document endpoint provides tags, document types and correspondents as
|
|
||||||
ids in their corresponding fields. These are writeable. Paperless also
|
|
||||||
offers read-only objects for assigned tags, types and correspondents,
|
|
||||||
however, these might be removed in the future. As for now, the front end
|
|
||||||
requires them.
|
|
||||||
|
|
||||||
Authorization
|
Authorization
|
||||||
#############
|
#############
|
||||||
|
@ -50,7 +50,12 @@ class DocumentTypeAdmin(admin.ModelAdmin):
|
|||||||
class DocumentAdmin(admin.ModelAdmin):
|
class DocumentAdmin(admin.ModelAdmin):
|
||||||
|
|
||||||
search_fields = ("correspondent__name", "title", "content", "tags__name")
|
search_fields = ("correspondent__name", "title", "content", "tags__name")
|
||||||
readonly_fields = ("added", "mime_type", "storage_type", "filename")
|
readonly_fields = (
|
||||||
|
"added",
|
||||||
|
"modified",
|
||||||
|
"mime_type",
|
||||||
|
"storage_type",
|
||||||
|
"filename")
|
||||||
|
|
||||||
list_display_links = ("title",)
|
list_display_links = ("title",)
|
||||||
|
|
||||||
|
@ -174,6 +174,7 @@ class Document(models.Model):
|
|||||||
|
|
||||||
created = models.DateTimeField(
|
created = models.DateTimeField(
|
||||||
default=timezone.now, db_index=True)
|
default=timezone.now, db_index=True)
|
||||||
|
|
||||||
modified = models.DateTimeField(
|
modified = models.DateTimeField(
|
||||||
auto_now=True, editable=False, db_index=True)
|
auto_now=True, editable=False, db_index=True)
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import magic
|
import magic
|
||||||
from pathvalidate import validate_filename, ValidationError
|
from pathvalidate import validate_filename, ValidationError
|
||||||
from rest_framework import serializers
|
from rest_framework import serializers
|
||||||
|
from rest_framework.fields import SerializerMethodField
|
||||||
|
|
||||||
from .models import Correspondent, Tag, Document, Log, DocumentType
|
from .models import Correspondent, Tag, Document, Log, DocumentType
|
||||||
from .parsers import is_mime_type_supported
|
from .parsers import is_mime_type_supported
|
||||||
@ -83,6 +84,18 @@ class DocumentSerializer(serializers.ModelSerializer):
|
|||||||
tags = TagsField(many=True)
|
tags = TagsField(many=True)
|
||||||
document_type = DocumentTypeField(allow_null=True)
|
document_type = DocumentTypeField(allow_null=True)
|
||||||
|
|
||||||
|
original_file_name = SerializerMethodField()
|
||||||
|
archived_file_name = SerializerMethodField()
|
||||||
|
|
||||||
|
def get_original_file_name(self, obj):
|
||||||
|
return obj.get_public_filename()
|
||||||
|
|
||||||
|
def get_archived_file_name(self, obj):
|
||||||
|
if obj.archive_checksum:
|
||||||
|
return obj.get_public_filename(archive=True)
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Document
|
model = Document
|
||||||
depth = 1
|
depth = 1
|
||||||
@ -96,7 +109,9 @@ class DocumentSerializer(serializers.ModelSerializer):
|
|||||||
"created",
|
"created",
|
||||||
"modified",
|
"modified",
|
||||||
"added",
|
"added",
|
||||||
"archive_serial_number"
|
"archive_serial_number",
|
||||||
|
"original_file_name",
|
||||||
|
"archived_file_name",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user