@@ -115,9 +115,6 @@ def isOrigHost(self, origin):
115
115
def check_origin (self , origin ):
116
116
return self .isOrigHost (origin )
117
117
118
- def getJsonBody (self , validator = None ):
119
- return self .loadJsonMesg (self .request .body , validator = validator )
120
-
121
118
def sendRestErr (self , code : str , mesg : str , * , status_code : int | None = None ) -> None :
122
119
'''
123
120
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) ->
128
125
status_code: The HTTP status code. This is optional.
129
126
130
127
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 .
133
130
134
131
This does write the response stream. No further content should be written
135
132
in the response after calling this.
@@ -148,8 +145,8 @@ def sendRestExc(self, e: Exception, *, status_code: int | None = None) -> None:
148
145
status_code: The HTTP status code. This is optional.
149
146
150
147
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 .
153
150
154
151
This does write the response stream. No further content should be written
155
152
in the response after calling this.
@@ -169,8 +166,8 @@ def sendRestRetn(self, valu, *, status_code: int | None = None) -> None:
169
166
status_code: The HTTP status code. This is optional.
170
167
171
168
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 .
174
171
175
172
This does write the response stream. No further content should be written
176
173
in the response after calling this.
@@ -180,6 +177,9 @@ def sendRestRetn(self, valu, *, status_code: int | None = None) -> None:
180
177
self .set_header ('Content-Type' , 'application/json' )
181
178
return self .write ({'status' : 'ok' , 'result' : valu })
182
179
180
+ def getJsonBody (self , validator = None ):
181
+ return self .loadJsonMesg (self .request .body , validator = validator )
182
+
183
183
def loadJsonMesg (self , byts , validator = None ):
184
184
try :
185
185
item = s_json .loads (byts )
0 commit comments