Replace the legacy terminal flow with a shared authenticated WebSocket runtime used across web, desktop, relay, and mobile surfaces. - introduce the v3 terminal protocol with scoped attachments, snapshots, ordered output, bounded replay history, reconnects, and explicit lifecycle - harden PTY creation, restart, resize, close, force-kill, idle cleanup, shell selection, login mode, environment sanitization, and appearance sync - add runtime-aware terminal APIs with relay authentication and Electron parity - add a fullscreen mobile terminal workspace with touch scrolling, long-press selection, safe-area controls, quick keys, and Ctrl/Alt input - add terminal selection attachments, preview detection, project actions, shell settings, and localized UI - harden Ghostty rendering, resize recovery, Unicode handling, block characters, line height, and stale-row behavior - remove the obsolete terminal SSE path and update reverse-proxy guidance - expand terminal runtime, transport, input, selection, and store coverage - avoid duplicate web builds when preparing mobile assets in root CI builds
101 lines
4.1 KiB
JavaScript
101 lines
4.1 KiB
JavaScript
const TERMINAL_SHELL_IDS = ['bash', 'zsh', 'sh', 'fish', 'pwsh', 'powershell', 'cmd', 'dash', 'ksh', 'nu'];
|
|
const TERMINAL_SHELL_ID_SET = new Set(TERMINAL_SHELL_IDS);
|
|
|
|
export const normalizeTerminalShell = (value) => {
|
|
if (typeof value !== 'string') return null;
|
|
const normalized = value.trim().toLowerCase();
|
|
return normalized === 'auto' || TERMINAL_SHELL_ID_SET.has(normalized) ? normalized : null;
|
|
};
|
|
|
|
const shellIdFromPath = (value) => {
|
|
const filename = String(value || '').replace(/\\/g, '/').split('/').pop()?.toLowerCase() || '';
|
|
const id = filename.endsWith('.exe') ? filename.slice(0, -4) : filename;
|
|
return TERMINAL_SHELL_ID_SET.has(id) ? id : null;
|
|
};
|
|
|
|
const SHELL_LABELS = { pwsh: 'PowerShell', powershell: 'Windows PowerShell', cmd: 'Command Prompt' };
|
|
const shellLabel = (id) => SHELL_LABELS[id] ?? id;
|
|
|
|
export const getTerminalShellLoginArgs = (executable, platform = process.platform) => {
|
|
const id = shellIdFromPath(executable);
|
|
if (id === 'bash' || id === 'zsh' || id === 'ksh') return ['-l'];
|
|
if (id === 'fish' || id === 'nu') return ['--login'];
|
|
if (id === 'pwsh' && platform !== 'win32') return ['-Login'];
|
|
return null;
|
|
};
|
|
|
|
export const createTerminalShellResolver = ({ fs, path, searchPathFor, isExecutable, buildAugmentedPath = () => env.PATH || '', platform = process.platform, env = process.env }) => {
|
|
const resolveExecutable = (candidate) => {
|
|
if (!candidate) return null;
|
|
const value = String(candidate);
|
|
const found = value.includes('/') || value.includes('\\') ? value : searchPathFor(value, buildAugmentedPath());
|
|
if (found && isExecutable(found)) return found;
|
|
return isExecutable(value) ? value : null;
|
|
};
|
|
|
|
const defaultCandidates = () => platform === 'win32'
|
|
? [
|
|
env.OPENCHAMBER_TERMINAL_SHELL,
|
|
env.SHELL,
|
|
env.ComSpec,
|
|
path.join(env.SystemRoot || 'C:\\Windows', 'System32', 'WindowsPowerShell', 'v1.0', 'powershell.exe'),
|
|
'pwsh.exe',
|
|
'powershell.exe',
|
|
'cmd.exe',
|
|
]
|
|
: [env.OPENCHAMBER_TERMINAL_SHELL, env.SHELL, '/bin/zsh', '/bin/bash', '/bin/sh', 'zsh', 'bash', 'sh'];
|
|
|
|
const resolveCandidates = (candidates) => {
|
|
const seen = new Set();
|
|
return candidates
|
|
.map(resolveExecutable)
|
|
.filter((candidate) => candidate && !seen.has(candidate) && seen.add(candidate));
|
|
};
|
|
|
|
const list = async () => {
|
|
let configuredShells = [];
|
|
if (platform !== 'win32') {
|
|
try {
|
|
const contents = await fs.promises.readFile('/etc/shells', 'utf8');
|
|
configuredShells = contents
|
|
.split(/\r?\n/)
|
|
.map((line) => line.trim())
|
|
.filter((line) => line && !line.startsWith('#'));
|
|
} catch {
|
|
// PATH and platform defaults below remain authoritative fallbacks.
|
|
}
|
|
}
|
|
|
|
const candidates = platform === 'win32'
|
|
? [...defaultCandidates(), ...TERMINAL_SHELL_IDS]
|
|
: [env.OPENCHAMBER_TERMINAL_SHELL, env.SHELL, ...configuredShells, ...TERMINAL_SHELL_IDS, '/bin/zsh', '/bin/bash', '/bin/sh'];
|
|
const autoExecutable = resolveCandidates(defaultCandidates())[0] ?? null;
|
|
const byId = new Map([
|
|
['auto', {
|
|
id: 'auto',
|
|
name: 'Auto',
|
|
executable: autoExecutable,
|
|
supportsLogin: Boolean(autoExecutable && getTerminalShellLoginArgs(autoExecutable, platform)),
|
|
}],
|
|
]);
|
|
for (const executable of resolveCandidates(candidates)) {
|
|
const id = shellIdFromPath(executable);
|
|
if (id && !byId.has(id)) {
|
|
byId.set(id, { id, name: shellLabel(id), executable, supportsLogin: Boolean(getTerminalShellLoginArgs(executable, platform)) });
|
|
}
|
|
}
|
|
return [...byId.values()];
|
|
};
|
|
|
|
const resolve = async (preference) => {
|
|
const normalized = normalizeTerminalShell(preference ?? 'auto');
|
|
if (!normalized) throw new Error('Invalid terminal shell');
|
|
if (normalized === 'auto') return { id: 'auto', executables: resolveCandidates(defaultCandidates()) };
|
|
const selected = (await list()).find((shell) => shell.id === normalized);
|
|
if (!selected) throw new Error(`Terminal shell "${normalized}" is not available`);
|
|
return { id: selected.id, executables: [selected.executable] };
|
|
};
|
|
|
|
return { list, resolve };
|
|
};
|