diff --git a/arkindex/documents/serializers/elements.py b/arkindex/documents/serializers/elements.py index e8c014777a2254bd2db1f2bf490beb3157ca2c6c..67eeb6194ed087b63255bc47b1f5717fc6bab546 100644 --- a/arkindex/documents/serializers/elements.py +++ b/arkindex/documents/serializers/elements.py @@ -693,6 +693,7 @@ class ElementCreateSerializer(ElementLightSerializer): image = serializers.PrimaryKeyRelatedField( queryset=Image.objects.using("default").all().select_related("server"), required=False, + allow_null=True, help_text="Link this element to an image by UUID via a polygon.", style={"base_template": "input.html"}, ) @@ -704,6 +705,7 @@ class ElementCreateSerializer(ElementLightSerializer): ) polygon = LinearRingField( required=False, + allow_null=True, help_text="Set the polygon linking this element to the image. " "Either `image` must be set, or a `parent` element with an image must be set, to use a polygon. " "Defaults to a rectangle taking up the whole image.", diff --git a/arkindex/documents/tests/test_create_elements.py b/arkindex/documents/tests/test_create_elements.py index d0baa1de54ce0e4684ef83cfc1745c6eda1a3752..7dee5d25fa12c60e5d6b672c2190dc271bec7a59 100644 --- a/arkindex/documents/tests/test_create_elements.py +++ b/arkindex/documents/tests/test_create_elements.py @@ -546,6 +546,32 @@ class TestCreateElements(FixtureAPITestCase): "confidence": [expected_message] }) + def test_null_image_polygon(self): + """ + Null values on `image` and `polygon` should be treated like the fields are absent from the payload + """ + self.client.force_login(self.user) + + with self.assertNumQueries(7): + response = self.client.post( + reverse("api:elements-create"), + { + "corpus": str(self.corpus.id), + "name": "Castle story", + "type": "act", + "image": None, + "polygon": None, + }, + format="json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + + act = Element.objects.get(id=response.json()["id"]) + self.assertEqual(act.name, "Castle story") + self.assertEqual(act.type, self.act_type) + self.assertIsNone(act.image_id) + self.assertIsNone(act.polygon) + def test_worker_run_local(self): """ A regular user can create an element with a WorkerRun of their own local process diff --git a/arkindex/project/serializer_fields.py b/arkindex/project/serializer_fields.py index 9a16ad44029637872353df68fbffa3d2cd303430..ae54759c6e70755db6b3232f3f56a2c451df5c8f 100644 --- a/arkindex/project/serializer_fields.py +++ b/arkindex/project/serializer_fields.py @@ -62,6 +62,10 @@ class LinearRingField(serializers.ListField): def run_validation(self, data): value = super().run_validation(data) + # Ignore nothingness + if value is None: + return + # Ensure the LineString is closed if value[0] != value[-1]: value.append(value[0])