File size: 7,300 Bytes
eb3f11e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | // `openclaw update status`: combines install metadata, configured channel, and remote update checks.
import { sanitizeTerminalText } from "../../../packages/terminal-core/src/safe-text.js";
import { getTerminalTableWidth, renderTable } from "../../../packages/terminal-core/src/table.js";
import { theme } from "../../../packages/terminal-core/src/theme.js";
import { readSessionSqliteMigrationWarnings } from "../../commands/doctor-session-sqlite-warnings.js";
import { collectNodeRuntimeFindings } from "../../commands/node-runtime-diagnostics.js";
import {
formatUpdateAvailableHint,
formatUpdateOneLiner,
resolveStatusRegistryUpdateChannel,
resolveUpdateAvailability,
} from "../../commands/status.update.js";
import { readSourceConfigBestEffort } from "../../config/config.js";
import {
formatDeferredPluginMigration,
readDeferredPluginMigrations,
} from "../../infra/deferred-plugin-migrations.js";
import { formatErrorMessage } from "../../infra/errors.js";
import {
normalizeUpdateChannel,
resolveUpdateChannelDisplay,
} from "../../infra/update-channels.js";
import { checkUpdateStatus, formatGitInstallLabel } from "../../infra/update-check.js";
import { readUpdateRunReportHealth } from "../../infra/update-run-report-health.js";
import { renderUpdateRunReport } from "../../infra/update-run-report.js";
import { readUpdateRunStatus } from "../../infra/update-run-status.js";
import { redactSensitiveText } from "../../logging/redact.js";
import { defaultRuntime } from "../../runtime.js";
import { VERSION } from "../../version.js";
import { parseTimeoutMsOrExit, resolveUpdateRoot, type UpdateStatusOptions } from "./shared.js";
/** Print update status in JSON or table form for scripts and humans. */
export async function updateStatusCommand(opts: UpdateStatusOptions): Promise<void> {
const timeoutMs = parseTimeoutMsOrExit(opts.timeout);
if (timeoutMs === null) {
return;
}
const [root, config, runtimeFindings] = await Promise.all([
resolveUpdateRoot(),
readSourceConfigBestEffort(),
collectNodeRuntimeFindings(),
]);
const configChannel = normalizeUpdateChannel(config.update?.channel);
const update = await checkUpdateStatus({
root,
timeoutMs,
fetchGit: true,
useDetachedDevUpstream: configChannel === "dev",
includeRegistry: true,
resolveRegistryChannel: ({ installKind, git }) =>
resolveStatusRegistryUpdateChannel({
configChannel,
installKind,
git,
}),
});
const channelInfo = resolveUpdateChannelDisplay({
configChannel,
currentVersion: VERSION,
installKind: update.installKind,
gitTag: update.git?.tag ?? null,
gitBranch: update.git?.branch ?? null,
});
const channelLabel = channelInfo.label;
const updateAvailability = resolveUpdateAvailability(update);
const runStatus = readUpdateRunStatus();
const safeMessage = (message: string) =>
sanitizeTerminalText(redactSensitiveText(message, { mode: "tools" }));
const migrationWarnings: string[] = [];
const migrationWarningErrors: string[] = [];
for (const readWarnings of [
() => readDeferredPluginMigrations().map(formatDeferredPluginMigration),
() => readSessionSqliteMigrationWarnings(),
]) {
try {
migrationWarnings.push(...readWarnings().map(safeMessage));
} catch (error) {
migrationWarningErrors.push(safeMessage(formatErrorMessage(error)));
}
}
const migrationWarningsError = migrationWarningErrors.join("\n");
if (opts.json) {
defaultRuntime.writeJson({
update,
channel: {
value: channelInfo.channel,
source: channelInfo.source,
label: channelLabel,
config: configChannel,
},
availability: updateAvailability,
...(runtimeFindings.length > 0 ? { runtimeFindings } : {}),
...(migrationWarnings.length > 0 ? { migrationWarnings } : {}),
...(migrationWarningsError ? { migrationWarningsError } : {}),
...runStatus,
});
return;
}
const gitLabel = formatGitInstallLabel(update);
const updateLine = formatUpdateOneLiner(update).replace(/^Update:\s*/i, "");
const tableWidth = getTerminalTableWidth();
const installLabel =
update.installKind === "git"
? `git (${update.root ?? "unknown"})`
: update.installKind === "package"
? update.packageManager
: "unknown";
const rows = [
{ Item: "Install", Value: installLabel },
{ Item: "Channel", Value: channelLabel },
...(gitLabel ? [{ Item: "Git", Value: gitLabel }] : []),
{
Item: "Update",
Value: updateAvailability.available ? theme.warn(`available · ${updateLine}`) : updateLine,
},
];
defaultRuntime.log(theme.heading("OpenClaw update status"));
defaultRuntime.log("");
for (const finding of runtimeFindings) {
const color =
finding.severity === "error"
? theme.error
: finding.severity === "warning"
? theme.warn
: theme.muted;
defaultRuntime.log(color(finding.message));
if (finding.fixHint) {
defaultRuntime.log(finding.fixHint);
}
defaultRuntime.log("");
}
defaultRuntime.log(
renderTable({
width: tableWidth,
columns: [
{ key: "Item", header: "Item", minWidth: 10 },
{ key: "Value", header: "Value", flex: true, minWidth: 24 },
],
rows,
}).trimEnd(),
);
defaultRuntime.log("");
for (const warning of migrationWarnings) {
defaultRuntime.log(theme.warn(`Warning: ${warning}`));
}
if (migrationWarningsError) {
defaultRuntime.log(
theme.warn(`Pending migration status unavailable: ${migrationWarningsError}`),
);
}
if (migrationWarnings.length > 0 || migrationWarningsError) {
defaultRuntime.log("");
}
if ("runReconciliationError" in runStatus) {
defaultRuntime.log(
theme.warn(`Update run reconciliation failed: ${runStatus.runReconciliationError}`),
);
defaultRuntime.log("");
}
if ("runStatusError" in runStatus) {
defaultRuntime.log(theme.warn(`Update run status unavailable: ${runStatus.runStatusError}`));
defaultRuntime.log("");
} else {
const { activeRun, lastRun, staleRun, abandonedRun, advisories } = runStatus;
const run = activeRun ?? lastRun;
for (const advisory of advisories ?? []) {
if (advisory.runId !== run?.runId) {
defaultRuntime.log(advisory.message);
}
}
if (run) {
if (staleRun) {
defaultRuntime.log(`Update ${run.runId}: ${staleRun.guidance}`);
}
if (abandonedRun) {
defaultRuntime.log(
"Abandoned update detected; the Gateway will reconcile its recorded outcome. Run openclaw update repair to reconcile it now.",
);
}
const report = renderUpdateRunReport(
run,
run.status === "failed"
? { currentHealth: await readUpdateRunReportHealth(run.verification, { timeoutMs }) }
: {},
);
if (!abandonedRun && !staleRun) {
defaultRuntime.log(report.headline);
}
for (const line of report.lines) {
defaultRuntime.log(line);
}
defaultRuntime.log("");
}
}
const updateHint = formatUpdateAvailableHint(update);
if (updateHint) {
defaultRuntime.log(theme.warn(updateHint));
}
}
|