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
|
from jsonschema_path import SchemaPath
from openapi_core.protocols import Request
from openapi_core.protocols import Response
from openapi_core.protocols import WebhookRequest
from openapi_core.templating.paths.exceptions import PathError
from openapi_core.templating.responses.exceptions import ResponseFinderError
from openapi_core.unmarshalling.response.datatypes import (
ResponseUnmarshalResult,
)
from openapi_core.unmarshalling.schemas import (
oas30_read_schema_unmarshallers_factory,
)
from openapi_core.unmarshalling.schemas import (
oas31_schema_unmarshallers_factory,
)
from openapi_core.unmarshalling.unmarshallers import BaseUnmarshaller
from openapi_core.util import chainiters
from openapi_core.validation.response.exceptions import DataValidationError
from openapi_core.validation.response.exceptions import HeadersError
from openapi_core.validation.response.validators import (
APICallResponseValidator,
)
from openapi_core.validation.response.validators import BaseResponseValidator
from openapi_core.validation.response.validators import (
V30ResponseDataValidator,
)
from openapi_core.validation.response.validators import (
V30ResponseHeadersValidator,
)
from openapi_core.validation.response.validators import V30ResponseValidator
from openapi_core.validation.response.validators import (
V31ResponseDataValidator,
)
from openapi_core.validation.response.validators import (
V31ResponseHeadersValidator,
)
from openapi_core.validation.response.validators import V31ResponseValidator
from openapi_core.validation.response.validators import (
V31WebhookResponseDataValidator,
)
from openapi_core.validation.response.validators import (
V31WebhookResponseHeadersValidator,
)
from openapi_core.validation.response.validators import (
V31WebhookResponseValidator,
)
from openapi_core.validation.response.validators import (
WebhookResponseValidator,
)
class BaseResponseUnmarshaller(BaseResponseValidator, BaseUnmarshaller):
def _unmarshal(
self,
response: Response,
operation: SchemaPath,
) -> ResponseUnmarshalResult:
try:
operation_response = self._find_operation_response(
response.status_code, operation
)
# don't process if operation errors
except ResponseFinderError as exc:
return ResponseUnmarshalResult(errors=[exc])
try:
validated_data = self._get_data(
response.data, response.content_type, operation_response
)
except DataValidationError as exc:
validated_data = None
data_errors = [exc]
else:
data_errors = []
try:
validated_headers = self._get_headers(
response.headers, operation_response
)
except HeadersError as exc:
validated_headers = exc.headers
headers_errors = exc.context
else:
headers_errors = []
errors = list(chainiters(data_errors, headers_errors))
return ResponseUnmarshalResult(
errors=errors,
data=validated_data,
headers=validated_headers,
)
def _unmarshal_data(
self,
response: Response,
operation: SchemaPath,
) -> ResponseUnmarshalResult:
try:
operation_response = self._find_operation_response(
response.status_code, operation
)
# don't process if operation errors
except ResponseFinderError as exc:
return ResponseUnmarshalResult(errors=[exc])
try:
validated = self._get_data(
response.data, response.content_type, operation_response
)
except DataValidationError as exc:
validated = None
data_errors = [exc]
else:
data_errors = []
return ResponseUnmarshalResult(
errors=data_errors,
data=validated,
)
def _unmarshal_headers(
self,
response: Response,
operation: SchemaPath,
) -> ResponseUnmarshalResult:
try:
operation_response = self._find_operation_response(
response.status_code, operation
)
# don't process if operation errors
except ResponseFinderError as exc:
return ResponseUnmarshalResult(errors=[exc])
try:
validated = self._get_headers(response.headers, operation_response)
except HeadersError as exc:
validated = exc.headers
headers_errors = exc.context
else:
headers_errors = []
return ResponseUnmarshalResult(
errors=headers_errors,
headers=validated,
)
class APICallResponseUnmarshaller(
APICallResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: Request,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal(response, operation)
class APICallResponseDataUnmarshaller(
APICallResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: Request,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal_data(response, operation)
class APICallResponseHeadersUnmarshaller(
APICallResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: Request,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal_headers(response, operation)
class WebhookResponseUnmarshaller(
WebhookResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: WebhookRequest,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal(response, operation)
class WebhookResponseDataUnmarshaller(
WebhookResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: WebhookRequest,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal_data(response, operation)
class WebhookResponseHeadersUnmarshaller(
WebhookResponseValidator, BaseResponseUnmarshaller
):
def unmarshal(
self,
request: WebhookRequest,
response: Response,
) -> ResponseUnmarshalResult:
try:
_, operation, _, _, _ = self._find_path(request)
# don't process if operation errors
except PathError as exc:
return ResponseUnmarshalResult(errors=[exc])
return self._unmarshal_headers(response, operation)
class V30ResponseDataUnmarshaller(
V30ResponseDataValidator, APICallResponseDataUnmarshaller
):
schema_unmarshallers_factory = oas30_read_schema_unmarshallers_factory
class V30ResponseHeadersUnmarshaller(
V30ResponseHeadersValidator, APICallResponseHeadersUnmarshaller
):
schema_unmarshallers_factory = oas30_read_schema_unmarshallers_factory
class V30ResponseUnmarshaller(
V30ResponseValidator, APICallResponseUnmarshaller
):
schema_unmarshallers_factory = oas30_read_schema_unmarshallers_factory
class V31ResponseDataUnmarshaller(
V31ResponseDataValidator, APICallResponseDataUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
class V31ResponseHeadersUnmarshaller(
V31ResponseHeadersValidator, APICallResponseHeadersUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
class V31ResponseUnmarshaller(
V31ResponseValidator, APICallResponseUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
class V31WebhookResponseDataUnmarshaller(
V31WebhookResponseDataValidator, WebhookResponseDataUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
class V31WebhookResponseHeadersUnmarshaller(
V31WebhookResponseHeadersValidator, WebhookResponseHeadersUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
class V31WebhookResponseUnmarshaller(
V31WebhookResponseValidator, WebhookResponseUnmarshaller
):
schema_unmarshallers_factory = oas31_schema_unmarshallers_factory
|