1
1
"""OpenAPI core app module"""
2
2
3
+ from functools import cached_property
3
4
from pathlib import Path
4
5
from typing import Optional
5
6
@@ -142,55 +143,55 @@ def check_spec(self) -> None:
142
143
def version (self ) -> SpecVersion :
143
144
return self ._get_version ()
144
145
145
- @property
146
+ @cached_property
146
147
def request_validator_cls (self ) -> Optional [RequestValidatorType ]:
147
148
if not isinstance (self .config .request_validator_cls , Unset ):
148
149
return self .config .request_validator_cls
149
150
return REQUEST_VALIDATORS .get (self .version )
150
151
151
- @property
152
+ @cached_property
152
153
def response_validator_cls (self ) -> Optional [ResponseValidatorType ]:
153
154
if not isinstance (self .config .response_validator_cls , Unset ):
154
155
return self .config .response_validator_cls
155
156
return RESPONSE_VALIDATORS .get (self .version )
156
157
157
- @property
158
+ @cached_property
158
159
def webhook_request_validator_cls (
159
160
self ,
160
161
) -> Optional [WebhookRequestValidatorType ]:
161
162
if not isinstance (self .config .webhook_request_validator_cls , Unset ):
162
163
return self .config .webhook_request_validator_cls
163
164
return WEBHOOK_REQUEST_VALIDATORS .get (self .version )
164
165
165
- @property
166
+ @cached_property
166
167
def webhook_response_validator_cls (
167
168
self ,
168
169
) -> Optional [WebhookResponseValidatorType ]:
169
170
if not isinstance (self .config .webhook_response_validator_cls , Unset ):
170
171
return self .config .webhook_response_validator_cls
171
172
return WEBHOOK_RESPONSE_VALIDATORS .get (self .version )
172
173
173
- @property
174
+ @cached_property
174
175
def request_unmarshaller_cls (self ) -> Optional [RequestUnmarshallerType ]:
175
176
if not isinstance (self .config .request_unmarshaller_cls , Unset ):
176
177
return self .config .request_unmarshaller_cls
177
178
return REQUEST_UNMARSHALLERS .get (self .version )
178
179
179
- @property
180
+ @cached_property
180
181
def response_unmarshaller_cls (self ) -> Optional [ResponseUnmarshallerType ]:
181
182
if not isinstance (self .config .response_unmarshaller_cls , Unset ):
182
183
return self .config .response_unmarshaller_cls
183
184
return RESPONSE_UNMARSHALLERS .get (self .version )
184
185
185
- @property
186
+ @cached_property
186
187
def webhook_request_unmarshaller_cls (
187
188
self ,
188
189
) -> Optional [WebhookRequestUnmarshallerType ]:
189
190
if not isinstance (self .config .webhook_request_unmarshaller_cls , Unset ):
190
191
return self .config .webhook_request_unmarshaller_cls
191
192
return WEBHOOK_REQUEST_UNMARSHALLERS .get (self .version )
192
193
193
- @property
194
+ @cached_property
194
195
def webhook_response_unmarshaller_cls (
195
196
self ,
196
197
) -> Optional [WebhookResponseUnmarshallerType ]:
@@ -200,7 +201,7 @@ def webhook_response_unmarshaller_cls(
200
201
return self .config .webhook_response_unmarshaller_cls
201
202
return WEBHOOK_RESPONSE_UNMARSHALLERS .get (self .version )
202
203
203
- @property
204
+ @cached_property
204
205
def request_validator (self ) -> RequestValidator :
205
206
if self .request_validator_cls is None :
206
207
raise SpecError ("Validator class not found" )
@@ -211,13 +212,14 @@ def request_validator(self) -> RequestValidator:
211
212
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
212
213
schema_casters_factory = self .config .schema_casters_factory ,
213
214
schema_validators_factory = self .config .schema_validators_factory ,
215
+ path_finder_cls = self .config .path_finder_cls ,
214
216
spec_validator_cls = self .config .spec_validator_cls ,
215
217
extra_format_validators = self .config .extra_format_validators ,
216
218
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
217
219
security_provider_factory = self .config .security_provider_factory ,
218
220
)
219
221
220
- @property
222
+ @cached_property
221
223
def response_validator (self ) -> ResponseValidator :
222
224
if self .response_validator_cls is None :
223
225
raise SpecError ("Validator class not found" )
@@ -228,12 +230,13 @@ def response_validator(self) -> ResponseValidator:
228
230
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
229
231
schema_casters_factory = self .config .schema_casters_factory ,
230
232
schema_validators_factory = self .config .schema_validators_factory ,
233
+ path_finder_cls = self .config .path_finder_cls ,
231
234
spec_validator_cls = self .config .spec_validator_cls ,
232
235
extra_format_validators = self .config .extra_format_validators ,
233
236
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
234
237
)
235
238
236
- @property
239
+ @cached_property
237
240
def webhook_request_validator (self ) -> WebhookRequestValidator :
238
241
if self .webhook_request_validator_cls is None :
239
242
raise SpecError ("Validator class not found" )
@@ -244,13 +247,14 @@ def webhook_request_validator(self) -> WebhookRequestValidator:
244
247
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
245
248
schema_casters_factory = self .config .schema_casters_factory ,
246
249
schema_validators_factory = self .config .schema_validators_factory ,
250
+ path_finder_cls = self .config .webhook_path_finder_cls ,
247
251
spec_validator_cls = self .config .spec_validator_cls ,
248
252
extra_format_validators = self .config .extra_format_validators ,
249
253
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
250
254
security_provider_factory = self .config .security_provider_factory ,
251
255
)
252
256
253
- @property
257
+ @cached_property
254
258
def webhook_response_validator (self ) -> WebhookResponseValidator :
255
259
if self .webhook_response_validator_cls is None :
256
260
raise SpecError ("Validator class not found" )
@@ -261,12 +265,13 @@ def webhook_response_validator(self) -> WebhookResponseValidator:
261
265
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
262
266
schema_casters_factory = self .config .schema_casters_factory ,
263
267
schema_validators_factory = self .config .schema_validators_factory ,
268
+ path_finder_cls = self .config .webhook_path_finder_cls ,
264
269
spec_validator_cls = self .config .spec_validator_cls ,
265
270
extra_format_validators = self .config .extra_format_validators ,
266
271
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
267
272
)
268
273
269
- @property
274
+ @cached_property
270
275
def request_unmarshaller (self ) -> RequestUnmarshaller :
271
276
if self .request_unmarshaller_cls is None :
272
277
raise SpecError ("Unmarshaller class not found" )
@@ -277,6 +282,7 @@ def request_unmarshaller(self) -> RequestUnmarshaller:
277
282
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
278
283
schema_casters_factory = self .config .schema_casters_factory ,
279
284
schema_validators_factory = self .config .schema_validators_factory ,
285
+ path_finder_cls = self .config .path_finder_cls ,
280
286
spec_validator_cls = self .config .spec_validator_cls ,
281
287
extra_format_validators = self .config .extra_format_validators ,
282
288
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
@@ -285,7 +291,7 @@ def request_unmarshaller(self) -> RequestUnmarshaller:
285
291
extra_format_unmarshallers = self .config .extra_format_unmarshallers ,
286
292
)
287
293
288
- @property
294
+ @cached_property
289
295
def response_unmarshaller (self ) -> ResponseUnmarshaller :
290
296
if self .response_unmarshaller_cls is None :
291
297
raise SpecError ("Unmarshaller class not found" )
@@ -296,14 +302,15 @@ def response_unmarshaller(self) -> ResponseUnmarshaller:
296
302
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
297
303
schema_casters_factory = self .config .schema_casters_factory ,
298
304
schema_validators_factory = self .config .schema_validators_factory ,
305
+ path_finder_cls = self .config .path_finder_cls ,
299
306
spec_validator_cls = self .config .spec_validator_cls ,
300
307
extra_format_validators = self .config .extra_format_validators ,
301
308
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
302
309
schema_unmarshallers_factory = self .config .schema_unmarshallers_factory ,
303
310
extra_format_unmarshallers = self .config .extra_format_unmarshallers ,
304
311
)
305
312
306
- @property
313
+ @cached_property
307
314
def webhook_request_unmarshaller (self ) -> WebhookRequestUnmarshaller :
308
315
if self .webhook_request_unmarshaller_cls is None :
309
316
raise SpecError ("Unmarshaller class not found" )
@@ -314,6 +321,7 @@ def webhook_request_unmarshaller(self) -> WebhookRequestUnmarshaller:
314
321
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
315
322
schema_casters_factory = self .config .schema_casters_factory ,
316
323
schema_validators_factory = self .config .schema_validators_factory ,
324
+ path_finder_cls = self .config .webhook_path_finder_cls ,
317
325
spec_validator_cls = self .config .spec_validator_cls ,
318
326
extra_format_validators = self .config .extra_format_validators ,
319
327
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
@@ -322,7 +330,7 @@ def webhook_request_unmarshaller(self) -> WebhookRequestUnmarshaller:
322
330
extra_format_unmarshallers = self .config .extra_format_unmarshallers ,
323
331
)
324
332
325
- @property
333
+ @cached_property
326
334
def webhook_response_unmarshaller (self ) -> WebhookResponseUnmarshaller :
327
335
if self .webhook_response_unmarshaller_cls is None :
328
336
raise SpecError ("Unmarshaller class not found" )
@@ -333,6 +341,7 @@ def webhook_response_unmarshaller(self) -> WebhookResponseUnmarshaller:
333
341
media_type_deserializers_factory = self .config .media_type_deserializers_factory ,
334
342
schema_casters_factory = self .config .schema_casters_factory ,
335
343
schema_validators_factory = self .config .schema_validators_factory ,
344
+ path_finder_cls = self .config .webhook_path_finder_cls ,
336
345
spec_validator_cls = self .config .spec_validator_cls ,
337
346
extra_format_validators = self .config .extra_format_validators ,
338
347
extra_media_type_deserializers = self .config .extra_media_type_deserializers ,
0 commit comments