Files
clawdbot/src/commands/doctor-gateway-health.ts
Peter Steinberger c379191f80 chore: migrate to oxlint and oxfmt
Co-authored-by: Christoph Nakazawa <christoph.pojer@gmail.com>
2026-01-14 15:02:19 +00:00

53 lines
1.7 KiB
TypeScript

import type { ClawdbotConfig } from "../config/config.js";
import { buildGatewayConnectionDetails, callGateway } from "../gateway/call.js";
import { collectChannelStatusIssues } from "../infra/channels-status-issues.js";
import type { RuntimeEnv } from "../runtime.js";
import { note } from "../terminal/note.js";
import { healthCommand } from "./health.js";
import { formatHealthCheckFailure } from "./health-format.js";
export async function checkGatewayHealth(params: { runtime: RuntimeEnv; cfg: ClawdbotConfig }) {
const gatewayDetails = buildGatewayConnectionDetails({ config: params.cfg });
let healthOk = false;
try {
await healthCommand({ json: false, timeoutMs: 10_000 }, params.runtime);
healthOk = true;
} catch (err) {
const message = String(err);
if (message.includes("gateway closed")) {
note("Gateway not running.", "Gateway");
note(gatewayDetails.message, "Gateway connection");
} else {
params.runtime.error(formatHealthCheckFailure(err));
}
}
if (healthOk) {
try {
const status = await callGateway<Record<string, unknown>>({
method: "channels.status",
params: { probe: true, timeoutMs: 5000 },
timeoutMs: 6000,
});
const issues = collectChannelStatusIssues(status);
if (issues.length > 0) {
note(
issues
.map(
(issue) =>
`- ${issue.channel} ${issue.accountId}: ${issue.message}${
issue.fix ? ` (${issue.fix})` : ""
}`,
)
.join("\n"),
"Channel warnings",
);
}
} catch {
// ignore: doctor already reported gateway health
}
}
return { healthOk };
}