Files
openchamber/packages/web/server/lib/opencode/server-utils-runtime.js
T
Bohdan Triapitsyn ccab4f49df fix: preserve shell PATH for managed OpenCode
Restores shell-first PATH resolution for desktop-launched OpenCode
Keeps app PATH entries as fallback
Adds coverage for managed OpenCode PATH merging
2026-04-28 01:19:12 +03:00

169 lines
4.5 KiB
JavaScript

import { registerOpenCodeProxy } from './proxy.js';
import { pathLooksUserConfigured, mergePathValues } from './path-utils.js';
export const createServerUtilsRuntime = (dependencies) => {
const {
fs,
os,
path,
process,
openCodeReadyGraceMs,
longRequestTimeoutMs,
getRuntime,
getOpenCodeAuthHeaders,
buildOpenCodeUrl,
ensureOpenCodeApiPrefix,
getUiNotificationClients,
getOpenCodePort,
setOpenCodePortState,
syncToHmrState,
markOpenCodeNotReady,
setOpenCodeNotReadySince,
clearLastOpenCodeError,
getLoginShellPath,
} = dependencies;
const setOpenCodePort = (port) => {
if (!Number.isFinite(port) || port <= 0) {
return;
}
const numericPort = Math.trunc(port);
const currentPort = getOpenCodePort();
const portChanged = currentPort !== numericPort;
if (portChanged || currentPort === null) {
setOpenCodePortState(numericPort);
syncToHmrState();
console.log(`Detected OpenCode port: ${numericPort}`);
if (portChanged) {
markOpenCodeNotReady();
}
setOpenCodeNotReadySince(Date.now());
}
clearLastOpenCodeError();
};
const waitForOpenCodePort = async (timeoutMs = 15000) => {
if (getOpenCodePort() !== null) {
return getOpenCodePort();
}
const deadline = Date.now() + timeoutMs;
while (Date.now() < deadline) {
await new Promise((resolve) => setTimeout(resolve, 50));
if (getOpenCodePort() !== null) {
return getOpenCodePort();
}
}
throw new Error('Timed out waiting for OpenCode port');
};
const buildAugmentedPath = () => {
const currentPath = process.env.PATH || '';
const loginShellPath = getLoginShellPath();
const home = os.homedir();
const currentPathLooksUserConfigured = pathLooksUserConfigured(currentPath, home, path.delimiter);
const primaryPath = currentPathLooksUserConfigured ? currentPath : loginShellPath;
const fallbackPath = currentPathLooksUserConfigured ? loginShellPath : currentPath;
return mergePathValues(primaryPath, fallbackPath, path.delimiter);
};
const buildManagedOpenCodePath = () => {
const currentPath = process.env.PATH || '';
const loginShellPath = getLoginShellPath();
return mergePathValues(loginShellPath || '', currentPath, path.delimiter);
};
const parseSseDataPayload = (block) => {
if (!block || typeof block !== 'string') {
return null;
}
const dataLines = block
.split('\n')
.filter((line) => line.startsWith('data:'))
.map((line) => line.slice(5).replace(/^\s/, ''));
if (dataLines.length === 0) {
return null;
}
const payloadText = dataLines.join('\n').trim();
if (!payloadText) {
return null;
}
try {
const parsed = JSON.parse(payloadText);
if (
parsed &&
typeof parsed === 'object' &&
typeof parsed.payload === 'object' &&
parsed.payload !== null
) {
return parsed.payload;
}
return parsed;
} catch {
return null;
}
};
const fetchArraySnapshot = async (route, invalidMessage) => {
if (!getOpenCodePort()) {
throw new Error('OpenCode port is not available');
}
const response = await fetch(buildOpenCodeUrl(route), {
method: 'GET',
headers: { Accept: 'application/json', ...getOpenCodeAuthHeaders() },
});
if (!response.ok) {
throw new Error(`Failed to fetch ${invalidMessage} (status ${response.status})`);
}
const payload = await response.json().catch(() => null);
if (!Array.isArray(payload)) {
throw new Error(`Invalid ${invalidMessage} payload from OpenCode`);
}
return payload;
};
const fetchAgentsSnapshot = () => fetchArraySnapshot('/agent', 'agents snapshot');
const fetchProvidersSnapshot = () => fetchArraySnapshot('/provider', 'providers snapshot');
const fetchModelsSnapshot = () => fetchArraySnapshot('/model', 'models snapshot');
const setupProxy = (app) => {
registerOpenCodeProxy(app, {
fs,
os,
path,
OPEN_CODE_READY_GRACE_MS: openCodeReadyGraceMs,
LONG_REQUEST_TIMEOUT_MS: longRequestTimeoutMs,
getRuntime,
getOpenCodeAuthHeaders,
buildOpenCodeUrl,
ensureOpenCodeApiPrefix,
getUiNotificationClients,
});
};
return {
setOpenCodePort,
waitForOpenCodePort,
buildAugmentedPath,
buildManagedOpenCodePath,
parseSseDataPayload,
fetchAgentsSnapshot,
fetchProvidersSnapshot,
fetchModelsSnapshot,
setupProxy,
};
};