* fix(browser): confine upload paths for file chooser * fix(browser): sanitize suggested download filenames * chore(lint): avoid control regex in download sanitizer * test(browser): cover absolute escape paths * docs(browser): update upload example path * refactor(browser): centralize upload path confinement * fix(infra): harden tmp dir selection * fix(security): harden archive extraction * fix(infra): harden tar extraction filter
710 lines
20 KiB
TypeScript
710 lines
20 KiB
TypeScript
import type { ReadableStream as NodeReadableStream } from "node:stream/web";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { Readable } from "node:stream";
|
|
import { pipeline } from "node:stream/promises";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { extractArchive as extractArchiveSafe } from "../infra/archive.js";
|
|
import { resolveBrewExecutable } from "../infra/brew.js";
|
|
import { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";
|
|
import { runCommandWithTimeout } from "../process/exec.js";
|
|
import { scanDirectoryWithSummary } from "../security/skill-scanner.js";
|
|
import { CONFIG_DIR, ensureDir, resolveUserPath } from "../utils.js";
|
|
import {
|
|
hasBinary,
|
|
loadWorkspaceSkillEntries,
|
|
resolveSkillsInstallPreferences,
|
|
type SkillEntry,
|
|
type SkillInstallSpec,
|
|
type SkillsInstallPreferences,
|
|
} from "./skills.js";
|
|
import { resolveSkillKey } from "./skills/frontmatter.js";
|
|
|
|
export type SkillInstallRequest = {
|
|
workspaceDir: string;
|
|
skillName: string;
|
|
installId: string;
|
|
timeoutMs?: number;
|
|
config?: OpenClawConfig;
|
|
};
|
|
|
|
export type SkillInstallResult = {
|
|
ok: boolean;
|
|
message: string;
|
|
stdout: string;
|
|
stderr: string;
|
|
code: number | null;
|
|
warnings?: string[];
|
|
};
|
|
|
|
function isNodeReadableStream(value: unknown): value is NodeJS.ReadableStream {
|
|
return Boolean(value && typeof (value as NodeJS.ReadableStream).pipe === "function");
|
|
}
|
|
|
|
function summarizeInstallOutput(text: string): string | undefined {
|
|
const raw = text.trim();
|
|
if (!raw) {
|
|
return undefined;
|
|
}
|
|
const lines = raw
|
|
.split("\n")
|
|
.map((line) => line.trim())
|
|
.filter(Boolean);
|
|
if (lines.length === 0) {
|
|
return undefined;
|
|
}
|
|
|
|
const preferred =
|
|
lines.find((line) => /^error\b/i.test(line)) ??
|
|
lines.find((line) => /\b(err!|error:|failed)\b/i.test(line)) ??
|
|
lines.at(-1);
|
|
|
|
if (!preferred) {
|
|
return undefined;
|
|
}
|
|
const normalized = preferred.replace(/\s+/g, " ").trim();
|
|
const maxLen = 200;
|
|
return normalized.length > maxLen ? `${normalized.slice(0, maxLen - 1)}…` : normalized;
|
|
}
|
|
|
|
function formatInstallFailureMessage(result: {
|
|
code: number | null;
|
|
stdout: string;
|
|
stderr: string;
|
|
}): string {
|
|
const code = typeof result.code === "number" ? `exit ${result.code}` : "unknown exit";
|
|
const summary = summarizeInstallOutput(result.stderr) ?? summarizeInstallOutput(result.stdout);
|
|
if (!summary) {
|
|
return `Install failed (${code})`;
|
|
}
|
|
return `Install failed (${code}): ${summary}`;
|
|
}
|
|
|
|
function withWarnings(result: SkillInstallResult, warnings: string[]): SkillInstallResult {
|
|
if (warnings.length === 0) {
|
|
return result;
|
|
}
|
|
return {
|
|
...result,
|
|
warnings: warnings.slice(),
|
|
};
|
|
}
|
|
|
|
function formatScanFindingDetail(
|
|
rootDir: string,
|
|
finding: { message: string; file: string; line: number },
|
|
): string {
|
|
const relativePath = path.relative(rootDir, finding.file);
|
|
const filePath =
|
|
relativePath && relativePath !== "." && !relativePath.startsWith("..")
|
|
? relativePath
|
|
: path.basename(finding.file);
|
|
return `${finding.message} (${filePath}:${finding.line})`;
|
|
}
|
|
|
|
async function collectSkillInstallScanWarnings(entry: SkillEntry): Promise<string[]> {
|
|
const warnings: string[] = [];
|
|
const skillName = entry.skill.name;
|
|
const skillDir = path.resolve(entry.skill.baseDir);
|
|
|
|
try {
|
|
const summary = await scanDirectoryWithSummary(skillDir);
|
|
if (summary.critical > 0) {
|
|
const criticalDetails = summary.findings
|
|
.filter((finding) => finding.severity === "critical")
|
|
.map((finding) => formatScanFindingDetail(skillDir, finding))
|
|
.join("; ");
|
|
warnings.push(
|
|
`WARNING: Skill "${skillName}" contains dangerous code patterns: ${criticalDetails}`,
|
|
);
|
|
} else if (summary.warn > 0) {
|
|
warnings.push(
|
|
`Skill "${skillName}" has ${summary.warn} suspicious code pattern(s). Run "openclaw security audit --deep" for details.`,
|
|
);
|
|
}
|
|
} catch (err) {
|
|
warnings.push(
|
|
`Skill "${skillName}" code safety scan failed (${String(err)}). Installation continues; run "openclaw security audit --deep" after install.`,
|
|
);
|
|
}
|
|
|
|
return warnings;
|
|
}
|
|
|
|
function resolveInstallId(spec: SkillInstallSpec, index: number): string {
|
|
return (spec.id ?? `${spec.kind}-${index}`).trim();
|
|
}
|
|
|
|
function findInstallSpec(entry: SkillEntry, installId: string): SkillInstallSpec | undefined {
|
|
const specs = entry.metadata?.install ?? [];
|
|
for (const [index, spec] of specs.entries()) {
|
|
if (resolveInstallId(spec, index) === installId) {
|
|
return spec;
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
function buildNodeInstallCommand(packageName: string, prefs: SkillsInstallPreferences): string[] {
|
|
switch (prefs.nodeManager) {
|
|
case "pnpm":
|
|
return ["pnpm", "add", "-g", "--ignore-scripts", packageName];
|
|
case "yarn":
|
|
return ["yarn", "global", "add", "--ignore-scripts", packageName];
|
|
case "bun":
|
|
return ["bun", "add", "-g", "--ignore-scripts", packageName];
|
|
default:
|
|
return ["npm", "install", "-g", "--ignore-scripts", packageName];
|
|
}
|
|
}
|
|
|
|
function buildInstallCommand(
|
|
spec: SkillInstallSpec,
|
|
prefs: SkillsInstallPreferences,
|
|
): {
|
|
argv: string[] | null;
|
|
error?: string;
|
|
} {
|
|
switch (spec.kind) {
|
|
case "brew": {
|
|
if (!spec.formula) {
|
|
return { argv: null, error: "missing brew formula" };
|
|
}
|
|
return { argv: ["brew", "install", spec.formula] };
|
|
}
|
|
case "node": {
|
|
if (!spec.package) {
|
|
return { argv: null, error: "missing node package" };
|
|
}
|
|
return {
|
|
argv: buildNodeInstallCommand(spec.package, prefs),
|
|
};
|
|
}
|
|
case "go": {
|
|
if (!spec.module) {
|
|
return { argv: null, error: "missing go module" };
|
|
}
|
|
return { argv: ["go", "install", spec.module] };
|
|
}
|
|
case "uv": {
|
|
if (!spec.package) {
|
|
return { argv: null, error: "missing uv package" };
|
|
}
|
|
return { argv: ["uv", "tool", "install", spec.package] };
|
|
}
|
|
case "download": {
|
|
return { argv: null, error: "download install handled separately" };
|
|
}
|
|
default:
|
|
return { argv: null, error: "unsupported installer" };
|
|
}
|
|
}
|
|
|
|
function resolveDownloadTargetDir(entry: SkillEntry, spec: SkillInstallSpec): string {
|
|
if (spec.targetDir?.trim()) {
|
|
return resolveUserPath(spec.targetDir);
|
|
}
|
|
const key = resolveSkillKey(entry.skill, entry);
|
|
return path.join(CONFIG_DIR, "tools", key);
|
|
}
|
|
|
|
function resolveArchiveType(spec: SkillInstallSpec, filename: string): string | undefined {
|
|
const explicit = spec.archive?.trim().toLowerCase();
|
|
if (explicit) {
|
|
return explicit;
|
|
}
|
|
const lower = filename.toLowerCase();
|
|
if (lower.endsWith(".tar.gz") || lower.endsWith(".tgz")) {
|
|
return "tar.gz";
|
|
}
|
|
if (lower.endsWith(".tar.bz2") || lower.endsWith(".tbz2")) {
|
|
return "tar.bz2";
|
|
}
|
|
if (lower.endsWith(".zip")) {
|
|
return "zip";
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
function normalizeArchiveEntryPath(raw: string): string {
|
|
return raw.replaceAll("\\", "/");
|
|
}
|
|
|
|
function isWindowsDrivePath(p: string): boolean {
|
|
return /^[a-zA-Z]:[\\/]/.test(p);
|
|
}
|
|
|
|
function validateArchiveEntryPath(entryPath: string): void {
|
|
if (!entryPath || entryPath === "." || entryPath === "./") {
|
|
return;
|
|
}
|
|
if (isWindowsDrivePath(entryPath)) {
|
|
throw new Error(`archive entry uses a drive path: ${entryPath}`);
|
|
}
|
|
const normalized = path.posix.normalize(normalizeArchiveEntryPath(entryPath));
|
|
if (normalized === ".." || normalized.startsWith("../")) {
|
|
throw new Error(`archive entry escapes targetDir: ${entryPath}`);
|
|
}
|
|
if (path.posix.isAbsolute(normalized) || normalized.startsWith("//")) {
|
|
throw new Error(`archive entry is absolute: ${entryPath}`);
|
|
}
|
|
}
|
|
|
|
function resolveSafeBaseDir(rootDir: string): string {
|
|
const resolved = path.resolve(rootDir);
|
|
return resolved.endsWith(path.sep) ? resolved : `${resolved}${path.sep}`;
|
|
}
|
|
|
|
function stripArchivePath(entryPath: string, stripComponents: number): string | null {
|
|
const raw = normalizeArchiveEntryPath(entryPath);
|
|
if (!raw || raw === "." || raw === "./") {
|
|
return null;
|
|
}
|
|
|
|
// Important: tar's --strip-components semantics operate on raw path segments,
|
|
// before any normalization that would collapse "..". We mimic that so we
|
|
// can detect strip-induced escapes like "a/../b" with stripComponents=1.
|
|
const parts = raw.split("/").filter((part) => part.length > 0 && part !== ".");
|
|
const strip = Math.max(0, Math.floor(stripComponents));
|
|
const stripped = strip === 0 ? parts.join("/") : parts.slice(strip).join("/");
|
|
const result = path.posix.normalize(stripped);
|
|
if (!result || result === "." || result === "./") {
|
|
return null;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function validateExtractedPathWithinRoot(params: {
|
|
rootDir: string;
|
|
relPath: string;
|
|
originalPath: string;
|
|
}): void {
|
|
const safeBase = resolveSafeBaseDir(params.rootDir);
|
|
const outPath = path.resolve(params.rootDir, params.relPath);
|
|
if (!outPath.startsWith(safeBase)) {
|
|
throw new Error(`archive entry escapes targetDir: ${params.originalPath}`);
|
|
}
|
|
}
|
|
|
|
async function downloadFile(
|
|
url: string,
|
|
destPath: string,
|
|
timeoutMs: number,
|
|
): Promise<{ bytes: number }> {
|
|
const { response, release } = await fetchWithSsrFGuard({
|
|
url,
|
|
timeoutMs: Math.max(1_000, timeoutMs),
|
|
});
|
|
try {
|
|
if (!response.ok || !response.body) {
|
|
throw new Error(`Download failed (${response.status} ${response.statusText})`);
|
|
}
|
|
await ensureDir(path.dirname(destPath));
|
|
const file = fs.createWriteStream(destPath);
|
|
const body = response.body as unknown;
|
|
const readable = isNodeReadableStream(body)
|
|
? body
|
|
: Readable.fromWeb(body as NodeReadableStream);
|
|
await pipeline(readable, file);
|
|
const stat = await fs.promises.stat(destPath);
|
|
return { bytes: stat.size };
|
|
} finally {
|
|
await release();
|
|
}
|
|
}
|
|
|
|
async function extractArchive(params: {
|
|
archivePath: string;
|
|
archiveType: string;
|
|
targetDir: string;
|
|
stripComponents?: number;
|
|
timeoutMs: number;
|
|
}): Promise<{ stdout: string; stderr: string; code: number | null }> {
|
|
const { archivePath, archiveType, targetDir, stripComponents, timeoutMs } = params;
|
|
const strip =
|
|
typeof stripComponents === "number" && Number.isFinite(stripComponents)
|
|
? Math.max(0, Math.floor(stripComponents))
|
|
: 0;
|
|
|
|
try {
|
|
if (archiveType === "zip") {
|
|
await extractArchiveSafe({
|
|
archivePath,
|
|
destDir: targetDir,
|
|
timeoutMs,
|
|
kind: "zip",
|
|
stripComponents: strip,
|
|
});
|
|
return { stdout: "", stderr: "", code: 0 };
|
|
}
|
|
|
|
if (archiveType === "tar.gz") {
|
|
await extractArchiveSafe({
|
|
archivePath,
|
|
destDir: targetDir,
|
|
timeoutMs,
|
|
kind: "tar",
|
|
stripComponents: strip,
|
|
tarGzip: true,
|
|
});
|
|
return { stdout: "", stderr: "", code: 0 };
|
|
}
|
|
|
|
if (archiveType === "tar.bz2") {
|
|
if (!hasBinary("tar")) {
|
|
return { stdout: "", stderr: "tar not found on PATH", code: null };
|
|
}
|
|
|
|
// Preflight list to prevent zip-slip style traversal before extraction.
|
|
const listResult = await runCommandWithTimeout(["tar", "tf", archivePath], { timeoutMs });
|
|
if (listResult.code !== 0) {
|
|
return {
|
|
stdout: listResult.stdout,
|
|
stderr: listResult.stderr || "tar list failed",
|
|
code: listResult.code,
|
|
};
|
|
}
|
|
const entries = listResult.stdout
|
|
.split("\n")
|
|
.map((line) => line.trim())
|
|
.filter(Boolean);
|
|
|
|
const verboseResult = await runCommandWithTimeout(["tar", "tvf", archivePath], { timeoutMs });
|
|
if (verboseResult.code !== 0) {
|
|
return {
|
|
stdout: verboseResult.stdout,
|
|
stderr: verboseResult.stderr || "tar verbose list failed",
|
|
code: verboseResult.code,
|
|
};
|
|
}
|
|
for (const line of verboseResult.stdout.split("\n")) {
|
|
const trimmed = line.trim();
|
|
if (!trimmed) {
|
|
continue;
|
|
}
|
|
const typeChar = trimmed[0];
|
|
if (typeChar === "l" || typeChar === "h" || trimmed.includes(" -> ")) {
|
|
return {
|
|
stdout: verboseResult.stdout,
|
|
stderr: "tar archive contains link entries; refusing to extract for safety",
|
|
code: 1,
|
|
};
|
|
}
|
|
}
|
|
|
|
for (const entry of entries) {
|
|
validateArchiveEntryPath(entry);
|
|
const relPath = stripArchivePath(entry, strip);
|
|
if (!relPath) {
|
|
continue;
|
|
}
|
|
validateArchiveEntryPath(relPath);
|
|
validateExtractedPathWithinRoot({ rootDir: targetDir, relPath, originalPath: entry });
|
|
}
|
|
|
|
const argv = ["tar", "xf", archivePath, "-C", targetDir];
|
|
if (strip > 0) {
|
|
argv.push("--strip-components", String(strip));
|
|
}
|
|
return await runCommandWithTimeout(argv, { timeoutMs });
|
|
}
|
|
|
|
return { stdout: "", stderr: `unsupported archive type: ${archiveType}`, code: null };
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
return { stdout: "", stderr: message, code: 1 };
|
|
}
|
|
}
|
|
|
|
async function installDownloadSpec(params: {
|
|
entry: SkillEntry;
|
|
spec: SkillInstallSpec;
|
|
timeoutMs: number;
|
|
}): Promise<SkillInstallResult> {
|
|
const { entry, spec, timeoutMs } = params;
|
|
const url = spec.url?.trim();
|
|
if (!url) {
|
|
return {
|
|
ok: false,
|
|
message: "missing download url",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
};
|
|
}
|
|
|
|
let filename = "";
|
|
try {
|
|
const parsed = new URL(url);
|
|
filename = path.basename(parsed.pathname);
|
|
} catch {
|
|
filename = path.basename(url);
|
|
}
|
|
if (!filename) {
|
|
filename = "download";
|
|
}
|
|
|
|
const targetDir = resolveDownloadTargetDir(entry, spec);
|
|
await ensureDir(targetDir);
|
|
|
|
const archivePath = path.join(targetDir, filename);
|
|
let downloaded = 0;
|
|
try {
|
|
const result = await downloadFile(url, archivePath, timeoutMs);
|
|
downloaded = result.bytes;
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
return { ok: false, message, stdout: "", stderr: message, code: null };
|
|
}
|
|
|
|
const archiveType = resolveArchiveType(spec, filename);
|
|
const shouldExtract = spec.extract ?? Boolean(archiveType);
|
|
if (!shouldExtract) {
|
|
return {
|
|
ok: true,
|
|
message: `Downloaded to ${archivePath}`,
|
|
stdout: `downloaded=${downloaded}`,
|
|
stderr: "",
|
|
code: 0,
|
|
};
|
|
}
|
|
|
|
if (!archiveType) {
|
|
return {
|
|
ok: false,
|
|
message: "extract requested but archive type could not be detected",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
};
|
|
}
|
|
|
|
const extractResult = await extractArchive({
|
|
archivePath,
|
|
archiveType,
|
|
targetDir,
|
|
stripComponents: spec.stripComponents,
|
|
timeoutMs,
|
|
});
|
|
const success = extractResult.code === 0;
|
|
return {
|
|
ok: success,
|
|
message: success
|
|
? `Downloaded and extracted to ${targetDir}`
|
|
: formatInstallFailureMessage(extractResult),
|
|
stdout: extractResult.stdout.trim(),
|
|
stderr: extractResult.stderr.trim(),
|
|
code: extractResult.code,
|
|
};
|
|
}
|
|
|
|
async function resolveBrewBinDir(timeoutMs: number, brewExe?: string): Promise<string | undefined> {
|
|
const exe = brewExe ?? (hasBinary("brew") ? "brew" : resolveBrewExecutable());
|
|
if (!exe) {
|
|
return undefined;
|
|
}
|
|
|
|
const prefixResult = await runCommandWithTimeout([exe, "--prefix"], {
|
|
timeoutMs: Math.min(timeoutMs, 30_000),
|
|
});
|
|
if (prefixResult.code === 0) {
|
|
const prefix = prefixResult.stdout.trim();
|
|
if (prefix) {
|
|
return path.join(prefix, "bin");
|
|
}
|
|
}
|
|
|
|
const envPrefix = process.env.HOMEBREW_PREFIX?.trim();
|
|
if (envPrefix) {
|
|
return path.join(envPrefix, "bin");
|
|
}
|
|
|
|
for (const candidate of ["/opt/homebrew/bin", "/usr/local/bin"]) {
|
|
try {
|
|
if (fs.existsSync(candidate)) {
|
|
return candidate;
|
|
}
|
|
} catch {
|
|
// ignore
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
export async function installSkill(params: SkillInstallRequest): Promise<SkillInstallResult> {
|
|
const timeoutMs = Math.min(Math.max(params.timeoutMs ?? 300_000, 1_000), 900_000);
|
|
const workspaceDir = resolveUserPath(params.workspaceDir);
|
|
const entries = loadWorkspaceSkillEntries(workspaceDir);
|
|
const entry = entries.find((item) => item.skill.name === params.skillName);
|
|
if (!entry) {
|
|
return {
|
|
ok: false,
|
|
message: `Skill not found: ${params.skillName}`,
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
};
|
|
}
|
|
|
|
const spec = findInstallSpec(entry, params.installId);
|
|
const warnings = await collectSkillInstallScanWarnings(entry);
|
|
if (!spec) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: `Installer not found: ${params.installId}`,
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
if (spec.kind === "download") {
|
|
const downloadResult = await installDownloadSpec({ entry, spec, timeoutMs });
|
|
return withWarnings(downloadResult, warnings);
|
|
}
|
|
|
|
const prefs = resolveSkillsInstallPreferences(params.config);
|
|
const command = buildInstallCommand(spec, prefs);
|
|
if (command.error) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: command.error,
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
|
|
const brewExe = hasBinary("brew") ? "brew" : resolveBrewExecutable();
|
|
if (spec.kind === "brew" && !brewExe) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "brew not installed",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
if (spec.kind === "uv" && !hasBinary("uv")) {
|
|
if (brewExe) {
|
|
const brewResult = await runCommandWithTimeout([brewExe, "install", "uv"], {
|
|
timeoutMs,
|
|
});
|
|
if (brewResult.code !== 0) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "Failed to install uv (brew)",
|
|
stdout: brewResult.stdout.trim(),
|
|
stderr: brewResult.stderr.trim(),
|
|
code: brewResult.code,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
} else {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "uv not installed (install via brew)",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
}
|
|
if (!command.argv || command.argv.length === 0) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "invalid install command",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
|
|
if (spec.kind === "brew" && brewExe && command.argv[0] === "brew") {
|
|
command.argv[0] = brewExe;
|
|
}
|
|
|
|
if (spec.kind === "go" && !hasBinary("go")) {
|
|
if (brewExe) {
|
|
const brewResult = await runCommandWithTimeout([brewExe, "install", "go"], {
|
|
timeoutMs,
|
|
});
|
|
if (brewResult.code !== 0) {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "Failed to install go (brew)",
|
|
stdout: brewResult.stdout.trim(),
|
|
stderr: brewResult.stderr.trim(),
|
|
code: brewResult.code,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
} else {
|
|
return withWarnings(
|
|
{
|
|
ok: false,
|
|
message: "go not installed (install via brew)",
|
|
stdout: "",
|
|
stderr: "",
|
|
code: null,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|
|
}
|
|
|
|
let env: NodeJS.ProcessEnv | undefined;
|
|
if (spec.kind === "go" && brewExe) {
|
|
const brewBin = await resolveBrewBinDir(timeoutMs, brewExe);
|
|
if (brewBin) {
|
|
env = { GOBIN: brewBin };
|
|
}
|
|
}
|
|
|
|
const result = await (async () => {
|
|
const argv = command.argv;
|
|
if (!argv || argv.length === 0) {
|
|
return { code: null, stdout: "", stderr: "invalid install command" };
|
|
}
|
|
try {
|
|
return await runCommandWithTimeout(argv, {
|
|
timeoutMs,
|
|
env,
|
|
});
|
|
} catch (err) {
|
|
const stderr = err instanceof Error ? err.message : String(err);
|
|
return { code: null, stdout: "", stderr };
|
|
}
|
|
})();
|
|
|
|
const success = result.code === 0;
|
|
return withWarnings(
|
|
{
|
|
ok: success,
|
|
message: success ? "Installed" : formatInstallFailureMessage(result),
|
|
stdout: result.stdout.trim(),
|
|
stderr: result.stderr.trim(),
|
|
code: result.code,
|
|
},
|
|
warnings,
|
|
);
|
|
}
|