-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapistar_pydantic.py
316 lines (239 loc) · 9.88 KB
/
apistar_pydantic.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import re
from inspect import Parameter, signature
from typing import List, Type
from apistar import (
codecs, exceptions, validators, http, types,
Route as _Route,
)
from apistar.conneg import negotiate_content_type
from apistar.server.components import Component
from apistar.http import (
PathParams, QueryParams, Body, Headers,
)
from apistar.document import Field
try:
import pydantic
except ImportError:
pydantic = None
__ALL__ = [
'QueryParam', 'PathParam', 'BodyData', 'DictQueryData',
'Route', 'components'
]
if pydantic:
__ALL__.extend([
'PydanticBodyData', 'PyDanticQueryData'
])
class ParamData:
def __getitem__(self, type_cls):
return type(type_cls.__name__, (type_cls, self.__class__), {})
class _QueryParam(ParamData):
"""Annotation for parameters received in the query string."""
class _PathParam(ParamData):
"""Annotation for parameters received in the path."""
class _BodyData(ParamData):
"""Annotation for parameters received in the body data.
These parameters are poorly described in the generated schema and
documentation.
"""
class _DictQueryData(ParamData):
"""Annotation for dict like parameters received in the query string.
These parameters aren't documentable in the generated schema and
documentation.
"""
QueryParam = _QueryParam()
PathParam = _PathParam()
BodyData = _BodyData()
DictQueryData = _DictQueryData()
if pydantic:
class _PydanticBodyData(_BodyData):
"""Annotation for pydantic parameters received in the body data."""
class _PydanticQueryData(_DictQueryData):
"""Annotation for pydantic parameters received in the query string."""
PydanticBodyData = _PydanticBodyData()
PydanticQueryData = _PydanticQueryData()
class Route(_Route):
def generate_fields(self, url, method, handler):
if not self.documented:
return []
fields = []
for name, param in signature(handler).parameters.items():
if issubclass(param.annotation, _PathParam):
if issubclass(param.annotation, int):
validator_cls = validators.Integer
elif issubclass(param.annotation, float):
validator_cls = validators.Number
elif issubclass(param.annotation, str):
validator_cls = validators.String
else:
raise exceptions.ConfigurationError(
f"Cannot handle {name} of {handler}")
location = 'path'
schema = validator_cls()
field = Field(name=name, location=location, schema=schema)
fields.append(field)
elif issubclass(param.annotation, _QueryParam):
if param.default is param.empty:
kwargs = {}
elif param.default is None:
# TODO handle Optional
kwargs = {'default': None, 'allow_null': True}
else:
kwargs = {'default': param.default}
if issubclass(param.annotation, int):
validator_cls = validators.Integer
elif issubclass(param.annotation, float):
validator_cls = validators.Number
elif issubclass(param.annotation, str):
validator_cls = validators.String
elif getattr(param.annotation, '__bool__', None):
validator_cls = validators.Boolean
else:
raise exceptions.ConfigurationError(
f"Cannot handle {name} of {handler}")
location = 'query'
schema = validator_cls(**kwargs)
field = Field(name=name, location=location, schema=schema)
fields.append(field)
elif issubclass(param.annotation, _BodyData):
location = 'body'
schema = validators.Object()
field = Field(name=name, location=location, schema=schema)
fields.append(field)
elif issubclass(param.annotation, ParamData):
raise exceptions.ConfigurationError(
f"{param.annotation} do not support documentation.")
else:
# fallback to original generate_fields() method
path_names = [
item.strip('{}').lstrip('+')
for item in re.findall('{[^}]*}', url)
]
if name in path_names:
schema = {
param.empty: None,
int: validators.Integer(),
float: validators.Number(),
str: validators.String()
}[param.annotation]
field = Field(name=name, location='path', schema=schema)
fields.append(field)
elif param.annotation in (param.empty, int, float, bool, str,
http.QueryParam):
if param.default is param.empty:
kwargs = {}
elif param.default is None:
kwargs = {'default': None, 'allow_null': True}
else:
kwargs = {'default': param.default}
schema = {
param.empty: None,
int: validators.Integer(**kwargs),
float: validators.Number(**kwargs),
bool: validators.Boolean(**kwargs),
str: validators.String(**kwargs),
http.QueryParam: validators.String(**kwargs),
}[param.annotation]
field = Field(name=name, location='query', schema=schema)
fields.append(field)
elif issubclass(param.annotation, types.Type):
if method in ('GET', 'DELETE'):
items = param.annotation.validator.properties.items()
for name, validator in items:
field = Field(name=name, location='query',
schema=validator)
fields.append(field)
else:
field = Field(name=name, location='body',
schema=param.annotation.validator)
fields.append(field)
return fields
def resolve(parameter: Parameter, params_dict):
try:
value = params_dict[parameter.name]
except KeyError:
if parameter.default is not parameter.empty:
return parameter.default
else:
raise exceptions.NotFound(
f"Parameter {parameter.name} not resolved")
try:
return parameter.annotation(value)
except Exception:
raise exceptions.BadRequest(f"Parameter {parameter.name} invalid")
class ParameterHandlerMixin:
annotation: Type
def can_handle_parameter(self, parameter: Parameter):
return issubclass(parameter.annotation, self.annotation)
class PathParamsComponent(ParameterHandlerMixin, Component):
annotation = _PathParam
def resolve(self,
parameter: Parameter,
path_params: PathParams):
return resolve(parameter, path_params)
class QueryParamComponent(ParameterHandlerMixin, Component):
annotation = _QueryParam
def resolve(self,
parameter: Parameter,
query_params: QueryParams):
return resolve(parameter, query_params)
class DataComponent(Component):
def handle_parameter(self, parameter: Parameter, value_dict):
return parameter.annotation(value_dict)
class BodyDataComponent(ParameterHandlerMixin, DataComponent):
annotation = _BodyData
def __init__(self):
self.codecs = [
codecs.JSONCodec(),
codecs.URLEncodedCodec(),
codecs.MultiPartCodec(),
]
def resolve(self,
content: Body,
headers: Headers,
parameter: Parameter):
if not content:
raise NotImplementedError
content_type = headers.get('Content-Type')
try:
codec = negotiate_content_type(self.codecs, content_type)
except exceptions.NoCodecAvailable:
raise exceptions.UnsupportedMediaType()
try:
value = codec.decode(content, headers=headers)
except exceptions.ParseError as exc:
raise exceptions.BadRequest(str(exc))
try:
return self.handle_parameter(parameter, value)
except Exception:
raise exceptions.BadRequest(f"{parameter.name} invalid")
class DictQueryDataComponent(ParameterHandlerMixin, DataComponent):
annotation = _DictQueryData
def resolve(self,
parameter: Parameter,
query_params: QueryParams):
try:
return self.handle_parameter(parameter, query_params)
except Exception:
raise exceptions.BadRequest(f"Parameter {parameter.name} invalid")
if pydantic:
class PydanticBodyDataComponent(BodyDataComponent):
annotation: Type = _PydanticBodyData
def handle_parameter(self, parameter, value_dict):
return parameter.annotation(**value_dict)
class PydanticQueryDataComponent(DictQueryDataComponent):
annotation: Type = _PydanticQueryData
def handle_parameter(self, parameter, value_dict):
return parameter.annotation(**value_dict)
components: List[Component] = []
if pydantic:
# try pydantic components before others
components.extend([
PydanticBodyDataComponent(),
PydanticQueryDataComponent(),
])
components.extend([
PathParamsComponent(),
QueryParamComponent(),
BodyDataComponent(),
DictQueryDataComponent(),
])