Files
openchamber/packages/ui/src/lib/terminalPreview.ts
T
Bohdan Triapitsyn 2031e3b4a8 Decouple bundled UI from runtime API and add remote instance tooling (#1228)
Add a packaged-client runtime boundary so the shared UI can talk to local,
desktop, remote, and VS Code runtimes through the right transport instead of
assuming one same-origin web server.

Centralize OpenChamber-owned API access behind RuntimeAPIs, runtimeFetch, and
runtime URL helpers, while keeping official OpenCode traffic on the SDK path.
Support runtime switching, remote host selection, desktop client credentials,
and headless connection links for pairing packaged clients with remote
OpenChamber servers.

Harden the new auth model by moving long-lived client tokens out of browser
URLs, introducing short-lived scoped URL tokens for browser-owned transports,
restricting URL-token access to explicit readable/realtime routes, and making
client-token management session-scoped or self-scoped as appropriate.

Update browser-owned assets and preview proxy flows to work with the split
runtime model, including authenticated project icons, preview token propagation,
CSP-safe preview bridge injection, and preview proxy auth that survives
short-lived URL-token expiry.

Tighten Electron security boundaries for packaged clients by gating privileged
preload state to trusted origins and requiring explicit confirmation before
connect deep-links import or switch remote runtimes.

Also refresh agent guidance and project skills so future runtime/API, auth,
preview, UI, CLI, settings, locale, and drag-to-reorder work follows the new
architecture.
2026-06-02 00:43:05 +03:00

118 lines
3.7 KiB
TypeScript

import { runtimeFetch } from '@/lib/runtime-fetch';
const ANSI_ESCAPE_PREFIX = String.fromCharCode(27);
const ANSI_ESCAPE_PATTERN = new RegExp(`${ANSI_ESCAPE_PREFIX}\\[[0-9;?]*[ -/]*[@-~]`, 'g');
const LOOPBACK_URL_PATTERN = /(https?:\/\/(?:localhost|127\.0\.0\.1|0\.0\.0\.0|\[(?:::1|::)\])(?::\d{2,5})?(?:\/[^\s<>'"`]*)?)/gi;
const PREVIEW_OUTPUT_PATTERN = /(?:➜\s*(?:Local|Network):)|\b(?:local|network|loopback|serving|listening|available|ready|started|running|server|vite|webpack|next\.js|astro|sveltekit|nuxt)\b/i;
const PYTHON_HTTP_SERVER_PATTERN = /Serving HTTP on .*? port (\d{2,5})/i;
const TRAILING_PUNCT = new Set(['.', ',', ';', ':', '!', '?']);
const trimUrlTrailingPunctuation = (url: string): string => {
let result = url;
while (result.length > 0) {
const last = result[result.length - 1];
if (last === ')' || last === ']' || last === '}' || last === '>') {
const opener = last === ')' ? '(' : last === ']' ? '[' : last === '}' ? '{' : '<';
const head = result.slice(0, -1);
const opens = (head.match(new RegExp(`\\${opener}`, 'g')) || []).length;
const closes = (head.match(new RegExp(`\\${last}`, 'g')) || []).length;
if (opens > closes) break;
result = head;
continue;
}
if (TRAILING_PUNCT.has(last)) {
result = result.slice(0, -1);
continue;
}
break;
}
return result;
};
const normalizeLoopbackUrl = (url: string): string => {
let normalized = trimUrlTrailingPunctuation(url);
normalized = normalized.replace('0.0.0.0', '127.0.0.1');
normalized = normalized.replace('[::1]', '127.0.0.1');
normalized = normalized.replace('[::]', '127.0.0.1');
return normalized;
};
export const extractTerminalPreviewUrl = (text: string): string | null => {
if (!text) return null;
const cleaned = text.replace(ANSI_ESCAPE_PATTERN, '');
const pythonMatch = cleaned.match(PYTHON_HTTP_SERVER_PATTERN);
if (pythonMatch?.[1]) {
const port = Number.parseInt(pythonMatch[1], 10);
if (Number.isFinite(port) && port > 0 && port <= 65535) {
return `http://127.0.0.1:${port}/`;
}
}
const lines = cleaned.split('\n');
for (const line of lines) {
if (!PREVIEW_OUTPUT_PATTERN.test(line)) {
continue;
}
const matches = Array.from(line.matchAll(LOOPBACK_URL_PATTERN));
if (matches.length === 0) {
continue;
}
const withPort = matches.find((match) => {
try {
return Boolean(new URL(normalizeLoopbackUrl(match[1])).port);
} catch {
return false;
}
});
return normalizeLoopbackUrl((withPort ?? matches[0])[1]);
}
return null;
};
export const isTerminalPreviewUrlAvailable = async (url: string, timeoutMs = 1500): Promise<boolean> => {
if (!url) return false;
if (typeof window === 'undefined') return false;
let parsed: URL;
try {
parsed = new URL(url);
} catch {
return false;
}
if (parsed.protocol !== 'http:' && parsed.protocol !== 'https:') {
return false;
}
const host = parsed.hostname.toLowerCase();
if (host !== 'localhost' && host !== '127.0.0.1' && host !== '0.0.0.0' && host !== '::1' && host !== '::') {
return false;
}
const controller = new AbortController();
const timeout = window.setTimeout(() => controller.abort(), timeoutMs);
try {
const response = await runtimeFetch('/api/system/probe-url', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ url: parsed.toString() }),
cache: 'no-store',
signal: controller.signal,
});
if (!response.ok) {
return false;
}
const result = await response.json().catch(() => null) as { ok?: unknown } | null;
return result?.ok === true;
} catch {
return false;
} finally {
window.clearTimeout(timeout);
}
};