feat(backend): wire parse-837/parse-835 to persist to InMemoryStore

This commit is contained in:
Tyler
2026-06-19 19:25:23 -06:00
parent ca645db518
commit 86e69d5b95
2 changed files with 107 additions and 0 deletions
+26
View File
@@ -17,6 +17,7 @@ from __future__ import annotations
import json
import logging
import uuid
from typing import Any, Iterator
from fastapi import FastAPI, File, HTTPException, Query, Request, UploadFile
@@ -32,6 +33,7 @@ from cyclone.parsers.payer import PayerConfig, PayerConfig835
from cyclone.parsers.parse_837 import parse
from cyclone.parsers.parse_835 import parse as parse_835
from cyclone.parsers.validator_835 import validate as validate_835
from cyclone.store import BatchRecord, store, utcnow
log = logging.getLogger(__name__)
@@ -195,11 +197,24 @@ async def parse_837(
if _has_claim_validation_errors(result):
# Per spec: 422 when claims failed validation.
# Body still includes the full ParseResult so the client can show errors.
# Validation-failed parses are NOT persisted (the data is suspect);
# only parses that survive validation end up in the store.
return JSONResponse(
status_code=422,
content=json.loads(result.model_dump_json()),
)
# Persist the cleaned-up result so the cleaned result is what clients
# retrieve via /api/batches/{id}.
rec = BatchRecord(
id=uuid.uuid4().hex,
kind="837p",
input_filename=file.filename or "upload.txt",
parsed_at=utcnow(),
result=result,
)
store.add(rec)
if _client_wants_json(request):
return JSONResponse(content=json.loads(result.model_dump_json()))
@@ -321,6 +336,17 @@ async def parse_835_endpoint(
content=json.loads(result.model_dump_json()),
)
# Persist the cleaned-up result so the cleaned result is what clients
# retrieve via /api/batches/{id}.
rec = BatchRecord(
id=uuid.uuid4().hex,
kind="835",
input_filename=file.filename or "upload.txt",
parsed_at=utcnow(),
result=result,
)
store.add(rec)
if _client_wants_json(request):
return JSONResponse(content=json.loads(result.model_dump_json()))