83 lines
3.0 KiB
TypeScript
83 lines
3.0 KiB
TypeScript
import { resolveClawdbotPackageRoot } from "../infra/clawdbot-root.js";
|
|
import {
|
|
checkUpdateStatus,
|
|
compareSemverStrings,
|
|
type UpdateCheckResult,
|
|
} from "../infra/update-check.js";
|
|
import { VERSION } from "../version.js";
|
|
|
|
export async function getUpdateCheckResult(params: {
|
|
timeoutMs: number;
|
|
fetchGit: boolean;
|
|
includeRegistry: boolean;
|
|
}): Promise<UpdateCheckResult> {
|
|
const root = await resolveClawdbotPackageRoot({
|
|
moduleUrl: import.meta.url,
|
|
argv1: process.argv[1],
|
|
cwd: process.cwd(),
|
|
});
|
|
return await checkUpdateStatus({
|
|
root,
|
|
timeoutMs: params.timeoutMs,
|
|
fetchGit: params.fetchGit,
|
|
includeRegistry: params.includeRegistry,
|
|
});
|
|
}
|
|
|
|
export function formatUpdateOneLiner(update: UpdateCheckResult): string {
|
|
const parts: string[] = [];
|
|
if (update.installKind === "git" && update.git) {
|
|
const branch = update.git.branch ? `git ${update.git.branch}` : "git";
|
|
parts.push(branch);
|
|
if (update.git.upstream) parts.push(`↔ ${update.git.upstream}`);
|
|
if (update.git.dirty === true) parts.push("dirty");
|
|
if (update.git.behind != null && update.git.ahead != null) {
|
|
if (update.git.behind === 0 && update.git.ahead === 0) {
|
|
parts.push("up to date");
|
|
} else if (update.git.behind > 0 && update.git.ahead === 0) {
|
|
parts.push(`behind ${update.git.behind}`);
|
|
} else if (update.git.behind === 0 && update.git.ahead > 0) {
|
|
parts.push(`ahead ${update.git.ahead}`);
|
|
} else if (update.git.behind > 0 && update.git.ahead > 0) {
|
|
parts.push(
|
|
`diverged (ahead ${update.git.ahead}, behind ${update.git.behind})`,
|
|
);
|
|
}
|
|
}
|
|
if (update.git.fetchOk === false) parts.push("fetch failed");
|
|
|
|
if (update.registry?.latestVersion) {
|
|
const cmp = compareSemverStrings(VERSION, update.registry.latestVersion);
|
|
if (cmp === 0) parts.push(`npm latest ${update.registry.latestVersion}`);
|
|
else if (cmp != null && cmp < 0)
|
|
parts.push(`npm update ${update.registry.latestVersion}`);
|
|
else
|
|
parts.push(`npm latest ${update.registry.latestVersion} (local newer)`);
|
|
} else if (update.registry?.error) {
|
|
parts.push("npm latest unknown");
|
|
}
|
|
} else {
|
|
parts.push(
|
|
update.packageManager !== "unknown" ? update.packageManager : "pkg",
|
|
);
|
|
if (update.registry?.latestVersion) {
|
|
const cmp = compareSemverStrings(VERSION, update.registry.latestVersion);
|
|
if (cmp === 0) parts.push(`npm latest ${update.registry.latestVersion}`);
|
|
else if (cmp != null && cmp < 0) {
|
|
parts.push(`npm update ${update.registry.latestVersion}`);
|
|
} else {
|
|
parts.push(`npm latest ${update.registry.latestVersion} (local newer)`);
|
|
}
|
|
} else if (update.registry?.error) {
|
|
parts.push("npm latest unknown");
|
|
}
|
|
}
|
|
|
|
if (update.deps) {
|
|
if (update.deps.status === "ok") parts.push("deps ok");
|
|
if (update.deps.status === "missing") parts.push("deps missing");
|
|
if (update.deps.status === "stale") parts.push("deps stale");
|
|
}
|
|
return `Update: ${parts.join(" · ")}`;
|
|
}
|