# coding: utf-8 # OceanBase Deploy. # Copyright (C) 2021 OceanBase # # This file is part of OceanBase Deploy. # # OceanBase Deploy is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # OceanBase Deploy is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with OceanBase Deploy. If not, see . from typing import List from fastapi import APIRouter, Path from service.api.response import OBResponse, DataList from service.model.components import Component, ComponentInfo, ParameterMeta, ParameterRequest, ParameterFilter import service.api.response_utils as response_utils import service.handler.handler_utils as handler_utils from service.common import log router = APIRouter() @router.post("/components/parameters", response_model=OBResponse[DataList[ParameterMeta]], description='query component parameters', operation_id='queryComponentParameters', tags=['Components']) async def list_component_parameters(parameter_request: ParameterRequest = ...): handler = handler_utils.new_component_handler() parameters = handler.list_component_parameters(parameter_request) return response_utils.new_ok_response(parameters) @router.get("/components/{component}", response_model=OBResponse[Component], description='query component by component name', tags=['Components'], operation_id='queryComponentByComponentName') async def get_component(component: str = Path(description='component name')): handler = handler_utils.new_component_handler() try: ret = handler.get_component(component) if ret is None: return response_utils.new_not_found_exception(Exception("component {0} not found".format(component))) else: return response_utils.new_ok_response(ret) except Exception as ex: return response_utils.new_service_unavailable_exception(ex) @router.get("/components", response_model=OBResponse[DataList[Component]], description='query all component versions', operation_id='queryAllComponentVersions', tags=['Components']) async def list_components(): handler = handler_utils.new_component_handler() try: components = handler.list_components() return response_utils.new_ok_response(components) except Exception as ex: return response_utils.new_service_unavailable_exception(ex)