2020-09-17 03:04:11 +00:00
|
|
|
import itertools
|
2020-11-26 03:23:23 +00:00
|
|
|
from urllib.parse import parse_qsl
|
|
|
|
from typing import Union
|
2020-09-17 03:04:11 +00:00
|
|
|
|
|
|
|
from openapi_core.validation.request.datatypes import ( # type: ignore
|
|
|
|
OpenAPIRequest,
|
2020-12-05 02:01:22 +00:00
|
|
|
RequestParameters,
|
|
|
|
RequestValidationResult,
|
2020-09-17 03:04:11 +00:00
|
|
|
)
|
2020-11-20 17:00:43 +00:00
|
|
|
from openapi_core.validation.request import validators # type: ignore
|
2020-11-26 03:23:23 +00:00
|
|
|
from tornado.httpclient import HTTPRequest # type: ignore
|
2020-11-20 17:49:06 +00:00
|
|
|
from tornado.httputil import HTTPServerRequest # type: ignore
|
2020-09-17 03:04:11 +00:00
|
|
|
from werkzeug.datastructures import ImmutableMultiDict, Headers
|
|
|
|
|
|
|
|
|
|
|
|
class TornadoRequestFactory:
|
|
|
|
@classmethod
|
2020-11-26 03:23:23 +00:00
|
|
|
def create(cls, request: Union[HTTPRequest, HTTPServerRequest]) -> OpenAPIRequest:
|
|
|
|
if isinstance(request, HTTPRequest):
|
|
|
|
if request.url:
|
|
|
|
path, _, querystring = request.url.partition("?")
|
|
|
|
query_arguments: ImmutableMultiDict[str, str] = ImmutableMultiDict(
|
|
|
|
parse_qsl(querystring)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
path = ""
|
|
|
|
query_arguments = ImmutableMultiDict()
|
2020-09-17 03:04:11 +00:00
|
|
|
else:
|
2020-12-04 18:29:32 +00:00
|
|
|
path, _, _ = request.full_url().partition("?")
|
2020-12-04 18:37:25 +00:00
|
|
|
if path == "://":
|
|
|
|
path = ""
|
2020-11-26 03:23:23 +00:00
|
|
|
query_arguments = ImmutableMultiDict(
|
|
|
|
itertools.chain(
|
|
|
|
*[
|
|
|
|
[(k, v.decode("utf-8")) for v in vs]
|
|
|
|
for k, vs in request.query_arguments.items()
|
|
|
|
]
|
|
|
|
)
|
2020-09-17 03:04:11 +00:00
|
|
|
)
|
|
|
|
return OpenAPIRequest(
|
|
|
|
full_url_pattern=path,
|
|
|
|
method=request.method.lower() if request.method else "get",
|
|
|
|
parameters=RequestParameters(
|
2020-09-18 03:39:35 +00:00
|
|
|
query=query_arguments, header=Headers(request.headers.get_all())
|
2020-09-17 03:04:11 +00:00
|
|
|
),
|
2021-01-06 19:50:15 +00:00
|
|
|
body=request.body if request.body else b"",
|
2020-11-20 00:37:58 +00:00
|
|
|
mimetype=request.headers.get(
|
|
|
|
"Content-Type", "application/x-www-form-urlencoded"
|
|
|
|
),
|
2020-09-17 03:04:11 +00:00
|
|
|
)
|
2020-11-20 17:00:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class RequestValidator(validators.RequestValidator):
|
2020-12-05 02:01:22 +00:00
|
|
|
def validate(
|
|
|
|
self, request: Union[HTTPRequest, HTTPServerRequest]
|
|
|
|
) -> RequestValidationResult:
|
2020-11-20 17:00:43 +00:00
|
|
|
return super().validate(TornadoRequestFactory.create(request))
|
2020-11-26 03:23:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
__all__ = ["RequestValidator", "TornadoRequestFactory"]
|