# Conflicts: # packages/client/ui-conversation/README.i18n.yaml # packages/client/ui-conversation/src/client/chat/ToolRow.module.css # packages/host/apiproxy/src/native-path-opener.ts
184 lines
6.9 KiB
TypeScript
184 lines
6.9 KiB
TypeScript
/**
|
|
* Cross-platform native path and text-document openers used by the local GUI
|
|
* carrier.
|
|
*
|
|
* The default intent prefers the default browser for documents it renders when
|
|
* the platform can name one, then falls back to the default application. WSL
|
|
* translates every path for the Windows desktop instead of assuming a Linux
|
|
* GUI. The text-editor intent never consults the browser.
|
|
*/
|
|
|
|
import { release as osRelease } from 'node:os'
|
|
import { extname } from 'node:path'
|
|
import { runNativeCommand, type NativeCommandRunner } from '@deepseek-ai/dsh-native-command'
|
|
|
|
/** Testable command boundary; native implementations never invoke a shell. */
|
|
export type PathOpenerRunner = NativeCommandRunner
|
|
|
|
/** Injectable platform facts for deterministic adapter tests. */
|
|
export interface PathOpenerInternals {
|
|
platform?: NodeJS.Platform
|
|
/** Kernel release override used to distinguish WSL from desktop Linux. */
|
|
osRelease?: string
|
|
/** Environment used for WSL markers and the desktop Linux browser convention. */
|
|
env?: NodeJS.ProcessEnv
|
|
run?: PathOpenerRunner
|
|
}
|
|
|
|
/** Documents a browser renders, as opposed to ones an editor merely edits. */
|
|
const BROWSER_DOCUMENTS = new Set(['.html', '.htm', '.xhtml', '.svg'])
|
|
|
|
/**
|
|
* The macOS bundle registered for `https` — the default browser, as
|
|
* LaunchServices records it. The nested version dict is stripped first
|
|
* because it carries its own `LSHandlerRoleAll`.
|
|
*/
|
|
function macBundleForHttps(plist: string): string | undefined {
|
|
const stripped = plist.replace(/LSHandlerPreferredVersions\s*=\s*\{[^}]*\};/g, '')
|
|
const block = /\{[^{}]*LSHandlerURLScheme\s*=\s*"?https"?;[^{}]*\}/.exec(stripped)?.[0]
|
|
if (block === undefined) return undefined
|
|
return /LSHandlerRoleAll\s*=\s*"?([\w.-]+)"?;/.exec(block)?.[1]
|
|
}
|
|
|
|
/**
|
|
* Open one browser-renderable document with the default browser.
|
|
* @returns true when a browser took it; false when this platform cannot name
|
|
* one, or naming it failed — the caller then uses the default application.
|
|
*/
|
|
async function openInBrowser(
|
|
path: string, signal: AbortSignal, platform: NodeJS.Platform,
|
|
run: PathOpenerRunner, env: NodeJS.ProcessEnv,
|
|
): Promise<boolean> {
|
|
if (platform === 'darwin') {
|
|
let bundle: string | undefined
|
|
try {
|
|
const { stdout } = await run(
|
|
'defaults', ['read', 'com.apple.LaunchServices/com.apple.launchservices.secure'], signal)
|
|
bundle = macBundleForHttps(stdout)
|
|
} catch {
|
|
// No LaunchServices record (a fresh account never changed a default):
|
|
// the content-type handler is then the system's own choice anyway.
|
|
return false
|
|
}
|
|
if (bundle === undefined) return false
|
|
await run('open', ['-b', bundle, path], signal)
|
|
return true
|
|
}
|
|
if (platform === 'linux') {
|
|
// $BROWSER is the portable convention; desktop-entry resolution through
|
|
// xdg-settings needs a launcher this package has no business shipping.
|
|
const browser = env.BROWSER
|
|
if (browser === undefined || browser === '') return false
|
|
await run(browser, [path], signal)
|
|
return true
|
|
}
|
|
// Windows names no browser without reading the UserChoice registry, and its
|
|
// .html association is the browser in the ordinary case.
|
|
return false
|
|
}
|
|
|
|
/** Native path-open intent; macOS distinguishes text editing from file association. */
|
|
type PathOpenIntent = 'default' | 'text-editor'
|
|
|
|
/** PowerShell single-quoted literal (doubles embedded quotes). */
|
|
function powershellLiteral(path: string): string {
|
|
return `'${path.replace(/'/g, "''")}'`
|
|
}
|
|
|
|
/** Whether one environment marker is set to a non-empty value. */
|
|
function present(value: string | undefined): boolean {
|
|
return value !== undefined && value !== ''
|
|
}
|
|
|
|
/** Distinguish WSL from desktop Linux using its process and kernel markers. */
|
|
function isWsl(internals: PathOpenerInternals): boolean {
|
|
const env = internals.env ?? process.env
|
|
if (present(env.WSL_DISTRO_NAME) || present(env.WSL_INTEROP)) return true
|
|
return (internals.osRelease ?? osRelease()).toLowerCase().includes('microsoft')
|
|
}
|
|
|
|
/** Open one Windows-resolvable path through its registered desktop application. */
|
|
async function openWindowsPath(path: string, signal: AbortSignal, run: PathOpenerRunner): Promise<void> {
|
|
await run('powershell.exe', [
|
|
'-NoProfile',
|
|
'-Command',
|
|
`Invoke-Item -LiteralPath ${powershellLiteral(path)}`,
|
|
], signal)
|
|
}
|
|
|
|
/** Translate a WSL path before handing it to the Windows desktop. */
|
|
async function openWslPath(path: string, signal: AbortSignal, run: PathOpenerRunner): Promise<void> {
|
|
const translated = await run('wslpath', ['-w', path], signal)
|
|
signal.throwIfAborted()
|
|
const windowsPath = translated.stdout.replace(/[\r\n]+$/, '')
|
|
if (windowsPath === '') throw new Error('wslpath returned no Windows path')
|
|
await openWindowsPath(windowsPath, signal, run)
|
|
}
|
|
|
|
/** Dispatch one shell-free platform command for the requested open intent. */
|
|
async function openNativePathWithIntent(
|
|
path: string,
|
|
signal: AbortSignal,
|
|
intent: PathOpenIntent,
|
|
internals: PathOpenerInternals = {},
|
|
): Promise<void> {
|
|
const platform = internals.platform ?? process.platform
|
|
const run = internals.run ?? runNativeCommand
|
|
const env = internals.env ?? process.env
|
|
const wsl = platform === 'linux' && isWsl(internals)
|
|
|
|
if (!wsl && intent === 'default' && BROWSER_DOCUMENTS.has(extname(path).toLowerCase())
|
|
&& await openInBrowser(path, signal, platform, run, env)) return
|
|
|
|
if (platform === 'darwin') {
|
|
await run('open', intent === 'text-editor' ? ['-t', path] : [path], signal)
|
|
return
|
|
}
|
|
|
|
if (platform === 'win32') {
|
|
await openWindowsPath(path, signal, run)
|
|
return
|
|
}
|
|
|
|
if (platform === 'linux') {
|
|
if (wsl) {
|
|
await openWslPath(path, signal, run)
|
|
return
|
|
}
|
|
await run('xdg-open', [path], signal)
|
|
return
|
|
}
|
|
|
|
throw new Error(`native path opener is unsupported on ${platform}`)
|
|
}
|
|
|
|
/**
|
|
* Open a filesystem path with the operating system's default application, or
|
|
* with the default browser when the path names a document a browser renders.
|
|
* @param path - absolute or host-resolvable path (caller owns resolution).
|
|
* @param signal - caller/connection lifetime; abort terminates the native command.
|
|
* @param internals - platform, environment, and runner seam for deterministic tests.
|
|
*/
|
|
export function openNativePath(
|
|
path: string,
|
|
signal: AbortSignal,
|
|
internals: PathOpenerInternals = {},
|
|
): Promise<void> {
|
|
return openNativePathWithIntent(path, signal, 'default', internals)
|
|
}
|
|
|
|
/**
|
|
* Open a text document for editing; macOS bypasses the file-type association
|
|
* so a YAML association with a browser cannot consume the gesture.
|
|
* @param path - absolute or host-resolvable text-document path.
|
|
* @param signal - caller/connection lifetime; abort terminates the native command.
|
|
* @param internals - platform and runner seam for deterministic tests.
|
|
*/
|
|
export function openNativeTextFile(
|
|
path: string,
|
|
signal: AbortSignal,
|
|
internals: PathOpenerInternals = {},
|
|
): Promise<void> {
|
|
return openNativePathWithIntent(path, signal, 'text-editor', internals)
|
|
}
|