-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathbashStartup.ts
More file actions
309 lines (276 loc) · 11.4 KB
/
bashStartup.ts
File metadata and controls
309 lines (276 loc) · 11.4 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
import * as fs from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
import which from 'which';
import { traceError, traceInfo, traceVerbose } from '../../../../common/logging';
import { ShellConstants } from '../../../common/shellConstants';
import { hasStartupCode, insertStartupCode, removeStartupCode } from '../common/editUtils';
import { isWsl, shellIntegrationForActiveTerminal } from '../common/shellUtils';
import { ShellScriptEditState, ShellSetupState, ShellStartupScriptProvider } from '../startupProvider';
import { BASH_ENV_KEY, BASH_OLD_ENV_KEY, BASH_SCRIPT_VERSION, ZSH_ENV_KEY, ZSH_OLD_ENV_KEY } from './bashConstants';
async function isBashLikeInstalled(): Promise<boolean> {
const result = await Promise.all([which('bash', { nothrow: true }), which('sh', { nothrow: true })]);
return result.some((r) => r !== null);
}
async function isZshInstalled(): Promise<boolean> {
const result = await which('zsh', { nothrow: true });
return result !== null;
}
async function isGitBashInstalled(): Promise<boolean> {
const gitPath = await which('git', { nothrow: true });
if (gitPath) {
const gitBashPath = path.join(path.dirname(path.dirname(gitPath)), 'bin', 'bash.exe');
return await fs.pathExists(gitBashPath);
}
return false;
}
async function getBashProfiles(): Promise<string> {
const homeDir = os.homedir();
const profile: string = path.join(homeDir, '.bashrc');
return profile;
}
async function getZshProfiles(): Promise<string> {
const zdotdir = process.env.ZDOTDIR;
const baseDir = zdotdir || os.homedir();
const profile: string = path.join(baseDir, '.zshrc');
return profile;
}
const regionStart = '# >>> vscode python';
const regionEnd = '# <<< vscode python';
function getActivationContent(key: string): string {
const lineSep = '\n';
return [
`# version: ${BASH_SCRIPT_VERSION}`,
`if [ -z "$VSCODE_PYTHON_AUTOACTIVATE_GUARD" ]; then`,
` export VSCODE_PYTHON_AUTOACTIVATE_GUARD=1`,
` if [ -n "$${key}" ] && [ "$TERM_PROGRAM" = "vscode" ]; then`,
` eval "$${key}" || true`,
` fi`,
`fi`,
].join(lineSep);
}
async function isStartupSetup(profile: string, key: string): Promise<ShellSetupState> {
if (await fs.pathExists(profile)) {
const content = await fs.readFile(profile, 'utf8');
if (hasStartupCode(content, regionStart, regionEnd, [key])) {
return ShellSetupState.Setup;
}
}
return ShellSetupState.NotSetup;
}
async function setupStartup(profile: string, key: string, name: string): Promise<boolean> {
if ((await shellIntegrationForActiveTerminal(name, profile)) && !isWsl()) {
removeStartup(profile, key);
return true;
}
const activationContent = getActivationContent(key);
try {
if (await fs.pathExists(profile)) {
const content = await fs.readFile(profile, 'utf8');
if (hasStartupCode(content, regionStart, regionEnd, [key])) {
traceInfo(`SHELL: ${name} profile already contains activation code at: ${profile}`);
} else {
await fs.writeFile(profile, insertStartupCode(content, regionStart, regionEnd, activationContent));
traceInfo(`SHELL: Updated existing ${name} profile at: ${profile}\n${activationContent}`);
}
} else {
await fs.mkdirp(path.dirname(profile));
await fs.writeFile(profile, insertStartupCode('', regionStart, regionEnd, activationContent));
traceInfo(`SHELL: Created new ${name} profile at: ${profile}\n${activationContent}`);
}
return true;
} catch (err) {
traceError(`SHELL: Failed to setup startup for profile at: ${profile}`, err);
return false;
}
}
async function removeStartup(profile: string, key: string): Promise<boolean> {
if (!(await fs.pathExists(profile))) {
return true;
}
try {
const content = await fs.readFile(profile, 'utf8');
if (hasStartupCode(content, regionStart, regionEnd, [key])) {
await fs.writeFile(profile, removeStartupCode(content, regionStart, regionEnd));
traceInfo(`SHELL: Removed activation from profile at: ${profile}, for key: ${key}`);
} else {
traceVerbose(`Profile at ${profile} does not contain activation code, for key: ${key}`);
}
return true;
} catch (err) {
traceVerbose(`Failed to remove ${profile} startup, for key: ${key}`, err);
return false;
}
}
export class BashStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'bash';
public readonly shellType: string = ShellConstants.BASH;
private async checkShellInstalled(): Promise<boolean> {
const found = await isBashLikeInstalled();
if (!found) {
traceInfo(
'`bash` or `sh` was not found on the system',
'If it is installed make sure it is available on `PATH`',
);
}
return found;
}
async isSetup(): Promise<ShellSetupState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellSetupState.NotInstalled;
}
try {
const bashProfile = await getBashProfiles();
return await isStartupSetup(bashProfile, BASH_ENV_KEY);
} catch (err) {
traceError('Failed to check bash startup scripts', err);
return ShellSetupState.NotSetup;
}
}
async setupScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const bashProfiles = await getBashProfiles();
const result = await setupStartup(bashProfiles, BASH_ENV_KEY, this.name);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to setup bash startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
async teardownScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const bashProfile = await getBashProfiles();
// Remove old environment variable if it exists
await removeStartup(bashProfile, BASH_OLD_ENV_KEY);
const result = await removeStartup(bashProfile, BASH_ENV_KEY);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to teardown bash startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
clearCache(): Promise<void> {
return Promise.resolve();
}
}
export class ZshStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'zsh';
public readonly shellType: string = ShellConstants.ZSH;
private async checkShellInstalled(): Promise<boolean> {
const found = await isZshInstalled();
if (!found) {
traceInfo('`zsh` was not found on the system', 'If it is installed make sure it is available on `PATH`');
}
return found;
}
async isSetup(): Promise<ShellSetupState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellSetupState.NotInstalled;
}
try {
const zshProfiles = await getZshProfiles();
return await isStartupSetup(zshProfiles, ZSH_ENV_KEY);
} catch (err) {
traceError('Failed to check zsh startup scripts', err);
return ShellSetupState.NotSetup;
}
}
async setupScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const zshProfiles = await getZshProfiles();
const result = await setupStartup(zshProfiles, ZSH_ENV_KEY, this.name);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to setup zsh startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
async teardownScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const zshProfiles = await getZshProfiles();
await removeStartup(zshProfiles, ZSH_OLD_ENV_KEY);
const result = await removeStartup(zshProfiles, ZSH_ENV_KEY);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to teardown zsh startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
clearCache(): Promise<void> {
return Promise.resolve();
}
}
export class GitBashStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'Git bash';
public readonly shellType: string = ShellConstants.GITBASH;
private async checkShellInstalled(): Promise<boolean> {
const found = await isGitBashInstalled();
if (!found) {
traceInfo('Git Bash was not found on the system', 'If it is installed make sure it is available on `PATH`');
}
return found;
}
async isSetup(): Promise<ShellSetupState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellSetupState.NotInstalled;
}
try {
const bashProfiles = await getBashProfiles();
return await isStartupSetup(bashProfiles, BASH_ENV_KEY);
} catch (err) {
traceError('Failed to check git bash startup scripts', err);
return ShellSetupState.NotSetup;
}
}
async setupScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const bashProfiles = await getBashProfiles();
const result = await setupStartup(bashProfiles, BASH_ENV_KEY, this.name);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to setup git bash startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
async teardownScripts(): Promise<ShellScriptEditState> {
const found = await this.checkShellInstalled();
if (!found) {
return ShellScriptEditState.NotInstalled;
}
try {
const bashProfiles = await getBashProfiles();
await removeStartup(bashProfiles, BASH_OLD_ENV_KEY);
const result = await removeStartup(bashProfiles, BASH_ENV_KEY);
return result ? ShellScriptEditState.Edited : ShellScriptEditState.NotEdited;
} catch (err) {
traceError('Failed to teardown git bash startup scripts', err);
return ShellScriptEditState.NotEdited;
}
}
clearCache(): Promise<void> {
return Promise.resolve();
}
}