123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
-
- import typing
- import uuid
- from http import HTTPStatus
- import functools
-
- import marshmallow
-
- from hapic.buffer import DecorationBuffer
- from hapic.context import ContextInterface
- from hapic.decorator import DecoratedController
- from hapic.decorator import DECORATION_ATTRIBUTE_NAME
- from hapic.decorator import ControllerReference
- from hapic.decorator import ExceptionHandlerControllerWrapper
- from hapic.decorator import InputBodyControllerWrapper
- from hapic.decorator import InputHeadersControllerWrapper
- from hapic.decorator import InputPathControllerWrapper
- from hapic.decorator import InputQueryControllerWrapper
- from hapic.decorator import InputFilesControllerWrapper
- from hapic.decorator import OutputBodyControllerWrapper
- from hapic.decorator import OutputHeadersControllerWrapper
- from hapic.decorator import OutputFileControllerWrapper
- from hapic.description import InputBodyDescription
- from hapic.description import ErrorDescription
- from hapic.description import InputFormsDescription
- from hapic.description import InputHeadersDescription
- from hapic.description import InputPathDescription
- from hapic.description import InputQueryDescription
- from hapic.description import InputFilesDescription
- from hapic.description import OutputBodyDescription
- from hapic.description import OutputHeadersDescription
- from hapic.description import OutputFileDescription
- from hapic.doc import DocGenerator
- from hapic.processor import ProcessorInterface
- from hapic.processor import MarshmallowInputProcessor
- from hapic.processor import MarshmallowInputFilesProcessor
- from hapic.processor import MarshmallowOutputProcessor
-
-
- class ErrorResponseSchema(marshmallow.Schema):
- message = marshmallow.fields.String(required=True)
- details = marshmallow.fields.Dict(required=False, missing={})
- code = marshmallow.fields.Raw(missing=None)
-
-
- _default_global_error_schema = ErrorResponseSchema()
-
-
-
-
-
-
- class Hapic(object):
- def __init__(self):
- self._buffer = DecorationBuffer()
- self._controllers = []
- self._context = None
-
-
-
-
- def context_getter():
- return self._context
-
- self._context_getter = context_getter
-
-
-
- @property
- def controllers(self) -> typing.List[DecoratedController]:
- return self._controllers
-
- @property
- def context(self) -> ContextInterface:
- return self._context
-
- def with_api_doc(self):
- def decorator(func):
- @functools.wraps(func)
- def wrapper(*args, **kwargs):
- return func(*args, **kwargs)
-
- token = uuid.uuid4().hex
- setattr(wrapper, DECORATION_ATTRIBUTE_NAME, token)
- setattr(func, DECORATION_ATTRIBUTE_NAME, token)
-
- description = self._buffer.get_description()
-
- reference = ControllerReference(
- wrapper=wrapper,
- wrapped=func,
- token=token,
- )
- decorated_controller = DecoratedController(
- reference=reference,
- description=description,
- name=func.__name__,
- )
- self._buffer.clear()
- self._controllers.append(decorated_controller)
- return wrapper
-
- return decorator
-
- def set_context(self, context: ContextInterface) -> None:
- assert not self._context
- self._context = context
-
- def output_body(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowOutputProcessor()
- processor.schema = schema
- context = context or self._context_getter
- decoration = OutputBodyControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.output_body = OutputBodyDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def output_headers(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowOutputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = OutputHeadersControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.output_headers = OutputHeadersDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
-
-
- def output_file(
- self,
- output_types: typing.List[str],
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- decoration = OutputFileControllerWrapper(
- output_types=output_types,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.output_file = OutputFileDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_headers(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputHeadersControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_headers = InputHeadersDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_path(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputPathControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_path = InputPathDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_query(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputQueryControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_query = InputQueryDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_body(
- self,
- schema: typing.Any,
- processor: ProcessorInterface = None,
- context: ContextInterface = None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputBodyControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_body = InputBodyDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_forms(
- self,
- schema: typing.Any,
- processor: ProcessorInterface=None,
- context: ContextInterface=None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputBodyControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_forms = InputFormsDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def input_files(
- self,
- schema: typing.Any,
- processor: ProcessorInterface=None,
- context: ContextInterface=None,
- error_http_code: HTTPStatus = HTTPStatus.BAD_REQUEST,
- default_http_code: HTTPStatus = HTTPStatus.OK,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- processor = processor or MarshmallowInputFilesProcessor()
- processor.schema = schema
- context = context or self._context_getter
-
- decoration = InputFilesControllerWrapper(
- context=context,
- processor=processor,
- error_http_code=error_http_code,
- default_http_code=default_http_code,
- )
-
- def decorator(func):
- self._buffer.input_files = InputFilesDescription(decoration)
- return decoration.get_wrapper(func)
- return decorator
-
- def handle_exception(
- self,
- handled_exception_class: typing.Type[Exception],
- http_code: HTTPStatus = HTTPStatus.INTERNAL_SERVER_ERROR,
- context: ContextInterface = None,
- ) -> typing.Callable[[typing.Callable[..., typing.Any]], typing.Any]:
- context = context or self._context_getter
-
- decoration = ExceptionHandlerControllerWrapper(
- handled_exception_class,
- context,
-
- schema=_default_global_error_schema,
- http_code=http_code,
- )
-
- def decorator(func):
- self._buffer.errors.append(ErrorDescription(decoration))
- return decoration.get_wrapper(func)
- return decorator
-
- def generate_doc(self, app):
-
-
-
- app = app or self._context.get_app()
- doc_generator = DocGenerator()
- return doc_generator.get_doc(self._controllers, app)
|