-
Notifications
You must be signed in to change notification settings - Fork 98
/
spec.py
679 lines (555 loc) · 26.1 KB
/
spec.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
# -*- coding: utf-8 -*-
import json
import logging
import os.path
import warnings
from copy import deepcopy
from itertools import chain
import requests
import typing
import yaml
from jsonref import JsonRef
from jsonschema import FormatChecker
from jsonschema.validators import RefResolver
from six import iteritems
from six import iterkeys
from six.moves import range
from six.moves.urllib.parse import urlparse
from six.moves.urllib.parse import urlunparse
from six.moves.urllib.request import url2pathname
from swagger_spec_validator import validator20
from swagger_spec_validator.ref_validators import in_scope
try:
from yaml import CSafeLoader as SafeLoader
except ImportError:
from yaml import SafeLoader # type: ignore
from bravado_core import formatter
from bravado_core import version as _version
from bravado_core.exception import SwaggerSchemaError
from bravado_core.exception import SwaggerValidationError
from bravado_core.formatter import return_true_wrapper
from bravado_core.model import _from_pickleable_representation
from bravado_core.model import _to_pickleable_representation
from bravado_core.model import Model
from bravado_core.model import model_discovery
from bravado_core.resource import build_resources
from bravado_core.schema import is_dict_like
from bravado_core.schema import is_list_like
from bravado_core.schema import is_ref
from bravado_core.security_definition import SecurityDefinition
from bravado_core.spec_flattening import flattened_spec
from bravado_core.util import cached_property
from bravado_core.util import memoize_by_id
from bravado_core.util import strip_xscope
if getattr(typing, 'TYPE_CHECKING', False):
from bravado_core.formatter import SwaggerFormat
T = typing.TypeVar('T')
log = logging.getLogger(__name__)
CONFIG_DEFAULTS = {
# On the client side, validate incoming responses
# On the server side, validate outgoing responses
'validate_responses': True,
# On the client side, validate outgoing requests
# On the server side, validate incoming requests
'validate_requests': True,
# Use swagger_spec_validator to validate the swagger spec
'validate_swagger_spec': True,
# Use Python classes (models) instead of dicts for #/definitions/{models}
# On the client side, this applies to incoming responses.
# On the server side, this applies to incoming requests.
#
# NOTE: outgoing requests on the client side and outgoing responses on the
# server side can use either models or dicts.
'use_models': True,
# List of user-defined formats of type
# :class:`bravado_core.formatter.SwaggerFormat`. These formats are in
# addition to the formats already supported by the Swagger 2.0
# Specification.
'formats': [],
# Fill with None all the missing properties during object unmarshalling
'include_missing_properties': True,
# What to do when a type is missing
# If True, set the type to object and validate
# If False, do no validation
'default_type_to_object': False,
# Completely dereference $refs to maximize marshaling and unmarshalling performances.
# NOTE: this depends on validate_swagger_spec
'internally_dereference_refs': False,
# What value to assume for basePath if it is missing from the spec (this
# config option is ignored if basePath is present in the spec)
# If True, use the 'path' element of the URL the spec was retrieved from
# If False, set basePath to '/' (conforms to Swagger 2.0 specification)
'use_spec_url_for_base_path': False,
# If False, use str() function for 'byte' format
# If True, encode/decode base64 data for 'byte' format
'use_base64_for_byte_format': False,
}
def _identity(obj):
# type: (T) -> T
return obj
class Spec(object):
"""Represents a Swagger Specification for a service.
:param spec_dict: Swagger API specification in json-like dict form
:param origin_url: URL from which the spec was retrieved.
:param http_client: Used to retrieve the spec via http/https.
:type http_client: :class:`bravado.http_client.HTTPClient`
:param config: Configuration dict. See CONFIG_DEFAULTS.
"""
def __init__(
self, spec_dict, origin_url=None, http_client=None,
config=None,
):
self.spec_dict = spec_dict
self.origin_url = origin_url
self.http_client = http_client or BasicHTTPClient()
self.api_url = None
self.config = dict(CONFIG_DEFAULTS, **(config or {}))
# (key, value) = (simple format def name, Model type)
# (key, value) = (#/ format def ref, Model type)
self.definitions = {}
# (key, value) = (simple resource name, Resource)
# (key, value) = (#/ format resource ref, Resource)
self.resources = None
# (key, value) = (simple ref name, param_spec in dict form)
# (key, value) = (#/ format ref name, param_spec in dict form)
self.params = None
# Built on-demand - see get_op_for_request(..)
self._request_to_op_map = None
# (key, value) = (format name, SwaggerFormat)
self.user_defined_formats = {}
self.format_checker = FormatChecker()
# spec dict used to build resources, in case internally_dereference_refs config is enabled
# it will be overridden by the dereferenced specs (by build method). More context in PR#263
self._internal_spec_dict = spec_dict
@cached_property
def resolver(self):
# type: () -> RefResolver
return RefResolver(
base_uri=self.origin_url or '',
referrer=self.spec_dict,
handlers=self.get_ref_handlers(),
)
def is_equal(self, other):
# type: (typing.Any) -> bool
"""
Compare self with `other`
NOTE: Not implemented as __eq__ otherwise we would need to implement __hash__ to preserve
hashability of the class and it would not necessarily be performance effective
WARNING: This method operates in "best-effort" mode in the sense that certain attributes are not implementing
any equality check and so we're might be ignoring checking them
:param other: instance to compare self against
:return: True if self and other are the same, False otherwise
"""
if id(self) == id(other):
return True
if not isinstance(other, self.__class__):
return False
# If self and other are of the same type but not pointing to the same memory location then we're going to inspect
# all the attributes.
for attr_name in set(chain(iterkeys(self.__dict__), iterkeys(other.__dict__))):
# Some attributes do not define equality methods.
# As those attributes are defined internally only we do not expect that users of the library are modifying them.
if attr_name in {
'format_checker', # jsonschema.FormatChecker does not define an equality method
'resolver', # jsonschema.validators.RefResolver does not define an equality method
'http_client', # this attribute may be different for the same values
}:
continue
# In case of fully dereferenced specs _deref_flattened_spec (and consequently _internal_spec_dict) will contain
# recursive reference to objects. Python is not capable of comparing them (weird).
# As _internal_spec_dict and _deref_flattened_spec are private so we don't expect users modifying them.
if self.config['internally_dereference_refs'] and attr_name in {
'_internal_spec_dict',
'_deref_flattened_spec',
}:
continue
# It has recursive references to Spec and it is not straight-forward defining an equality check to ignore it
# As it is a private cached_property we can ignore it as users should not be "touching" it.
if attr_name == '_security_definitions':
continue
try:
self_attr = getattr(self, attr_name)
other_attr = getattr(other, attr_name)
except AttributeError:
return False
# Define some special exception handling for attributes that have recursive reference to self.
if attr_name == 'resources':
if not is_dict_like(self_attr) or not is_dict_like(other_attr):
return False
for key in set(chain(iterkeys(self_attr), iterkeys(other_attr))):
try:
if not self_attr[key].is_equal(other_attr[key], ignore_swagger_spec=True):
return False
except KeyError:
return False
elif attr_name == 'definitions':
if not is_dict_like(self_attr) or not is_dict_like(other_attr):
return False
for key in set(chain(iterkeys(self_attr), iterkeys(other_attr))):
try:
self_definition = self_attr[key]
other_definition = other_attr[key]
if not issubclass(self_definition, Model) or not issubclass(other_definition, self_definition):
return False
except KeyError:
return False
elif self_attr != other_attr:
return False
return True
def __deepcopy__(self, memo=None):
if memo is None: # pragma: no cover # This should never happening, but better safe than sorry
memo = {}
copied_self = self.__class__(spec_dict=None)
memo[id(self)] = copied_self
# Copy the attributes that are built via Spec.build
for attr_name, attr_value in iteritems(self.__dict__):
setattr(copied_self, attr_name, deepcopy(attr_value, memo=memo))
return copied_self
def __getstate__(self):
state = {
k: v
for k, v in iteritems(self.__dict__)
if k not in (
# Exclude resolver as it is not easily pickleable. As there are no real
# benefits on re-using the same Resolver respect to build a new one
# we're going to ignore the field and eventually re-create it if needed
# via cached_property
'resolver',
# Exclude definitions because it contain runtime defined type and those
# are not directly pickleable.
# Check bravado_core.model._to_pickleable_representation for details.
'definitions',
)
}
# A possible approach would be to re-execute model discovery on the newly Spec
# instance (in __setstate__) but it would be very slow.
# To avoid model discovery we store a pickleable representation of the Model types
# such that we can re-create them.
state['definitions'] = {
model_name: _to_pickleable_representation(model_name, model_type)
for model_name, model_type in iteritems(self.definitions)
}
# Store the bravado-core version used to create the Spec state
state['__bravado_core_version__'] = _version
return state
def __setstate__(self, state):
state_version = state.pop('__bravado_core_version__')
if state_version != _version:
warnings.warn(
'You are creating a Spec instance from a state created by a different '
'bravado-core version. We are not going to guarantee that the created '
'Spec instance will be correct. '
'State created by version {state_version}, current version {_version}'.format(
state_version=state_version,
_version=_version,
),
category=UserWarning,
)
# Re-create Model types, avoiding model discovery
state['definitions'] = {
model_name: _from_pickleable_representation(pickleable_representation)
for model_name, pickleable_representation in iteritems(state['definitions'])
}
self.__dict__.clear()
self.__dict__.update(state)
@cached_property
def client_spec_dict(self):
"""Return a copy of spec_dict with x-scope metadata removed so that it
is suitable for consumption by Swagger clients.
You may be asking, "Why is there a difference between the Swagger spec
a client sees and the one used internally?". Well, as part of the
ingestion process, x-scope metadata is added to spec_dict so that
$refs can be de-reffed successfully during request/response validation
and marshalling. This metadata is specific to the context of the
server and contains files and paths that are not relevant to the
client. This is required so the client does not re-use (and in turn,
re-creates) the invalid x-scope metadata created by the server.
For example, a section of spec_dict that contains a ref would change
as follows.
Before:
'MON': {
'$ref': '#/definitions/DayHours',
'x-scope': [
'file:///happyhour/api_docs/swagger.json',
'file:///happyhour/api_docs/swagger.json#/definitions/WeekHours'
]
}
After:
'MON': {
'$ref': '#/definitions/DayHours'
}
"""
return strip_xscope(self.spec_dict)
@classmethod
def from_dict(cls, spec_dict, origin_url=None, http_client=None, config=None):
"""Build a :class:`Spec` from Swagger API Specification
:param spec_dict: swagger spec in json-like dict form.
:param origin_url: the url used to retrieve the spec, if any
:type origin_url: str
:param http_client: http client used to download remote $refs
:param config: Configuration dict. See CONFIG_DEFAULTS.
"""
spec = cls(spec_dict, origin_url, http_client, config)
spec.build()
return spec
def _validate_spec(self):
if self.config['validate_swagger_spec']:
self.resolver = validator20.validate_spec(
spec_dict=self.spec_dict,
spec_url=self.origin_url or '',
http_handlers=self.get_ref_handlers(),
)
def build(self):
self._validate_spec()
model_discovery(self)
if self.config['internally_dereference_refs']:
# Avoid to evaluate is_ref every time, no references are possible at this time
self.deref = _identity
self._internal_spec_dict = self.deref_flattened_spec
for user_defined_format in self.config['formats']:
self.register_format(user_defined_format)
self.resources = build_resources(self)
self.api_url = build_api_serving_url(
spec_dict=self.spec_dict,
origin_url=self.origin_url,
use_spec_url_for_base_path=self.config['use_spec_url_for_base_path'],
)
def get_ref_handlers(self):
"""Get mapping from URI schemes to handlers that takes a URI.
The handlers (callables) are used by the RefResolver to retrieve
remote specification $refs.
:returns: dict like {'http': callable, 'https': callable}
:rtype: dict
"""
return build_http_handlers(self.http_client)
def _force_deref(self, ref_dict):
# type: (T) -> T
"""Dereference ref_dict (if it is indeed a ref) and return what the
ref points to.
:param ref_dict: {'$ref': '#/blah/blah'}
:return: dereferenced value of ref_dict
:rtype: scalar, list, dict
"""
if ref_dict is None or not is_ref(ref_dict):
return ref_dict
# Restore attached resolution scope before resolving since the
# resolver doesn't have a traversal history (accumulated scope_stack)
# when asked to resolve.
with in_scope(self.resolver, ref_dict):
reference_value = ref_dict['$ref'] # type: ignore
_, target = self.resolver.resolve(reference_value)
return target
# NOTE: deref gets overridden, if internally_dereference_refs is enabled, after calling build
deref = _force_deref
def get_op_for_request(self, http_method, path_pattern):
"""Return the Swagger operation for the passed in request http method
and path pattern. Makes it really easy for server-side implementations
to map incoming requests to the Swagger spec.
:param http_method: http method of the request
:param path_pattern: request path pattern. e.g. /foo/{bar}/baz/{id}
:returns: the matching operation or None if a match couldn't be found
:rtype: :class:`bravado_core.operation.Operation`
"""
if self._request_to_op_map is None:
# lazy initialization
self._request_to_op_map = {}
base_path = self.spec_dict.get('basePath', '').rstrip('/')
for resource in self.resources.values():
for op in resource.operations.values():
full_path = base_path + op.path_name
key = (op.http_method, full_path)
self._request_to_op_map[key] = op
key = (http_method.lower(), path_pattern)
return self._request_to_op_map.get(key)
def register_format(self, user_defined_format):
"""Registers a user-defined format to be used with this spec.
:type user_defined_format:
:class:`bravado_core.formatter.SwaggerFormat`
"""
name = user_defined_format.format
self.user_defined_formats[name] = user_defined_format
validate = return_true_wrapper(user_defined_format.validate)
self.format_checker.checks(name, raises=(SwaggerValidationError,))(validate)
def get_format(self, name):
# type: (typing.Text) -> SwaggerFormat
"""
:param name: Name of the format to retrieve
:rtype: :class:`bravado_core.formatter.SwaggerFormat`
"""
user_defined_format = self.user_defined_formats.get(name)
if user_defined_format is None:
user_defined_format = formatter.DEFAULT_FORMATS.get(name)
if name == 'byte' and self.config['use_base64_for_byte_format']:
user_defined_format = formatter.BASE64_BYTE_FORMAT
if user_defined_format is None:
warnings.warn(
message='{0} format is not registered with bravado-core!'.format(name),
category=Warning,
)
return user_defined_format
@cached_property
def _security_definitions(self):
# type: () -> typing.Dict[typing.Text, SecurityDefinition]
return {
security_name: SecurityDefinition(self, security_def)
for security_name, security_def in iteritems(self.spec_dict.get('securityDefinitions', {}))
}
@property
def security_definitions(self):
# type: () -> typing.Dict[typing.Text, SecurityDefinition]
return self._security_definitions
@cached_property
def flattened_spec(self):
"""
Representation of the current swagger specs that could be written to a single file.
:rtype: dict
"""
if not self.config['validate_swagger_spec']:
log.warning(
'Flattening unvalidated specs could produce invalid specs. '
'Use it at your risk or enable `validate_swagger_specs`',
)
return strip_xscope(
spec_dict=flattened_spec(swagger_spec=self),
)
@cached_property
def _deref_flattened_spec(self):
# type: () -> typing.Mapping[typing.Text, typing.Any]
deref_spec_dict = JsonRef.replace_refs(self.flattened_spec)
@memoize_by_id
def descend(obj):
# Inline modification of obj
# This method is needed because JsonRef could produce performance penalties in accessing
# the proxied attributes
if isinstance(obj, JsonRef):
# Extract the proxied value
# http://jsonref.readthedocs.io/en/latest/#jsonref.JsonRef.__subject__
return obj.__subject__
if is_dict_like(obj):
for key in list(iterkeys(obj)):
obj[key] = descend(obj=obj[key])
elif is_list_like(obj):
# obj is list like object provided from flattened_spec specs.
# This guarantees that it cannot be a tuple instance and
# inline object modification are allowed
for index in range(len(obj)):
obj[index] = descend(obj=obj[index])
return obj
try:
return descend(obj=deref_spec_dict)
finally:
# Make sure that all memory allocated, for caching, could be released
descend.cache.clear() # type: ignore # @memoize_by_id adds cache attribute to the decorated function
@property
def deref_flattened_spec(self):
# type: () -> typing.Mapping[typing.Text, typing.Any]
return self._deref_flattened_spec
def is_yaml(url, content_type=None):
yaml_content_types = {'application/yaml', 'application/x-yaml', 'text/yaml'}
yaml_file_extensions = {'.yaml', '.yml'}
if content_type in yaml_content_types:
return True
_, ext = os.path.splitext(url)
if ext.lower() in yaml_file_extensions:
return True
return False
# this has the minimal interface required for build_http_handlers, but should be
# more or less compatible with bravado.http_future.HttpFuture
class BasicHTTPFuture(object):
def __init__(self, request_params):
self.request_params = request_params
def result(self):
return requests.request(**self.request_params)
# this has the minimal interface required for build_http_handlers, but should be
# more or less compatible with bravado.http_client.HttpClient
class BasicHTTPClient(object):
def request(self, request_params):
return BasicHTTPFuture(request_params)
def build_http_handlers(http_client):
"""Create a mapping of uri schemes to callables that take a uri. The
callable is used by jsonschema's RefResolver to download remote $refs.
:param http_client: http_client with a request() method
:returns: dict like {'http': callable, 'https': callable}
"""
def download(uri):
log.debug('Downloading %s', uri)
request_params = {
'method': 'GET',
'url': uri,
}
response = http_client.request(request_params).result()
content_type = response.headers.get('content-type', '').lower()
if is_yaml(uri, content_type):
return yaml.load(response.content, Loader=SafeLoader)
else:
return response.json()
def read_file(uri):
with open(url2pathname(urlparse(uri).path), mode='rb') as fp:
if is_yaml(uri):
return yaml.load(fp, Loader=SafeLoader)
else:
return json.loads(fp.read().decode("utf-8"))
return {
'http': download,
'https': download,
# jsonschema ordinarily handles file:// requests, but it assumes that
# all files are json formatted. We override it here so that we can
# load yaml files when necessary.
'file': read_file,
}
def build_api_serving_url(
spec_dict, origin_url=None, preferred_scheme=None, use_spec_url_for_base_path=False,
):
"""The URL used to service API requests does not necessarily have to be the
same URL that was used to retrieve the API spec_dict.
The existence of three fields in the root of the specification govern
the value of the api_serving_url:
- host string
The host (name or ip) serving the API. This MUST be the host only and
does not include the scheme nor sub-paths. It MAY include a port.
If the host is not included, the host serving the documentation is to
be used (including the port). The host does not support path templating.
- basePath string
The base path on which the API is served, which is relative to the
host. If it is not included, the API is served directly under the host.
The value MUST start with a leading slash (/). The basePath does not
support path templating.
- schemes [string]
The transfer protocol of the API. Values MUST be from the list:
"http", "https", "ws", "wss". If the schemes is not included,
the default scheme to be used is the one used to access the
specification.
See https://github.com/swagger-api/swagger-spec_dict/blob/master/versions/2.0.md#swagger-object- # noqa
:param spec_dict: the Swagger spec in json-like dict form
:param origin_url: the URL from which the spec was retrieved, if any. This
is only used in Swagger clients.
:param use_spec_url_for_base_path: only effective when 'basePath' is missing
from `spec_dict`. When True, 'basePath' will be set to the path portion
of `origin_url`. When False, 'basePath' will be set to '/'.
:param preferred_scheme: preferred scheme to use if more than one scheme is
supported by the API.
:return: base url which services api requests
:raises: SwaggerSchemaError
"""
origin_url = origin_url or 'http://localhost/'
origin = urlparse(origin_url)
def pick_a_scheme(schemes):
if not schemes:
return origin.scheme
if preferred_scheme:
if preferred_scheme in schemes:
return preferred_scheme
raise SwaggerSchemaError(
"Preferred scheme {0} not supported by API. Available schemes "
"include {1}".format(preferred_scheme, schemes),
)
if origin.scheme in schemes:
return origin.scheme
return schemes[0]
netloc = spec_dict.get('host', origin.netloc)
base_path = '/'
if use_spec_url_for_base_path:
base_path = origin.path
path = spec_dict.get('basePath', base_path)
scheme = pick_a_scheme(spec_dict.get('schemes'))
return urlunparse((scheme, netloc, path, None, None, None))