Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update HTTPAPI handlers to return non-200 status codes when errors occur (SYN-8734) #4169

Merged
merged 28 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c008f38
WIP - handle precondition errors in storm httpapi
vEpiphyte Feb 11, 2025
19b75ea
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 4, 2025
5a63fe1
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 4, 2025
232f1f3
WIP - Updated storm HTTP handlers to make sure we're sending non-200 …
vEpiphyte Mar 5, 2025
c2f15c9
Update ReqValidStormV1
vEpiphyte Mar 5, 2025
2260ab0
changelog
vEpiphyte Mar 5, 2025
1f08ba1
another type annotation
vEpiphyte Mar 5, 2025
3e72cc9
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 28, 2025
872335b
Move reqValidOpts to the StormHandler class
vEpiphyte Mar 28, 2025
a93d5c1
tighten up sendRestExc
vEpiphyte Mar 28, 2025
8263780
Push a status_code argument onto our rest helpers; provide some defau…
vEpiphyte Mar 28, 2025
1b86b9e
Status codes oh my
vEpiphyte Mar 28, 2025
2943468
Replace changelog
vEpiphyte Mar 28, 2025
15f2e21
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 28, 2025
2671668
fix lint errors
vEpiphyte Mar 28, 2025
e389515
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 28, 2025
b5e0c91
Move getJsonBody next to loadJsonMessage; clarify notes for rest helpers
vEpiphyte Mar 28, 2025
c84d55d
Apply suggestions from code review
vEpiphyte Mar 30, 2025
a872e27
Update to use http.HTTPStatus enums
vEpiphyte Mar 30, 2025
68bb43b
Apply suggestions from code review
vEpiphyte Mar 30, 2025
64c67ad
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 30, 2025
61a4ef9
Apply suggestions from code review
vEpiphyte Mar 31, 2025
eb9b7ff
Apply suggestions from code review
vEpiphyte Mar 31, 2025
0902a77
Update coverage
vEpiphyte Mar 31, 2025
c5c8ac8
Add schema for LoginV1 body
vEpiphyte Mar 31, 2025
e807a1c
fix long lines
vEpiphyte Mar 31, 2025
a13510b
Handle storm preconditions which throw exceptions for AuthDeny and No…
vEpiphyte Mar 31, 2025
780f4f5
Merge branch 'master' into epiphyte-storm-http-errs
vEpiphyte Mar 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changes/5bc9697951b7c5b83a6bced86e256a10.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
desc: Update Synapse HTTP APIs to set a non-200 HTTP status code when errors are
returned. This does not apply to the ``api/v1/login`` endpoint.
prs: []
type: bug
...
8 changes: 4 additions & 4 deletions synapse/axon.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ async def _setSha256Headers(self, sha256b):

self.blobsize = await self.getAxon().size(sha256b)
if self.blobsize is None:
self.set_status(404)
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}')
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}',
status_code=s_httpapi.HTTPStatus.NOT_FOUND)
return False

status = 200
Expand Down Expand Up @@ -260,8 +260,8 @@ async def delete(self, sha256):

sha256b = s_common.uhex(sha256)
if not await self.getAxon().has(sha256b):
self.set_status(404)
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}')
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}',
status_code=s_httpapi.HTTPStatus.NOT_FOUND)
return

resp = await self.getAxon().del_(sha256b)
Expand Down
7 changes: 2 additions & 5 deletions synapse/lib/aha.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,9 @@ async def post(self):
url = await self.cell.addAhaSvcProv(name, provinfo=provinfo)
except asyncio.CancelledError: # pragma: no cover
raise
except s_exc.SynErr as e:
logger.exception(f'Error provisioning {name}')
return self.sendRestErr(e.__class__.__name__, e.get('mesg', str(e)))
except Exception as e: # pragma: no cover
except Exception as e:
logger.exception(f'Error provisioning {name}')
return self.sendRestErr(e.__class__.__name__, str(e))
return self.sendRestExc(e, status_code=s_httpapi.HTTPStatus.BAD_REQUEST)
return self.sendRestRetn({'url': url})

_getAhaSvcSchema = {
Expand Down
Loading