245 lines
8.0 KiB
TypeScript
245 lines
8.0 KiB
TypeScript
/**
|
|
* Resolve how to invoke the Fusion CLI from server-side code (automations,
|
|
* generated commands, docs snippets).
|
|
*
|
|
* Order of preference:
|
|
* 1. `fn` — short canonical name
|
|
* 2. `fusion` — long alias name
|
|
* 3. `npx -y runfusion.ai` — zero-install fallback that always works
|
|
*
|
|
* The npm bin name on disk varies by install path and platform. Prefer
|
|
* reading the installed package manifest from the resolved binary path so we
|
|
* don't execute older buggy global installs just to discover their version.
|
|
*/
|
|
|
|
import { spawn } from "node:child_process";
|
|
import { existsSync, readFileSync, realpathSync } from "node:fs";
|
|
import { platform, tmpdir } from "node:os";
|
|
import { posix, win32 } from "node:path";
|
|
|
|
interface ProbeResult {
|
|
exitCode: number | null;
|
|
stdout: string;
|
|
stderr: string;
|
|
}
|
|
|
|
/**
|
|
* Run a command with an explicit argv (no shell) and capture stdout/stderr.
|
|
* Always resolves; on spawn failure exitCode is null and stderr carries the
|
|
* error message. Used here for safe, dependency-free PATH lookups and
|
|
* version probes — do not use for general command execution.
|
|
*/
|
|
function runProbe(command: string, args: string[], timeoutMs: number): Promise<ProbeResult> {
|
|
return new Promise((resolve) => {
|
|
let stdout = "";
|
|
let stderr = "";
|
|
// Run probes from the OS temp directory so a buggy CLI version (older
|
|
// `runfusion.ai` releases initialise an engine — and a fresh
|
|
// `.fusion/<project>/.fusion/` tree — even on `--version`) cannot leave
|
|
// artefacts under whichever project happens to be the parent's cwd.
|
|
const child = spawn(command, args, {
|
|
stdio: ["ignore", "pipe", "pipe"],
|
|
shell: false,
|
|
cwd: tmpdir(),
|
|
});
|
|
const timer = setTimeout(() => {
|
|
try { child.kill("SIGKILL"); } catch { /* ignore */ }
|
|
}, timeoutMs);
|
|
child.stdout?.on("data", (chunk: Buffer) => { stdout += chunk.toString("utf8"); });
|
|
child.stderr?.on("data", (chunk: Buffer) => { stderr += chunk.toString("utf8"); });
|
|
child.on("error", (err) => {
|
|
clearTimeout(timer);
|
|
resolve({ exitCode: null, stdout, stderr: stderr || err.message });
|
|
});
|
|
child.on("close", (exitCode) => {
|
|
clearTimeout(timer);
|
|
resolve({ exitCode, stdout, stderr });
|
|
});
|
|
});
|
|
}
|
|
|
|
/** npm package that publishes the `fn`/`fusion` bins. Used for npx fallback. */
|
|
export const FN_NPM_PACKAGE = "runfusion.ai";
|
|
|
|
/** Recommended one-line installer URL surfaced in UI/docs. */
|
|
export const FN_INSTALL_CURL = "curl -fsSL https://runfusion.ai/install.sh | sh";
|
|
|
|
/** Recommended npm install command surfaced in UI/docs. */
|
|
export const FN_INSTALL_NPM = `npm install -g ${FN_NPM_PACKAGE}`;
|
|
|
|
/** Zero-install invocation prefix used when no global binary is present. */
|
|
export const FN_NPX_INVOCATION = `npx -y ${FN_NPM_PACKAGE}`;
|
|
|
|
/** Candidate binary names checked, in preference order. */
|
|
const CANDIDATES = ["fn", "fusion"] as const;
|
|
const FUSION_PACKAGE_NAMES = new Set(["runfusion.ai", "@runfusion/fusion"]);
|
|
|
|
type PathApi = Pick<typeof posix, "dirname" | "resolve" | "sep">;
|
|
|
|
export type FnBinaryName = (typeof CANDIDATES)[number];
|
|
|
|
export interface FnBinaryStatus {
|
|
/** True if a working `fn` or `fusion` binary was found on PATH. */
|
|
installed: boolean;
|
|
/** Which binary name resolved, if any. */
|
|
binary?: FnBinaryName;
|
|
/** Absolute path to the resolved binary, when available. */
|
|
path?: string;
|
|
/** Version reported by `<bin> --version`, when available. */
|
|
version?: string;
|
|
/**
|
|
* Command prefix to use when scripting against the CLI. This is either
|
|
* the binary name itself (when installed) or {@link FN_NPX_INVOCATION}.
|
|
*/
|
|
invocation: string;
|
|
}
|
|
|
|
/**
|
|
* Look up an executable on PATH using the platform-appropriate command.
|
|
* Returns the first absolute path or undefined.
|
|
*/
|
|
async function whichBinary(name: string): Promise<string | undefined> {
|
|
const isWindows = platform() === "win32";
|
|
const lookup = isWindows ? "where" : "which";
|
|
const result = await runProbe(lookup, [name], 5_000);
|
|
if (result.exitCode !== 0) return undefined;
|
|
const firstLine = result.stdout.split(/\r?\n/).map((s) => s.trim()).find(Boolean);
|
|
return firstLine || undefined;
|
|
}
|
|
|
|
function getPathApi(pathValue: string): PathApi {
|
|
return /^[A-Za-z]:[\\/]/.test(pathValue) || pathValue.includes("\\")
|
|
? win32
|
|
: posix;
|
|
}
|
|
|
|
function readPackageVersionFromPath(startPath: string): string | undefined {
|
|
const pathApi = getPathApi(startPath);
|
|
let dir = pathApi.dirname(startPath);
|
|
|
|
for (let i = 0; i < 8; i += 1) {
|
|
const packageJsonPath = pathApi.resolve(dir, "package.json");
|
|
if (existsSync(packageJsonPath)) {
|
|
try {
|
|
const parsed = JSON.parse(readFileSync(packageJsonPath, "utf-8")) as {
|
|
name?: string;
|
|
version?: string;
|
|
};
|
|
if (
|
|
typeof parsed.name === "string"
|
|
&& typeof parsed.version === "string"
|
|
&& FUSION_PACKAGE_NAMES.has(parsed.name)
|
|
) {
|
|
return parsed.version;
|
|
}
|
|
} catch {
|
|
// Ignore malformed manifests and keep walking upward.
|
|
}
|
|
}
|
|
|
|
const parent = pathApi.dirname(dir);
|
|
if (parent === dir) break;
|
|
dir = parent;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
function resolveShimTargets(resolvedPath: string): string[] {
|
|
const pathApi = getPathApi(resolvedPath);
|
|
const basedir = pathApi.dirname(resolvedPath);
|
|
let contents: string;
|
|
|
|
try {
|
|
contents = readFileSync(resolvedPath, "utf-8");
|
|
} catch {
|
|
return [];
|
|
}
|
|
|
|
const targets = new Set<string>();
|
|
const pattern = /([^\r\n"'`]*node_modules[\\/](?:runfusion\.ai|@runfusion[\\/](?:fusion))[^\r\n"'`]*(?:\.js|package\.json))/gi;
|
|
|
|
for (const match of contents.matchAll(pattern)) {
|
|
const raw = match[1];
|
|
if (!raw) continue;
|
|
|
|
const trimmed = raw.trim().replace(/^['"]|['"]$/g, "");
|
|
const normalized = trimmed
|
|
.replace(/^%~?dp0%?/i, "")
|
|
.replace(/^\$basedir/i, "")
|
|
.replace(/^\$PSScriptRoot/i, "")
|
|
.replace(/^[\\/]+/, "")
|
|
.replace(/[\\/]/g, pathApi.sep);
|
|
|
|
targets.add(pathApi.resolve(basedir, normalized));
|
|
}
|
|
|
|
return Array.from(targets);
|
|
}
|
|
|
|
function readVersionFromResolvedBinaryPath(resolvedPath: string): string | undefined {
|
|
const candidatePaths = new Set<string>([resolvedPath]);
|
|
|
|
try {
|
|
candidatePaths.add(realpathSync(resolvedPath));
|
|
} catch {
|
|
// Fall back to the original resolved path.
|
|
}
|
|
|
|
for (const shimTarget of resolveShimTargets(resolvedPath)) {
|
|
candidatePaths.add(shimTarget);
|
|
}
|
|
|
|
for (const candidatePath of candidatePaths) {
|
|
const version = readPackageVersionFromPath(candidatePath);
|
|
if (version) return version;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Best-effort version probe. Returns undefined if the binary refuses the
|
|
* flag or produces no parseable output — the caller should treat undefined
|
|
* as "installed but version unknown" rather than "not installed".
|
|
*/
|
|
async function probeVersion(binary: string): Promise<string | undefined> {
|
|
const result = await runProbe(binary, ["--version"], 10_000);
|
|
if (result.exitCode !== 0) return undefined;
|
|
const text = (result.stdout || result.stderr).trim();
|
|
if (!text) return undefined;
|
|
// Match the first semver-ish token so we strip prefixes like "fn v0.13.0".
|
|
const match = text.match(/\d+\.\d+\.\d+(?:-[\w.]+)?/);
|
|
return match ? match[0] : text.split(/\s+/)[0];
|
|
}
|
|
|
|
/**
|
|
* Detect whether the `fn` (or `fusion`) CLI is installed on PATH and
|
|
* return the recommended invocation prefix.
|
|
*
|
|
* Never throws — on any error it falls through to the npx fallback so
|
|
* callers can rely on `invocation` always being usable.
|
|
*/
|
|
export async function detectFnBinary(): Promise<FnBinaryStatus> {
|
|
for (const candidate of CANDIDATES) {
|
|
try {
|
|
const resolvedPath = await whichBinary(candidate);
|
|
if (!resolvedPath) continue;
|
|
const version = readVersionFromResolvedBinaryPath(resolvedPath) ?? await probeVersion(candidate);
|
|
return {
|
|
installed: true,
|
|
binary: candidate,
|
|
path: resolvedPath,
|
|
version,
|
|
invocation: candidate,
|
|
};
|
|
} catch {
|
|
// Try the next candidate.
|
|
}
|
|
}
|
|
return {
|
|
installed: false,
|
|
invocation: FN_NPX_INVOCATION,
|
|
};
|
|
}
|