-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathhandlers.py
52 lines (45 loc) · 1.4 KB
/
handlers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""OpenAPI core contrib falcon handlers module"""
from json import dumps
from falcon.constants import MEDIA_JSON
from falcon.status_codes import (
HTTP_400, HTTP_404, HTTP_405, HTTP_415,
)
from openapi_core.templating.media_types.exceptions import MediaTypeNotFound
from openapi_core.templating.paths.exceptions import (
ServerNotFound, OperationNotFound, PathNotFound,
)
class FalconOpenAPIErrorsHandler(object):
OPENAPI_ERROR_STATUS = {
ServerNotFound: 400,
OperationNotFound: 405,
PathNotFound: 404,
MediaTypeNotFound: 415,
}
FALCON_STATUS_CODES = {
400: HTTP_400,
404: HTTP_404,
405: HTTP_405,
415: HTTP_415,
}
@classmethod
def handle(cls, req, resp, errors):
data_errors = [
cls.format_openapi_error(err)
for err in errors
]
data = {
'errors': data_errors,
}
data_error_max = max(data_errors, key=lambda x: x['status'])
resp.content_type = MEDIA_JSON
resp.status = cls.FALCON_STATUS_CODES.get(
data_error_max['status'], HTTP_400)
resp.body = dumps(data)
resp.complete = True
@classmethod
def format_openapi_error(cls, error):
return {
'title': str(error),
'status': cls.OPENAPI_ERROR_STATUS.get(error.__class__, 400),
'class': str(type(error)),
}