Skip to content

Commit b5e0c91

Browse files
committed
Move getJsonBody next to loadJsonMessage; clarify notes for rest helpers
1 parent e389515 commit b5e0c91

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

synapse/lib/httpapi.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,6 @@ def isOrigHost(self, origin):
115115
def check_origin(self, origin):
116116
return self.isOrigHost(origin)
117117

118-
def getJsonBody(self, validator=None):
119-
return self.loadJsonMesg(self.request.body, validator=validator)
120-
121118
def sendRestErr(self, code: str, mesg: str, *, status_code: int | None =None) -> None:
122119
'''
123120
Sent a JSON REST error message with a code and message.
@@ -128,8 +125,8 @@ def sendRestErr(self, code: str, mesg: str, *, status_code: int | None =None) ->
128125
status_code: The HTTP status code. This is optional.
129126
130127
Notes:
131-
This does not set the HTTP status code by default. The default code of 200 will be
132-
used unless``self.set_status()`` is called prior to this or status_code argument is provided.
128+
If the status code is not provided or set prior to calling this API, the response
129+
will have an HTTP status code of 200.
133130
134131
This does write the response stream. No further content should be written
135132
in the response after calling this.
@@ -148,8 +145,8 @@ def sendRestExc(self, e: Exception, *, status_code: int | None = None) -> None:
148145
status_code: The HTTP status code. This is optional.
149146
150147
Notes:
151-
This does not set the HTTP status code by default. The default code of 200 will be
152-
used unless``self.set_status()`` is called prior to this or status_code argument is provided.
148+
If the status code is not provided or set prior to calling this API, the response
149+
will have an HTTP status code of 200.
153150
154151
This does write the response stream. No further content should be written
155152
in the response after calling this.
@@ -169,8 +166,8 @@ def sendRestRetn(self, valu, *, status_code: int | None = None) -> None:
169166
status_code: The HTTP status code. This is optional.
170167
171168
Notes:
172-
This does not set the HTTP status code by default. The default code of 200 will be
173-
used unless``self.set_status()`` is called prior to this or status_code argument is provided.
169+
If the status code is not provided or set prior to calling this API, the response
170+
will have an HTTP status code of 200.
174171
175172
This does write the response stream. No further content should be written
176173
in the response after calling this.
@@ -180,6 +177,9 @@ def sendRestRetn(self, valu, *, status_code: int | None = None) -> None:
180177
self.set_header('Content-Type', 'application/json')
181178
return self.write({'status': 'ok', 'result': valu})
182179

180+
def getJsonBody(self, validator=None):
181+
return self.loadJsonMesg(self.request.body, validator=validator)
182+
183183
def loadJsonMesg(self, byts, validator=None):
184184
try:
185185
item = s_json.loads(byts)

0 commit comments

Comments
 (0)