-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathremote.ts
133 lines (117 loc) · 4.61 KB
/
remote.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*---------------------------------------------------------------------------------------------
* Copyright (c) Gitpod. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
import SSHDestination from './ssh/sshDestination';
export interface SSHConnectionParams {
workspaceId: string;
instanceId: string;
gitpodHost: string;
debugWorkspace?: boolean;
connType?: 'local-app' | 'local-ssh' | 'ssh-gateway';
}
export interface WorkspaceRestartInfo {
workspaceId: string;
gitpodHost: string;
remoteUri: string;
}
export class NoRunningInstanceError extends Error {
code = 'NoRunningInstanceError';
constructor(readonly workspaceId: string, readonly phase?: string) {
super(`Failed to connect to Gitpod workspace, workspace not running: ${phase}`);
this.name = 'NoRunningInstanceError';
}
}
export class NoSSHGatewayError extends Error {
code = 'NoSSHGatewayError';
constructor(readonly host: string) {
super(`SSH gateway not configured for this Gitpod Host ${host}`);
this.name = 'NoSSHGatewayError';
}
}
export class NoExtensionIPCServerError extends Error {
code = 'NoExtensionIPCServer';
constructor() {
super('No Extension IPC Server running');
this.name = 'NoExtensionIPCServerError';
}
}
export class NoLocalSSHSupportError extends Error {
code = 'NoLocalSSHSupport';
constructor() {
super('No Local SSH support');
this.name = 'NoLocalSSHSupportError';
}
}
export const SSH_DEST_KEY = 'ssh-dest:';
export const WORKSPACE_STOPPED_PREFIX = 'stopped_workspace:';
export function getGitpodRemoteWindowConnectionInfo(context: vscode.ExtensionContext): { connectionInfo: SSHConnectionParams; remoteUri: vscode.Uri; sshDestStr: string } | undefined {
const remoteUri = vscode.workspace.workspaceFile?.scheme !== 'untitled'
? vscode.workspace.workspaceFile || vscode.workspace.workspaceFolders?.[0].uri
: vscode.workspace.workspaceFolders?.[0].uri;
if (vscode.env.remoteName === 'dev-container' && context.extension.extensionKind === vscode.ExtensionKind.UI && remoteUri) {
const authorities = remoteUri.authority.split('@');
const sshAuthority = authorities.find((str) => str.includes('ssh-remote'));
const containerAuthority = authorities.find((str) => str.includes('dev-container'));
if (!sshAuthority || !containerAuthority) {
return undefined;
}
const [, sshEncoded] = sshAuthority.split('+');
if (!sshEncoded) {
return undefined;
}
const sshDest = SSHDestination.fromRemoteSSHString(sshEncoded);
const connectionInfo = context.globalState.get<SSHConnectionParams>(`${SSH_DEST_KEY}${sshDest.toRemoteSSHString()}`);
if (connectionInfo) {
return { connectionInfo, remoteUri, sshDestStr: sshDest.toRemoteSSHString() };
}
}
if (vscode.env.remoteName === 'ssh-remote' && context.extension.extensionKind === vscode.ExtensionKind.UI && remoteUri) {
const [, sshDestStr] = remoteUri.authority.split('+');
const connectionInfo = context.globalState.get<SSHConnectionParams>(`${SSH_DEST_KEY}${sshDestStr}`);
if (connectionInfo) {
return { connectionInfo, remoteUri, sshDestStr };
}
}
return undefined;
}
export function isGitpodFlexRemoteWindow() {
const remoteUri = vscode.workspace.workspaceFile?.scheme !== 'untitled'
? vscode.workspace.workspaceFile || vscode.workspace.workspaceFolders?.[0].uri
: vscode.workspace.workspaceFolders?.[0].uri;
if (!remoteUri) {
return false;
}
if (vscode.env.remoteName === 'dev-container') {
const authorities = remoteUri.authority.split('@');
const sshAuthority = authorities.find((str) => str.includes('ssh-remote'));
const containerAuthority = authorities.find((str) => str.includes('dev-container'));
if (!sshAuthority || !containerAuthority) {
return false;
}
const [, sshEncoded] = sshAuthority.split('+');
if (!sshEncoded) {
return false;
}
const [, containerEncoded] = containerAuthority.split('+');
if (!containerEncoded) {
return false;
}
const sshDest = SSHDestination.fromRemoteSSHString(sshEncoded);
return /gitpod\.(local|remote)$/.test(sshDest.hostname);
}
if (vscode.env.remoteName === 'ssh-remote') {
const [, sshEncoded] = remoteUri.authority.split('+');
if (!sshEncoded) {
return;
}
const sshDest = SSHDestination.fromRemoteSSHString(sshEncoded);
return /gitpod\.(local|remote)$/.test(sshDest.hostname);
}
return false;
}
export function getLocalSSHDomain(gitpodHost: string): string {
const scope = vscode.env.appName.includes('Insiders') ? 'vsi' : 'vss';
return `${scope}.` + (new URL(gitpodHost)).hostname;
}