mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 19:19:55 +00:00
9b9e5d3df9
Bring main README up to date for current falcon
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
"""OpenAPI core contrib falcon responses module"""
|
|
from json import dumps
|
|
|
|
from werkzeug.datastructures import ImmutableMultiDict
|
|
|
|
from openapi_core.validation.request.datatypes import (
|
|
OpenAPIRequest, RequestParameters,
|
|
)
|
|
|
|
|
|
class FalconOpenAPIRequestFactory:
|
|
|
|
@classmethod
|
|
def create(cls, request):
|
|
"""
|
|
Create OpenAPIRequest from falcon Request and route params.
|
|
"""
|
|
method = request.method.lower()
|
|
|
|
# gets deduced by path finder against spec
|
|
path = {}
|
|
|
|
# Support falcon-jsonify.
|
|
body = (
|
|
dumps(request.json) if getattr(request, "json", None)
|
|
else dumps(request.media)
|
|
)
|
|
mimetype = request.options.default_media_type
|
|
if request.content_type:
|
|
mimetype = request.content_type.partition(";")[0]
|
|
|
|
query = ImmutableMultiDict(request.params.items())
|
|
parameters = RequestParameters(
|
|
query=query,
|
|
header=request.headers,
|
|
cookie=request.cookies,
|
|
path=path,
|
|
)
|
|
url_pattern = request.prefix + request.path
|
|
return OpenAPIRequest(
|
|
full_url_pattern=url_pattern,
|
|
method=method,
|
|
parameters=parameters,
|
|
body=body,
|
|
mimetype=mimetype,
|
|
)
|