mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: fix notes serializing in API document response (#9336)
This commit is contained in:
parent
955ff32dcd
commit
4d15544a3e
@ -43,6 +43,7 @@ from documents.models import CustomFieldInstance
|
|||||||
from documents.models import Document
|
from documents.models import Document
|
||||||
from documents.models import DocumentType
|
from documents.models import DocumentType
|
||||||
from documents.models import MatchingModel
|
from documents.models import MatchingModel
|
||||||
|
from documents.models import Note
|
||||||
from documents.models import PaperlessTask
|
from documents.models import PaperlessTask
|
||||||
from documents.models import SavedView
|
from documents.models import SavedView
|
||||||
from documents.models import SavedViewFilterRule
|
from documents.models import SavedViewFilterRule
|
||||||
@ -861,6 +862,22 @@ class CustomFieldInstanceSerializer(serializers.ModelSerializer):
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
class BasicUserSerializer(serializers.ModelSerializer):
|
||||||
|
# Different than paperless.serializers.UserSerializer
|
||||||
|
class Meta:
|
||||||
|
model = User
|
||||||
|
fields = ["id", "username", "first_name", "last_name"]
|
||||||
|
|
||||||
|
|
||||||
|
class NotesSerializer(serializers.ModelSerializer):
|
||||||
|
user = BasicUserSerializer()
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = Note
|
||||||
|
fields = ["id", "note", "created", "user"]
|
||||||
|
ordering = ["-created"]
|
||||||
|
|
||||||
|
|
||||||
class DocumentSerializer(
|
class DocumentSerializer(
|
||||||
OwnedObjectSerializer,
|
OwnedObjectSerializer,
|
||||||
NestedUpdateMixin,
|
NestedUpdateMixin,
|
||||||
@ -876,6 +893,8 @@ class DocumentSerializer(
|
|||||||
created_date = serializers.DateField(required=False)
|
created_date = serializers.DateField(required=False)
|
||||||
page_count = SerializerMethodField()
|
page_count = SerializerMethodField()
|
||||||
|
|
||||||
|
notes = NotesSerializer(many=True, required=False)
|
||||||
|
|
||||||
custom_fields = CustomFieldInstanceSerializer(
|
custom_fields = CustomFieldInstanceSerializer(
|
||||||
many=True,
|
many=True,
|
||||||
allow_null=False,
|
allow_null=False,
|
||||||
|
@ -2170,8 +2170,10 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
|
|||||||
GIVEN:
|
GIVEN:
|
||||||
- A document with a single note
|
- A document with a single note
|
||||||
WHEN:
|
WHEN:
|
||||||
|
- API request for document
|
||||||
- API request for document notes is made
|
- API request for document notes is made
|
||||||
THEN:
|
THEN:
|
||||||
|
- Note is included in the document response
|
||||||
- The associated note is returned
|
- The associated note is returned
|
||||||
"""
|
"""
|
||||||
doc = Document.objects.create(
|
doc = Document.objects.create(
|
||||||
@ -2185,6 +2187,18 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
|
|||||||
user=self.user,
|
user=self.user,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
response = self.client.get(
|
||||||
|
f"/api/documents/{doc.pk}/",
|
||||||
|
format="json",
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
|
||||||
|
resp_data = response.json()
|
||||||
|
self.assertEqual(len(resp_data["notes"]), 1)
|
||||||
|
self.assertEqual(resp_data["notes"][0]["note"], note.note)
|
||||||
|
self.assertEqual(resp_data["notes"][0]["user"]["username"], self.user.username)
|
||||||
|
|
||||||
response = self.client.get(
|
response = self.client.get(
|
||||||
f"/api/documents/{doc.pk}/notes/",
|
f"/api/documents/{doc.pk}/notes/",
|
||||||
format="json",
|
format="json",
|
||||||
|
@ -803,33 +803,6 @@ class DocumentViewSet(
|
|||||||
except (FileNotFoundError, Document.DoesNotExist):
|
except (FileNotFoundError, Document.DoesNotExist):
|
||||||
raise Http404
|
raise Http404
|
||||||
|
|
||||||
def getNotes(self, doc):
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
"id": c.pk,
|
|
||||||
"note": c.note,
|
|
||||||
"created": c.created,
|
|
||||||
"user": {
|
|
||||||
"id": c.user.id,
|
|
||||||
"username": c.user.username,
|
|
||||||
"first_name": c.user.first_name,
|
|
||||||
"last_name": c.user.last_name,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
for c in Note.objects.select_related("user")
|
|
||||||
.only(
|
|
||||||
"pk",
|
|
||||||
"note",
|
|
||||||
"created",
|
|
||||||
"user__id",
|
|
||||||
"user__username",
|
|
||||||
"user__first_name",
|
|
||||||
"user__last_name",
|
|
||||||
)
|
|
||||||
.filter(document=doc)
|
|
||||||
.order_by("-created")
|
|
||||||
]
|
|
||||||
|
|
||||||
@action(
|
@action(
|
||||||
methods=["get", "post", "delete"],
|
methods=["get", "post", "delete"],
|
||||||
detail=True,
|
detail=True,
|
||||||
@ -854,9 +827,11 @@ class DocumentViewSet(
|
|||||||
except Document.DoesNotExist:
|
except Document.DoesNotExist:
|
||||||
raise Http404
|
raise Http404
|
||||||
|
|
||||||
|
serializer = self.get_serializer(doc)
|
||||||
|
|
||||||
if request.method == "GET":
|
if request.method == "GET":
|
||||||
try:
|
try:
|
||||||
notes = self.getNotes(doc)
|
notes = serializer.to_representation(doc).get("notes")
|
||||||
return Response(notes)
|
return Response(notes)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.warning(f"An error occurred retrieving notes: {e!s}")
|
logger.warning(f"An error occurred retrieving notes: {e!s}")
|
||||||
@ -897,7 +872,7 @@ class DocumentViewSet(
|
|||||||
|
|
||||||
index.add_or_update_document(doc)
|
index.add_or_update_document(doc)
|
||||||
|
|
||||||
notes = self.getNotes(doc)
|
notes = serializer.to_representation(doc).get("notes")
|
||||||
|
|
||||||
return Response(notes)
|
return Response(notes)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@ -934,7 +909,9 @@ class DocumentViewSet(
|
|||||||
|
|
||||||
index.add_or_update_document(doc)
|
index.add_or_update_document(doc)
|
||||||
|
|
||||||
return Response(self.getNotes(doc))
|
notes = serializer.to_representation(doc).get("notes")
|
||||||
|
|
||||||
|
return Response(notes)
|
||||||
|
|
||||||
return Response(
|
return Response(
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user