Skip to content

Commit d5d2cd6

Browse files
committed
feat: add 422 response for unprocessable entity in API endpoints
feat: add 422 response for unprocessable entity in API endpoints
1 parent 240fb34 commit d5d2cd6

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

admin-api-lib/openapi.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ paths:
6464
description: ok
6565
"400":
6666
description: Bad request
67+
"422":
68+
description: If no text has been extracted from the file.
6769
"500":
6870
description: Internal server error
6971
tags:

admin-api-lib/src/admin_api_lib/apis/admin_api.py

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from admin_api_lib.apis.admin_api_base import BaseAdminApi
1212
from admin_api_lib.models.document_status import DocumentStatus
1313

14+
1415
router = APIRouter()
1516

1617
ns_pkg = admin_api_lib.impl
@@ -129,6 +130,7 @@ async def load_confluence_post() -> None:
129130
responses={
130131
200: {"description": "ok"},
131132
400: {"description": "Bad request"},
133+
422: {"description": "If no text has been extracted from the file."},
132134
500: {"description": "Internal server error"},
133135
},
134136
tags=["admin"],

admin-api-lib/src/admin_api_lib/impl/api_endpoints/default_document_uploader.py

+4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,10 @@ async def _aparse_document(
161161
self._key_value_store.upsert(filename, Status.PROCESSING)
162162

163163
information_pieces = self._document_extractor.extract_from_file_post(ExtractionRequest(path_on_s3=filename))
164+
if not information_pieces:
165+
self._key_value_store.upsert(filename, Status.ERROR)
166+
logger.error("No information pieces found in the document: %s", filename)
167+
raise HTTPException(status_code=status.HTTP_422_UNPROCESSABLE_ENTITY, detail="No information pieces found")
164168
documents = [self._information_mapper.extractor_information_piece2document(x) for x in information_pieces]
165169
host_base_url = str(request.base_url)
166170
document_url = f"{host_base_url.rstrip('/')}/document_reference/{urllib.parse.quote_plus(filename)}"

0 commit comments

Comments
 (0)