mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 19:19:55 +00:00
6bdd1a6756
Main motivation behind this change is to be able to catch exceptions as per raise_for_errors() helpers, but to inspect state of exceptions instead of just getting a rendered string. This allows rendering exceptions into JSON, for example.
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""OpenAPI core operations models module"""
|
|
from openapi_core.schema.responses.exceptions import InvalidResponse
|
|
|
|
|
|
class Operation(object):
|
|
"""Represents an OpenAPI Operation."""
|
|
|
|
def __init__(
|
|
self, http_method, path_name, responses, parameters,
|
|
request_body=None, deprecated=False, operation_id=None, tags=None):
|
|
self.http_method = http_method
|
|
self.path_name = path_name
|
|
self.responses = dict(responses)
|
|
self.parameters = dict(parameters)
|
|
self.request_body = request_body
|
|
self.deprecated = deprecated
|
|
self.operation_id = operation_id
|
|
self.tags = tags
|
|
|
|
def __getitem__(self, name):
|
|
return self.parameters[name]
|
|
|
|
def get_response(self, http_status='default'):
|
|
# @todo: move to Responses object
|
|
try:
|
|
return self.responses[http_status]
|
|
except KeyError:
|
|
# try range
|
|
http_status_range = '{0}XX'.format(http_status[0])
|
|
if http_status_range in self.responses:
|
|
return self.responses[http_status_range]
|
|
|
|
if 'default' not in self.responses:
|
|
raise InvalidResponse(http_status, self.responses)
|
|
|
|
return self.responses['default']
|