Files
TJWaterServerBinary/cli/tjwater_cli/commands_readonly.py
T

230 lines
6.3 KiB
Python

from __future__ import annotations
from typing import Annotated
import typer
from .apps import component_option_app, network_app
from .common import emit_api
from .core import CLIError
from .option_types import ComponentOptionKind
@network_app.command("get-junction-properties")
def network_get_junction_properties(
ctx: typer.Context,
junction: Annotated[str, typer.Option("--junction", help="节点 ID")],
) -> None:
emit_api(
ctx,
summary="读取节点属性成功",
method="GET",
path="/junctions/properties",
params={"junction": junction},
require_auth=True,
)
@network_app.command("get-pipe-properties")
def network_get_pipe_properties(
ctx: typer.Context,
pipe: Annotated[str, typer.Option("--pipe", help="管道 ID")],
) -> None:
emit_api(
ctx,
summary="读取管道属性成功",
method="GET",
path="/pipes/properties",
params={"pipe": pipe},
require_auth=True,
)
@network_app.command("get-all-pipes-properties")
def network_get_all_pipes_properties(ctx: typer.Context) -> None:
emit_api(
ctx,
summary="读取全部管道属性成功",
method="GET",
path="/pipes",
params={},
require_auth=True,
)
@network_app.command("get-reservoir-properties")
def network_get_reservoir_properties(
ctx: typer.Context,
reservoir: Annotated[str, typer.Option("--reservoir", help="水库 ID")],
) -> None:
emit_api(
ctx,
summary="读取水库属性成功",
method="GET",
path="/reservoirs/properties",
params={"reservoir": reservoir},
require_auth=True,
)
@network_app.command("get-all-reservoirs-properties")
def network_get_all_reservoir_properties(ctx: typer.Context) -> None:
emit_api(
ctx,
summary="读取全部水库属性成功",
method="GET",
path="/reservoirs",
params={},
require_auth=True,
)
@network_app.command("get-tank-properties")
def network_get_tank_properties(
ctx: typer.Context,
tank: Annotated[str, typer.Option("--tank", help="水箱 ID")],
) -> None:
emit_api(
ctx,
summary="读取水箱属性成功",
method="GET",
path="/tanks/properties",
params={"tank": tank},
require_auth=True,
)
@network_app.command("get-all-tanks-properties")
def network_get_all_tank_properties(ctx: typer.Context) -> None:
emit_api(
ctx,
summary="读取全部水箱属性成功",
method="GET",
path="/tanks",
params={},
require_auth=True,
)
@network_app.command("get-pump-properties")
def network_get_pump_properties(
ctx: typer.Context,
pump: Annotated[str, typer.Option("--pump", help="水泵 ID")],
) -> None:
emit_api(
ctx,
summary="读取水泵属性成功",
method="GET",
path="/pumps/properties",
params={"pump": pump},
require_auth=True,
)
@network_app.command("get-all-pumps-properties")
def network_get_all_pump_properties(ctx: typer.Context) -> None:
emit_api(
ctx,
summary="读取全部水泵属性成功",
method="GET",
path="/pumps",
params={},
require_auth=True,
)
@network_app.command("get-valve-properties")
def network_get_valve_properties(
ctx: typer.Context,
valve: Annotated[str, typer.Option("--valve", help="阀门 ID")],
) -> None:
emit_api(
ctx,
summary="读取阀门属性成功",
method="GET",
path="/valves/properties",
params={"valve": valve},
require_auth=True,
)
@network_app.command("get-all-valves-properties")
def network_get_all_valve_properties(ctx: typer.Context) -> None:
emit_api(
ctx,
summary="读取全部阀门属性成功",
method="GET",
path="/valves",
params={},
require_auth=True,
)
@component_option_app.command("schema")
def component_option_schema(
ctx: typer.Context,
kind: Annotated[ComponentOptionKind, typer.Option("--kind", help="选项类型,仅支持 time|energy|pump-energy|network")],
pump: Annotated[str | None, typer.Option("--pump", help="pump-energy 时需要的泵 ID")] = None,
) -> None:
path = _component_option_path(kind.value, schema=True)
params: dict[str, str] = {}
if kind == ComponentOptionKind.PUMP_ENERGY and pump:
params["pump"] = pump
emit_api(
ctx,
summary="读取选项 schema 成功",
method="GET",
path=path,
params=params,
require_auth=True,
)
@component_option_app.command("get")
def component_option_get(
ctx: typer.Context,
kind: Annotated[ComponentOptionKind, typer.Option("--kind", help="选项类型,仅支持 time|energy|pump-energy|network")],
pump: Annotated[str | None, typer.Option("--pump", help="pump-energy 时需要的泵 ID")] = None,
) -> None:
path = _component_option_path(kind.value, schema=False)
params: dict[str, str] = {}
if kind == ComponentOptionKind.PUMP_ENERGY:
if not pump:
raise CLIError(
"CLI 参数错误",
code="PUMP_REQUIRED",
message="--pump is required when --kind pump-energy",
exit_code=2,
)
params["pump"] = pump
emit_api(
ctx,
summary="读取选项属性成功",
method="GET",
path=path,
params=params,
require_auth=True,
)
def _component_option_path(kind: str, *, schema: bool) -> str:
routes = {
("time", True): "/network-schemas/time",
("time", False): "/network-options/time",
("energy", True): "/network-schemas/energy",
("energy", False): "/network-options/energy",
("pump-energy", True): "/network-schemas/pump-energy",
("pump-energy", False): "/network-options/pump-energy",
("network", True): "/network-schemas/option",
("network", False): "/network-options",
}
path = routes.get((kind, schema))
if path is None:
raise CLIError(
"CLI 参数错误",
code="INVALID_KIND",
message="--kind must be one of time, energy, pump-energy, network",
exit_code=2,
)
return path