mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 00:02:31 +00:00
* fix(ssh): keep an unreadable worktree catalog from authorizing teardown #14004: the relay's worktree-list fallback caught every failure and returned `[]`, so `SshGitProvider.listWorktrees` resolved as a success with an empty list. Downstream reconciliation treats a resolved listing as authoritative, which reaches `teardownMissingWorktreeTerminalsBestEffort` and the unregistered-worktree removal paths — a data-loss path from a failed scan. - relay: the `-z`-unsupported fallback lane propagates its failure instead of swallowing it to `[]`. - provider: an empty or malformed `git.listWorktrees` response is refused as `WorktreeCatalogUnavailableError`. A Git repo always lists its own checkout, so a zero-row listing can only be a scan that never answered — this is the mixed-version guard against relays that still swallow. - `listRepoWorktrees`: an unreachable SSH host reports unavailable instead of an empty catalog. #12661: `ssh:terminateSessions` now returns `{ terminated, unverifiable }`, so an offline sweep that only tore down local transport cannot be mistaken for a remote kill. The Manage-hosts toast warns instead of claiming success. * chore(i18n): register the unreachable-terminal terminate message
79 lines
3.2 KiB
TypeScript
79 lines
3.2 KiB
TypeScript
import type {
|
|
EnrichedDetectedPort,
|
|
PortForwardEntry,
|
|
SshConfigHostListArgs,
|
|
SshConfigHostListResult,
|
|
SshConfigHostResolution,
|
|
SshConfigImportResult,
|
|
SshConnectionState,
|
|
SshTarget,
|
|
SshTargetAddResult,
|
|
SshTargetCreateInput,
|
|
SshTargetUpdateInput,
|
|
SshTerminateSessionsResult
|
|
} from '../../shared/ssh-types'
|
|
import type { FilesystemPathFlavor } from '../../shared/filesystem-entry-types'
|
|
|
|
export type SshApi = {
|
|
listTargets: () => Promise<SshTarget[]>
|
|
// Removed-target id → last known label, for a friendly host name on workspaces still pinned to a removed target.
|
|
listRemovedTargetLabels: () => Promise<Record<string, string>>
|
|
addTarget: (args: { target: SshTargetCreateInput }) => Promise<SshTargetAddResult>
|
|
updateTarget: (args: { id: string; updates: SshTargetUpdateInput }) => Promise<SshTarget>
|
|
removeTarget: (args: { id: string }) => Promise<void>
|
|
importConfig: (args?: { reAdopt?: boolean }) => Promise<SshConfigImportResult>
|
|
listConfigHosts: (args?: SshConfigHostListArgs) => Promise<SshConfigHostListResult>
|
|
resolveConfigHost: (args: { alias: string }) => Promise<SshConfigHostResolution | null>
|
|
connect: (args: { targetId: string }) => Promise<SshConnectionState | null>
|
|
disconnect: (args: { targetId: string }) => Promise<void>
|
|
terminateSessions: (args: { targetId: string }) => Promise<SshTerminateSessionsResult>
|
|
resetRelay: (args: { targetId: string }) => Promise<void>
|
|
getState: (args: { targetId: string }) => Promise<SshConnectionState | null>
|
|
needsPassphrasePrompt: (args: { targetId: string }) => Promise<boolean>
|
|
testConnection: (args: {
|
|
targetId: string
|
|
}) => Promise<{ success: boolean; error?: string; state?: SshConnectionState }>
|
|
onStateChanged: (
|
|
callback: (data: { targetId: string; state: SshConnectionState }) => void
|
|
) => () => void
|
|
addPortForward: (args: {
|
|
targetId: string
|
|
localPort: number
|
|
remoteHost: string
|
|
remotePort: number
|
|
label?: string
|
|
}) => Promise<PortForwardEntry>
|
|
updatePortForward: (args: {
|
|
id: string
|
|
targetId: string
|
|
localPort: number
|
|
remoteHost: string
|
|
remotePort: number
|
|
label?: string
|
|
}) => Promise<PortForwardEntry>
|
|
removePortForward: (args: { id: string }) => Promise<PortForwardEntry | null>
|
|
listPortForwards: (args?: { targetId?: string }) => Promise<PortForwardEntry[]>
|
|
listDetectedPorts: (args: { targetId: string }) => Promise<EnrichedDetectedPort[]>
|
|
onPortForwardsChanged: (
|
|
callback: (data: { targetId: string; forwards: PortForwardEntry[] }) => void
|
|
) => () => void
|
|
onDetectedPortsChanged: (
|
|
callback: (data: { targetId: string; ports: EnrichedDetectedPort[] }) => void
|
|
) => () => void
|
|
browseDir: (args: { targetId: string; dirPath: string }) => Promise<{
|
|
entries: { name: string; isDirectory: boolean }[]
|
|
resolvedPath: string
|
|
pathFlavor: FilesystemPathFlavor
|
|
}>
|
|
onCredentialRequest: (
|
|
callback: (data: {
|
|
requestId: string
|
|
targetId: string
|
|
kind: 'passphrase' | 'password' | 'keyboard-interactive'
|
|
detail: string
|
|
}) => void
|
|
) => () => void
|
|
onCredentialResolved: (callback: (data: { requestId: string }) => void) => () => void
|
|
submitCredential: (args: { requestId: string; value: string | null }) => Promise<void>
|
|
}
|