2017-09-21 11:51:37 +00:00
|
|
|
"""OpenAPI core wrappers module"""
|
2017-11-03 11:18:48 +00:00
|
|
|
import warnings
|
2017-09-25 11:22:55 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
from six.moves.urllib.parse import urljoin
|
2017-09-25 11:22:55 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
from openapi_core.exceptions import OpenAPIParameterError, OpenAPIBodyError
|
|
|
|
from openapi_core.validators import RequestValidator
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
class BaseOpenAPIRequest(object):
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
host_url = NotImplemented
|
|
|
|
path = NotImplemented
|
|
|
|
path_pattern = NotImplemented
|
|
|
|
method = NotImplemented
|
2017-10-18 13:42:10 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
parameters = NotImplemented
|
|
|
|
body = NotImplemented
|
2017-10-18 13:42:10 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
mimetype = NotImplemented
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def full_url_pattern(self):
|
|
|
|
return urljoin(self.host_url, self.path_pattern)
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
def get_body(self, spec):
|
|
|
|
warnings.warn(
|
|
|
|
"`get_body` method is deprecated. "
|
|
|
|
"Use RequestValidator instead.",
|
|
|
|
DeprecationWarning,
|
|
|
|
)
|
|
|
|
# backward compatibility
|
|
|
|
validator = RequestValidator(spec)
|
|
|
|
result = validator.validate(self)
|
|
|
|
try:
|
|
|
|
result.validate()
|
|
|
|
except OpenAPIParameterError:
|
|
|
|
return result.body
|
|
|
|
else:
|
|
|
|
return result.body
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
def get_parameters(self, spec):
|
|
|
|
warnings.warn(
|
|
|
|
"`get_parameters` method is deprecated. "
|
|
|
|
"Use RequestValidator instead.",
|
|
|
|
DeprecationWarning,
|
|
|
|
)
|
|
|
|
# backward compatibility
|
|
|
|
validator = RequestValidator(spec)
|
|
|
|
result = validator.validate(self)
|
2017-09-21 11:51:37 +00:00
|
|
|
try:
|
2017-11-03 11:18:48 +00:00
|
|
|
result.validate()
|
|
|
|
except OpenAPIBodyError:
|
|
|
|
return result.parameters
|
|
|
|
else:
|
|
|
|
return result.parameters
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
class MockRequest(BaseOpenAPIRequest):
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
def __init__(
|
|
|
|
self, host_url, method, path, path_pattern=None, args=None,
|
|
|
|
view_args=None, headers=None, cookies=None, data=None,
|
|
|
|
mimetype='application/json'):
|
|
|
|
self.host_url = host_url
|
|
|
|
self.path = path
|
|
|
|
self.path_pattern = path_pattern or path
|
|
|
|
self.method = method.lower()
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
self.parameters = {
|
|
|
|
'path': view_args or {},
|
|
|
|
'query': args or {},
|
|
|
|
'headers': headers or {},
|
|
|
|
'cookies': cookies or {},
|
|
|
|
}
|
2017-09-25 13:20:23 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
self.body = data or ''
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
self.mimetype = mimetype
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
class WerkzeugOpenAPIRequest(BaseOpenAPIRequest):
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
def __init__(self, request):
|
|
|
|
self.request = request
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def host_url(self):
|
|
|
|
return self.request.host_url
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def path(self):
|
|
|
|
return self.request.path
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def method(self):
|
|
|
|
return self.request.method.lower()
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-09-25 11:22:55 +00:00
|
|
|
@property
|
2017-11-03 11:18:48 +00:00
|
|
|
def path_pattern(self):
|
|
|
|
return self.request.url_rule.rule
|
2017-09-25 11:22:55 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def parameters(self):
|
|
|
|
return {
|
|
|
|
'path': self.request['view_args'],
|
|
|
|
'query': self.request['args'],
|
|
|
|
'headers': self.request['headers'],
|
|
|
|
'cookies': self.request['cookies'],
|
|
|
|
}
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
@property
|
|
|
|
def body(self):
|
|
|
|
return self.request.data
|
|
|
|
|
|
|
|
@property
|
|
|
|
def mimetype(self):
|
|
|
|
return self.request.mimetype
|