2018-04-17 12:18:40 +00:00
|
|
|
"""OpenAPI core parameters models module"""
|
2017-09-21 11:51:37 +00:00
|
|
|
import logging
|
2017-10-18 13:42:10 +00:00
|
|
|
import warnings
|
|
|
|
|
2018-04-18 10:49:49 +00:00
|
|
|
from openapi_core.schema.parameters.enums import (
|
|
|
|
ParameterLocation, ParameterStyle,
|
|
|
|
)
|
2018-04-18 10:39:03 +00:00
|
|
|
from openapi_core.schema.parameters.exceptions import (
|
|
|
|
MissingRequiredParameter, MissingParameter, InvalidParameterValue,
|
|
|
|
EmptyParameterValue,
|
|
|
|
)
|
2018-04-17 12:18:40 +00:00
|
|
|
from openapi_core.schema.schemas.enums import SchemaType
|
2018-09-12 16:43:07 +00:00
|
|
|
from openapi_core.schema.schemas.exceptions import OpenAPISchemaError
|
2017-09-21 11:51:37 +00:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Parameter(object):
|
|
|
|
"""Represents an OpenAPI operation Parameter."""
|
|
|
|
|
2018-04-17 12:18:40 +00:00
|
|
|
PARAMETER_STYLE_DESERIALIZERS = {
|
|
|
|
ParameterStyle.FORM: lambda x: x.split(','),
|
|
|
|
ParameterStyle.SIMPLE: lambda x: x.split(','),
|
|
|
|
ParameterStyle.SPACE_DELIMITED: lambda x: x.split(' '),
|
|
|
|
ParameterStyle.PIPE_DELIMITED: lambda x: x.split('|'),
|
|
|
|
}
|
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
def __init__(
|
2017-10-18 13:42:10 +00:00
|
|
|
self, name, location, schema=None, required=False,
|
|
|
|
deprecated=False, allow_empty_value=False,
|
2017-11-14 11:28:45 +00:00
|
|
|
items=None, style=None, explode=None):
|
2017-09-21 11:51:37 +00:00
|
|
|
self.name = name
|
2017-11-14 11:28:45 +00:00
|
|
|
self.location = ParameterLocation(location)
|
2017-09-21 11:51:37 +00:00
|
|
|
self.schema = schema
|
2017-11-14 11:28:45 +00:00
|
|
|
self.required = (
|
|
|
|
True if self.location == ParameterLocation.PATH else required
|
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
self.deprecated = deprecated
|
2017-10-18 13:42:10 +00:00
|
|
|
self.allow_empty_value = (
|
2017-11-14 11:28:45 +00:00
|
|
|
allow_empty_value if self.location == ParameterLocation.QUERY
|
|
|
|
else False
|
2017-10-18 13:42:10 +00:00
|
|
|
)
|
2017-09-21 11:51:37 +00:00
|
|
|
self.items = items
|
2017-11-14 11:28:45 +00:00
|
|
|
self.style = ParameterStyle(style or self.default_style)
|
2017-11-14 16:05:03 +00:00
|
|
|
self.explode = self.default_explode if explode is None else explode
|
|
|
|
|
|
|
|
@property
|
|
|
|
def aslist(self):
|
|
|
|
return (
|
|
|
|
self.schema and
|
|
|
|
self.schema.type in [SchemaType.ARRAY, SchemaType.OBJECT]
|
|
|
|
)
|
2017-11-14 11:28:45 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def default_style(self):
|
|
|
|
simple_locations = [ParameterLocation.PATH, ParameterLocation.HEADER]
|
|
|
|
return (
|
|
|
|
'simple' if self.location in simple_locations else "form"
|
|
|
|
)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def default_explode(self):
|
|
|
|
return self.style == ParameterStyle.FORM
|
2017-09-21 11:51:37 +00:00
|
|
|
|
2017-11-14 16:05:03 +00:00
|
|
|
def get_dererializer(self):
|
2018-04-17 12:18:40 +00:00
|
|
|
return self.PARAMETER_STYLE_DESERIALIZERS[self.style]
|
2017-11-14 16:05:03 +00:00
|
|
|
|
|
|
|
def deserialize(self, value):
|
|
|
|
if not self.aslist or self.explode:
|
|
|
|
return value
|
|
|
|
|
|
|
|
deserializer = self.get_dererializer()
|
|
|
|
return deserializer(value)
|
|
|
|
|
2018-04-18 10:39:03 +00:00
|
|
|
def get_value(self, request):
|
|
|
|
location = request.parameters[self.location.value]
|
|
|
|
|
2018-08-17 13:29:41 +00:00
|
|
|
if self.name not in location:
|
2018-04-18 10:39:03 +00:00
|
|
|
if self.required:
|
2018-09-06 14:50:16 +00:00
|
|
|
raise MissingRequiredParameter(self.name)
|
2018-04-18 10:39:03 +00:00
|
|
|
|
|
|
|
if not self.schema or self.schema.default is None:
|
2018-09-06 14:50:16 +00:00
|
|
|
raise MissingParameter(self.name)
|
2018-04-18 10:49:49 +00:00
|
|
|
|
2018-08-17 13:29:41 +00:00
|
|
|
return self.schema.default
|
2018-04-18 10:39:03 +00:00
|
|
|
|
|
|
|
if self.aslist and self.explode:
|
|
|
|
return location.getlist(self.name)
|
|
|
|
|
2018-08-17 13:29:41 +00:00
|
|
|
return location[self.name]
|
2018-04-18 10:39:03 +00:00
|
|
|
|
2018-08-24 14:57:41 +00:00
|
|
|
def unmarshal(self, value, custom_formatters=None):
|
2017-10-18 13:42:10 +00:00
|
|
|
if self.deprecated:
|
|
|
|
warnings.warn(
|
|
|
|
"{0} parameter is deprecated".format(self.name),
|
|
|
|
DeprecationWarning,
|
|
|
|
)
|
|
|
|
|
2017-11-14 11:28:45 +00:00
|
|
|
if (self.location == ParameterLocation.QUERY and value == "" and
|
2017-10-18 13:42:10 +00:00
|
|
|
not self.allow_empty_value):
|
2018-09-06 14:50:16 +00:00
|
|
|
raise EmptyParameterValue(self.name)
|
2017-10-18 13:42:10 +00:00
|
|
|
|
2017-09-21 11:51:37 +00:00
|
|
|
if not self.schema:
|
|
|
|
return value
|
|
|
|
|
2018-08-17 10:42:52 +00:00
|
|
|
try:
|
|
|
|
deserialized = self.deserialize(value)
|
|
|
|
except (ValueError, AttributeError) as exc:
|
2018-09-06 14:50:16 +00:00
|
|
|
raise InvalidParameterValue(self.name, exc)
|
2017-11-14 16:05:03 +00:00
|
|
|
|
2017-11-03 11:18:48 +00:00
|
|
|
try:
|
2018-09-05 11:39:10 +00:00
|
|
|
unmarshalled = self.schema.unmarshal(deserialized, custom_formatters=custom_formatters)
|
2018-09-12 16:43:07 +00:00
|
|
|
except OpenAPISchemaError as exc:
|
2018-09-06 14:50:16 +00:00
|
|
|
raise InvalidParameterValue(self.name, exc)
|
2018-08-17 14:54:01 +00:00
|
|
|
|
|
|
|
try:
|
2018-09-05 11:39:10 +00:00
|
|
|
return self.schema.validate(unmarshalled, custom_formatters=custom_formatters)
|
2018-09-12 16:43:07 +00:00
|
|
|
except OpenAPISchemaError as exc:
|
2018-09-06 14:50:16 +00:00
|
|
|
raise InvalidParameterValue(self.name, exc)
|