Fix: update document modified time on note creation / deletion (#4374)

* Update document modified on add or delete notes

* Add document extra endpoints info to docs
This commit is contained in:
shamoon 2023-10-14 16:24:13 -07:00 committed by GitHub
parent 01af725d79
commit 99f260225a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 5 deletions

View File

@ -6,7 +6,7 @@ provides a browsable API for most of its endpoints, which you can
inspect at `http://<paperless-host>:<port>/api/`. This also documents inspect at `http://<paperless-host>:<port>/api/`. This also documents
most of the available filters and ordering fields. most of the available filters and ordering fields.
The API provides 7 main endpoints: The API provides the following main endpoints:
- `/api/documents/`: Full CRUD support, except POSTing new documents. - `/api/documents/`: Full CRUD support, except POSTing new documents.
See below. See below.
@ -19,6 +19,7 @@ The API provides 7 main endpoints:
- `/api/mail_rules/`: Full CRUD support. - `/api/mail_rules/`: Full CRUD support.
- `/api/users/`: Full CRUD support. - `/api/users/`: Full CRUD support.
- `/api/groups/`: Full CRUD support. - `/api/groups/`: Full CRUD support.
- `/api/share_links/`: Full CRUD support.
All of these endpoints except for the logging endpoint allow you to All of these endpoints except for the logging endpoint allow you to
fetch (and edit and delete where appropriate) individual objects by fetch (and edit and delete where appropriate) individual objects by
@ -47,6 +48,7 @@ fields:
Read-only. Read-only.
- `archived_file_name`: Verbose filename of the archived document. - `archived_file_name`: Verbose filename of the archived document.
Read-only. Null if no archived document is available. Read-only. Null if no archived document is available.
- `notes`: Array of notes associated with the document.
- `set_permissions`: Allows setting document permissions. Optional, - `set_permissions`: Allows setting document permissions. Optional,
write-only. See [below](#permissions). write-only. See [below](#permissions).
@ -124,6 +126,11 @@ File metadata is reported as a list of objects in the following form:
depends on the file type and the metadata available in that specific depends on the file type and the metadata available in that specific
document. Paperless only reports PDF metadata at this point. document. Paperless only reports PDF metadata at this point.
## Documents additional endpoints
- `/api/documents/<id>/notes/`: Retrieve notes for a document.
- `/api/documents/<id>/share_links/`: Retrieve share links for a document.
## Authorization ## Authorization
The REST api provides three different forms of authentication. The REST api provides three different forms of authentication.

View File

@ -2354,13 +2354,18 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
WHEN: WHEN:
- API request is made to add a note - API request is made to add a note
THEN: THEN:
- note is created and associated with document - note is created and associated with document, modified time is updated
""" """
doc = Document.objects.create( doc = Document.objects.create(
title="test", title="test",
mime_type="application/pdf", mime_type="application/pdf",
content="this is a document which will have notes added", content="this is a document which will have notes added",
created=timezone.now() - timedelta(days=1),
) )
# set to yesterday
doc.modified = timezone.now() - timedelta(days=1)
self.assertEqual(doc.modified.day, (timezone.now() - timedelta(days=1)).day)
resp = self.client.post( resp = self.client.post(
f"/api/documents/{doc.pk}/notes/", f"/api/documents/{doc.pk}/notes/",
data={"note": "this is a posted note"}, data={"note": "this is a posted note"},
@ -2382,6 +2387,10 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
self.assertEqual(resp_data["note"], "this is a posted note") self.assertEqual(resp_data["note"], "this is a posted note")
doc = Document.objects.get(pk=doc.pk)
# modified was updated to today
self.assertEqual(doc.modified.day, timezone.now().day)
def test_notes_permissions_aware(self): def test_notes_permissions_aware(self):
""" """
GIVEN: GIVEN:
@ -2441,17 +2450,21 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
def test_delete_note(self): def test_delete_note(self):
""" """
GIVEN: GIVEN:
- Existing document - Existing document, existing note
WHEN: WHEN:
- API request is made to add a note - API request is made to delete a note
THEN: THEN:
- note is created and associated with document - note is deleted, document modified is updated
""" """
doc = Document.objects.create( doc = Document.objects.create(
title="test", title="test",
mime_type="application/pdf", mime_type="application/pdf",
content="this is a document which will have notes!", content="this is a document which will have notes!",
created=timezone.now() - timedelta(days=1),
) )
# set to yesterday
doc.modified = timezone.now() - timedelta(days=1)
self.assertEqual(doc.modified.day, (timezone.now() - timedelta(days=1)).day)
note = Note.objects.create( note = Note.objects.create(
note="This is a note.", note="This is a note.",
document=doc, document=doc,
@ -2466,6 +2479,9 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(len(Note.objects.all()), 0) self.assertEqual(len(Note.objects.all()), 0)
doc = Document.objects.get(pk=doc.pk)
# modified was updated to today
self.assertEqual(doc.modified.day, timezone.now().day)
def test_get_notes_no_doc(self): def test_get_notes_no_doc(self):
""" """

View File

@ -522,6 +522,9 @@ class DocumentViewSet(
) )
c.save() c.save()
doc.modified = timezone.now()
doc.save()
from documents import index from documents import index
index.add_or_update_document(self.get_object()) index.add_or_update_document(self.get_object())
@ -545,6 +548,9 @@ class DocumentViewSet(
note = Note.objects.get(id=int(request.GET.get("id"))) note = Note.objects.get(id=int(request.GET.get("id")))
note.delete() note.delete()
doc.modified = timezone.now()
doc.save()
from documents import index from documents import index
index.add_or_update_document(self.get_object()) index.add_or_update_document(self.get_object())