Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: b7e51cf90950cdd3049ac3c7a3a949717b8ba261 Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com> Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com> Reviewed-by: @gumadeiras
102 lines
3.5 KiB
TypeScript
102 lines
3.5 KiB
TypeScript
import type { Command } from "commander";
|
|
import type { DaemonInstallOptions, GatewayRpcOpts } from "./types.js";
|
|
import { inheritOptionFromParent } from "../command-options.js";
|
|
import {
|
|
runDaemonInstall,
|
|
runDaemonRestart,
|
|
runDaemonStart,
|
|
runDaemonStatus,
|
|
runDaemonStop,
|
|
runDaemonUninstall,
|
|
} from "./runners.js";
|
|
|
|
function resolveInstallOptions(
|
|
cmdOpts: DaemonInstallOptions,
|
|
command?: Command,
|
|
): DaemonInstallOptions {
|
|
const parentForce = inheritOptionFromParent<boolean>(command, "force");
|
|
const parentPort = inheritOptionFromParent<string>(command, "port");
|
|
const parentToken = inheritOptionFromParent<string>(command, "token");
|
|
return {
|
|
...cmdOpts,
|
|
force: Boolean(cmdOpts.force || parentForce),
|
|
port: cmdOpts.port ?? parentPort,
|
|
token: cmdOpts.token ?? parentToken,
|
|
};
|
|
}
|
|
|
|
function resolveRpcOptions(cmdOpts: GatewayRpcOpts, command?: Command): GatewayRpcOpts {
|
|
const parentToken = inheritOptionFromParent<string>(command, "token");
|
|
const parentPassword = inheritOptionFromParent<string>(command, "password");
|
|
return {
|
|
...cmdOpts,
|
|
token: cmdOpts.token ?? parentToken,
|
|
password: cmdOpts.password ?? parentPassword,
|
|
};
|
|
}
|
|
|
|
export function addGatewayServiceCommands(parent: Command, opts?: { statusDescription?: string }) {
|
|
parent
|
|
.command("status")
|
|
.description(opts?.statusDescription ?? "Show gateway service status + probe the Gateway")
|
|
.option("--url <url>", "Gateway WebSocket URL (defaults to config/remote/local)")
|
|
.option("--token <token>", "Gateway token (if required)")
|
|
.option("--password <password>", "Gateway password (password auth)")
|
|
.option("--timeout <ms>", "Timeout in ms", "10000")
|
|
.option("--no-probe", "Skip RPC probe")
|
|
.option("--deep", "Scan system-level services", false)
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts, command) => {
|
|
await runDaemonStatus({
|
|
rpc: resolveRpcOptions(cmdOpts, command),
|
|
probe: Boolean(cmdOpts.probe),
|
|
deep: Boolean(cmdOpts.deep),
|
|
json: Boolean(cmdOpts.json),
|
|
});
|
|
});
|
|
|
|
parent
|
|
.command("install")
|
|
.description("Install the Gateway service (launchd/systemd/schtasks)")
|
|
.option("--port <port>", "Gateway port")
|
|
.option("--runtime <runtime>", "Daemon runtime (node|bun). Default: node")
|
|
.option("--token <token>", "Gateway token (token auth)")
|
|
.option("--force", "Reinstall/overwrite if already installed", false)
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts, command) => {
|
|
await runDaemonInstall(resolveInstallOptions(cmdOpts, command));
|
|
});
|
|
|
|
parent
|
|
.command("uninstall")
|
|
.description("Uninstall the Gateway service (launchd/systemd/schtasks)")
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts) => {
|
|
await runDaemonUninstall(cmdOpts);
|
|
});
|
|
|
|
parent
|
|
.command("start")
|
|
.description("Start the Gateway service (launchd/systemd/schtasks)")
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts) => {
|
|
await runDaemonStart(cmdOpts);
|
|
});
|
|
|
|
parent
|
|
.command("stop")
|
|
.description("Stop the Gateway service (launchd/systemd/schtasks)")
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts) => {
|
|
await runDaemonStop(cmdOpts);
|
|
});
|
|
|
|
parent
|
|
.command("restart")
|
|
.description("Restart the Gateway service (launchd/systemd/schtasks)")
|
|
.option("--json", "Output JSON", false)
|
|
.action(async (cmdOpts) => {
|
|
await runDaemonRestart(cmdOpts);
|
|
});
|
|
}
|