Skip to content

Commit 014c10d

Browse files
committed
Add API Gateway summary & description
1 parent 0ecd93d commit 014c10d

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

runtime/chalicelib/route/health_check.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66

77

88
@health_check_api.route("/readyz", methods=["GET"])
9+
@chalice_util.api_gateway_desc(summary="Readiness probe", description="Check if the service is ready")
910
@chalice_util.exception_catcher
1011
def readyz() -> dict[str, str]:
1112
return {"status": "ok"}
1213

1314

1415
@health_check_api.route("/livez", methods=["GET"])
16+
@chalice_util.api_gateway_desc(summary="Liveness probe", description="Check if the service is live")
1517
@chalice_util.exception_catcher
1618
def livez() -> dict[str, str]:
1719
return {"status": "ok"}

runtime/chalicelib/route/index.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77

88
@index_api.route("/service", methods=["GET"])
9+
@chalice_util.api_gateway_desc(summary="Service identity", description="Get service identity")
910
@chalice_util.exception_catcher
1011
def get_service_identity() -> dict[str, str]:
1112
return {"service": "notico"}

runtime/chalicelib/route/send_manager.py

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212

1313
@send_manager_api.route("/", methods=["GET"])
14+
@chalice_util.api_gateway_desc(summary="List send manager services", description="List all send manager services")
1415
@chalice_util.exception_catcher
1516
def list_send_manager_services() -> list[dict[str, str | bool | dict]]:
1617
return [
@@ -24,6 +25,7 @@ def list_send_manager_services() -> list[dict[str, str | bool | dict]]:
2425

2526

2627
@send_manager_api.route("/{service_name}", methods=["POST"])
28+
@chalice_util.api_gateway_desc(summary="Send message", description="Send message using the service")
2729
@chalice_util.exception_catcher
2830
def send_message(service_name: str) -> dict[str, str | None]:
2931
request: chalice.app.Request = send_manager_api.current_request

runtime/chalicelib/route/template_manager.py

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313

1414
@template_manager_api.route("/", methods=["GET"])
15+
@chalice_util.api_gateway_desc(
16+
summary="List template manager services",
17+
description="List all template manager services",
18+
)
1519
@chalice_util.exception_catcher
1620
def list_template_manager_services() -> list[dict[str, str]]:
1721
return [
@@ -25,6 +29,7 @@ def list_template_manager_services() -> list[dict[str, str]]:
2529

2630

2731
@template_manager_api.route("/{service_name}", methods=["GET"])
32+
@chalice_util.api_gateway_desc(summary="List templates", description="List all templates in the service")
2833
@chalice_util.exception_catcher
2934
def list_templates(service_name: str) -> list[dict[str, str]]:
3035
if service_name not in template_manager.template_managers:
@@ -33,6 +38,7 @@ def list_templates(service_name: str) -> list[dict[str, str]]:
3338

3439

3540
@template_manager_api.route("/{service_name}/{template_code}", methods=["GET", "POST", "PUT", "DELETE"])
41+
@chalice_util.api_gateway_desc(summary="CRUD template", description="Create, Read, Update, Delete template")
3642
@chalice_util.exception_catcher
3743
def crud_template(service_name: str, template_code: str) -> dict[str, str]:
3844
request: chalice.app.Request = template_manager_api.current_request
@@ -62,6 +68,7 @@ def crud_template(service_name: str, template_code: str) -> dict[str, str]:
6268

6369

6470
@template_manager_api.route("/{service_name}/{template_code}/render", methods=["POST"])
71+
@chalice_util.api_gateway_desc(summary="Render template", description="Render template with given context")
6572
@chalice_util.exception_catcher
6673
def render_template(service_name: str, template_code: str) -> dict[str, str]:
6774
request: chalice.app.Request = template_manager_api.current_request

runtime/chalicelib/util/chalice_util.py

+9
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@
66

77
Param = typing.ParamSpec("Param")
88
RetType = typing.TypeVar("RetType")
9+
FuncType = typing.Callable[Param, RetType]
910
ReqHandlerType = typing.Callable[[chalice.app.Request], chalice.app.Response]
1011

1112

13+
def api_gateway_desc(summary: str, description: str | None = None) -> typing.Callable[[FuncType], FuncType]:
14+
def decorator(func: FuncType) -> FuncType:
15+
func.__doc__ = f"{summary}\n{description}" if description else summary
16+
return func
17+
18+
return decorator
19+
20+
1221
def exception_catcher(func: typing.Callable[Param, RetType]) -> typing.Callable[Param, RetType]:
1322
@functools.wraps(wrapped=func)
1423
def wrapper(*args: Param.args, **kwargs: Param.kwargs) -> RetType:

0 commit comments

Comments
 (0)