-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathvalidators.py
286 lines (257 loc) · 10.6 KB
/
validators.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
"""OpenAPI core validation validators module"""
import re
import warnings
from functools import cached_property
from typing import Any
from typing import Mapping
from typing import Optional
from typing import Tuple
from urllib.parse import urljoin
from jsonschema_path import SchemaPath
from openapi_spec_validator.validation.types import SpecValidatorType
from openapi_core.casting.schemas.factories import SchemaCastersFactory
from openapi_core.deserializing.media_types import (
media_type_deserializers_factory,
)
from openapi_core.deserializing.media_types.datatypes import (
MediaTypeDeserializersDict,
)
from openapi_core.deserializing.media_types.factories import (
MediaTypeDeserializersFactory,
)
from openapi_core.deserializing.styles import style_deserializers_factory
from openapi_core.deserializing.styles.exceptions import (
EmptyQueryParameterValue,
)
from openapi_core.deserializing.styles.factories import (
StyleDeserializersFactory,
)
from openapi_core.protocols import Request
from openapi_core.protocols import WebhookRequest
from openapi_core.schema.parameters import get_style_and_explode
from openapi_core.templating.media_types.datatypes import MediaType
from openapi_core.templating.paths.datatypes import PathOperationServer
from openapi_core.templating.paths.finders import APICallPathFinder
from openapi_core.templating.paths.finders import BasePathFinder
from openapi_core.templating.paths.finders import WebhookPathFinder
from openapi_core.validation.schemas.datatypes import FormatValidatorsDict
from openapi_core.validation.schemas.factories import SchemaValidatorsFactory
class BaseValidator:
schema_casters_factory: SchemaCastersFactory = NotImplemented
schema_validators_factory: SchemaValidatorsFactory = NotImplemented
spec_validator_cls: Optional[SpecValidatorType] = None
def __init__(
self,
spec: SchemaPath,
base_url: Optional[str] = None,
style_deserializers_factory: StyleDeserializersFactory = style_deserializers_factory,
media_type_deserializers_factory: MediaTypeDeserializersFactory = media_type_deserializers_factory,
schema_casters_factory: Optional[SchemaCastersFactory] = None,
schema_validators_factory: Optional[SchemaValidatorsFactory] = None,
spec_validator_cls: Optional[SpecValidatorType] = None,
format_validators: Optional[FormatValidatorsDict] = None,
extra_format_validators: Optional[FormatValidatorsDict] = None,
extra_media_type_deserializers: Optional[
MediaTypeDeserializersDict
] = None,
):
self.spec = spec
self.base_url = base_url
self.schema_casters_factory = (
schema_casters_factory or self.schema_casters_factory
)
if self.schema_casters_factory is NotImplemented:
raise NotImplementedError("schema_casters_factory is not assigned")
self.style_deserializers_factory = style_deserializers_factory
self.media_type_deserializers_factory = (
media_type_deserializers_factory
)
self.schema_validators_factory = (
schema_validators_factory or self.schema_validators_factory
)
if self.schema_validators_factory is NotImplemented:
raise NotImplementedError(
"schema_validators_factory is not assigned"
)
self.spec_validator_cls = spec_validator_cls or self.spec_validator_cls
self.format_validators = format_validators
self.extra_format_validators = extra_format_validators
self.extra_media_type_deserializers = extra_media_type_deserializers
def check_spec(self, spec: SchemaPath) -> None:
if self.spec_validator_cls is None:
return
validator = self.spec_validator_cls(spec)
validator.validate()
def _find_media_type(
self, content: SchemaPath, mimetype: Optional[str] = None
) -> MediaType:
from openapi_core.templating.media_types.finders import MediaTypeFinder
finder = MediaTypeFinder(content)
if mimetype is None:
return finder.get_first()
return finder.find(mimetype)
def _deserialise_media_type(
self,
media_type: SchemaPath,
mimetype: str,
parameters: Mapping[str, str],
value: bytes,
) -> Any:
schema = media_type.get("schema")
encoding = None
if "encoding" in media_type:
encoding = media_type.get("encoding")
deserializer = self.media_type_deserializers_factory.create(
mimetype,
schema=schema,
parameters=parameters,
encoding=encoding,
extra_media_type_deserializers=self.extra_media_type_deserializers,
)
return deserializer.deserialize(value)
def _deserialise_style(
self,
param_or_header: SchemaPath,
location: Mapping[str, Any],
name: Optional[str] = None,
) -> Any:
name = name or param_or_header["name"]
style, explode = get_style_and_explode(param_or_header)
schema = param_or_header / "schema"
deserializer = self.style_deserializers_factory.create(
style, explode, schema, name=name
)
return deserializer.deserialize(location)
def _cast(self, schema: SchemaPath, value: Any) -> Any:
caster = self.schema_casters_factory.create(schema)
return caster.cast(value)
def _validate_schema(self, schema: SchemaPath, value: Any) -> None:
validator = self.schema_validators_factory.create(
schema,
format_validators=self.format_validators,
extra_format_validators=self.extra_format_validators,
)
validator.validate(value)
def _get_param_or_header_and_schema(
self,
param_or_header: SchemaPath,
location: Mapping[str, Any],
name: Optional[str] = None,
) -> Tuple[Any, Optional[SchemaPath]]:
schema: Optional[SchemaPath] = None
# Simple scenario
if "content" not in param_or_header:
casted, schema = self._get_simple_param_or_header(
param_or_header, location, name=name
)
# Complex scenario
else:
casted, schema = self._get_complex_param_or_header(
param_or_header, location, name=name
)
if schema is None:
return casted, None
self._validate_schema(schema, casted)
return casted, schema
def _get_simple_param_or_header(
self,
param_or_header: SchemaPath,
location: Mapping[str, Any],
name: Optional[str] = None,
) -> Tuple[Any, SchemaPath]:
allow_empty_values = param_or_header.getkey("allowEmptyValue")
if allow_empty_values:
warnings.warn(
"Use of allowEmptyValue property is deprecated",
DeprecationWarning,
)
# in simple scenrios schema always exist
schema = param_or_header / "schema"
try:
deserialised = self._deserialise_style(
param_or_header, location, name=name
)
except KeyError:
if "default" not in schema:
raise
return schema["default"], schema
if allow_empty_values is not None:
warnings.warn(
"Use of allowEmptyValue property is deprecated",
DeprecationWarning,
)
if allow_empty_values is None or not allow_empty_values:
# if "in" not defined then it's a Header
location_name = param_or_header.getkey("in", "header")
if (
location_name == "query"
and deserialised == ""
and not allow_empty_values
):
param_or_header_name = param_or_header["name"]
raise EmptyQueryParameterValue(param_or_header_name)
casted = self._cast(schema, deserialised)
return casted, schema
def _get_complex_param_or_header(
self,
param_or_header: SchemaPath,
location: Mapping[str, Any],
name: Optional[str] = None,
) -> Tuple[Any, Optional[SchemaPath]]:
content = param_or_header / "content"
raw = self._get_media_type_value(param_or_header, location, name=name)
return self._get_content_schema_value_and_schema(raw, content)
def _get_content_schema_value_and_schema(
self,
raw: bytes,
content: SchemaPath,
mimetype: Optional[str] = None,
) -> Tuple[Any, Optional[SchemaPath]]:
mime_type, parameters, media_type = self._find_media_type(
content, mimetype
)
# no point to catch KetError
# in complex scenrios schema doesn't exist
deserialised = self._deserialise_media_type(
media_type, mime_type, parameters, raw
)
if "schema" not in media_type:
return deserialised, None
schema = media_type / "schema"
# cast for urlencoded content
# FIXME: don't cast data from media type deserializer
# See https://github.com/python-openapi/openapi-core/issues/706
casted = self._cast(schema, deserialised)
return casted, schema
def _get_content_and_schema(
self, raw: bytes, content: SchemaPath, mimetype: Optional[str] = None
) -> Tuple[Any, Optional[SchemaPath]]:
casted, schema = self._get_content_schema_value_and_schema(
raw, content, mimetype
)
if schema is None:
return casted, None
self._validate_schema(schema, casted)
return casted, schema
def _get_media_type_value(
self,
param_or_header: SchemaPath,
location: Mapping[str, Any],
name: Optional[str] = None,
) -> Any:
name = name or param_or_header["name"]
return location[name]
class BaseAPICallValidator(BaseValidator):
@cached_property
def path_finder(self) -> BasePathFinder:
return APICallPathFinder(self.spec, base_url=self.base_url)
def _find_path(self, request: Request) -> PathOperationServer:
path_pattern = getattr(request, "path_pattern", None) or request.path
full_url = urljoin(request.host_url, path_pattern)
return self.path_finder.find(request.method, full_url)
class BaseWebhookValidator(BaseValidator):
@cached_property
def path_finder(self) -> BasePathFinder:
return WebhookPathFinder(self.spec, base_url=self.base_url)
def _find_path(self, request: WebhookRequest) -> PathOperationServer:
return self.path_finder.find(request.method, request.name)