forked from shah/vscode-team
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwsctl.ts
472 lines (454 loc) · 13.8 KB
/
wsctl.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
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
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
import docopt, {
DocOptions,
} from "https://denopkg.com/Eyal-Shalev/[email protected]/src/docopt.ts";
import * as mod from "./mod.ts";
// TODO: Use the new `cli.ts` reusable CLI instead of (older) custom one here.
// See example in configctl.ts of how to properly organize the CLI so
// that the code works in a CLI or as a library.
const $VERSION = "v0.9.3";
const docoptSpec = `
Visual Studio Team Workspaces Controller ${$VERSION}.
Usage:
wsctl setup <workspaces-home-path> <repos-home-path> [--no-pull] [--create-repos-path] [--dry-run] [--verbose]
wsctl vscws inspect folders <file.code-workspace>
wsctl vscws settings sync (deno|auto) <file.code-workspace> [--tag=<tag>] [--dry-run] [--verbose]
wsctl vscws git clone <file.code-workspace> <repos-home-path> [--create-repos-path] [--dry-run] [--verbose]
wsctl vscws git fetch <file.code-workspace> [--dry-run]
wsctl vscws git pull <file.code-workspace> [--dry-run]
wsctl vscws git status <file.code-workspace> [--dry-run]
wsctl vscws git commit <message> <file.code-workspace> [--dry-run]
wsctl vscws git add-commit <message> <file.code-workspace> [--dry-run]
wsctl vscws git add-commit-push <message> <file.code-workspace> [--dry-run]
wsctl vscws npm install <file.code-workspace> [--node-home=<path>] [--dry-run]
wsctl vscws npm publish <file.code-workspace> [--node-home=<path>] [--dry-run]
wsctl vscws npm update <file.code-workspace> [--node-home=<path>] [--dry-run]
wsctl vscws npm test <file.code-workspace> [--node-home=<path>] [--dry-run]
wsctl vscws npm version bump (major|minor|patch) <file.code-workspace> [--no-git-tag-version] [--node-home=<path>] [--dry-run]
wsctl vscws deno lint <file.code-workspace> [--dry-run]
wsctl vscws deno fmt <file.code-workspace> [--dry-run]
wsctl vscws deno test <file.code-workspace> [--dry-run]
wsctl vscws deno update <file.code-workspace> [--dry-run]
wsctl -h | --help
wsctl --version
Options:
-h --help Show this screen
--version Show version
<file.code-workspace> Visual Studio Code workspace file
<repos-home-path> Usually $HOME/workspaces
--node-home=<path> NodeJS home path (e.g. $HOME/.nvm/versions/node/v14.5.0)
--tag=<tag> A specific version of a repo to use (default: "master")
--dry-run Show what will happen instead of executing
--verbose Be descriptive about what's going on
`;
export interface CommandHandler {
(options: DocOptions): Promise<true | void>;
}
export async function vscwsInspectFoldersHandler(
options: DocOptions,
): Promise<true | void> {
const { vscws, inspect, folders, "<file.code-workspace>": wsFileName } =
options;
if (vscws && inspect && folders && wsFileName) {
const folders: mod.VsCodeWorkspaceFolder[] = [];
mod.vsCodeWorkspaceFolders({
wsFileNames: Array.isArray(wsFileName)
? wsFileName
: [wsFileName.toString()],
}).forEach((ctx) => {
folders.push(ctx.folder);
});
console.dir(folders);
return true;
}
}
export async function setupHandler(
options: DocOptions,
): Promise<true | void> {
const {
setup,
"<workspaces-home-path>": workspacesHomePath,
"<repos-home-path>": reposHomePath,
"--create-repos-path": createReposPath,
"--dry-run": dryRun,
"--verbose": verbose,
"--no-pull": noPullFirst,
} = options;
if (setup && workspacesHomePath && reposHomePath) {
mod.setupWorkspaces({
workspacesMasterRepo: workspacesHomePath.toString(),
reposHomePath: reposHomePath.toString(),
dryRun: dryRun ? true : false,
verbose: verbose ? true : false,
pullMasterWsRepoFirst: noPullFirst ? false : true,
reposHomePathDoesNotExistHandler: () => {
if (createReposPath && reposHomePath) {
if (dryRun) {
console.log(`mkdir -p ${reposHomePath}`);
} else {
Deno.mkdirSync(reposHomePath.toString());
}
return "recovered";
}
console.error(`${reposHomePath} does not exist`);
return "unrecoverrable";
},
});
return true;
}
}
export async function vscwsGitCloneHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
git,
clone,
"<file.code-workspace>": wsFileName,
"<repos-home-path>": reposHomePath,
"--create-repos-path": createReposPath,
"--dry-run": dryRun,
"--verbose": verbose,
} = options;
if (vscws && git && clone && wsFileName && reposHomePath) {
await mod.gitCloneVsCodeFolders(
{
wsFileNames: Array.isArray(wsFileName)
? wsFileName
: [wsFileName.toString()],
reposHomePath: reposHomePath ? reposHomePath.toString() : ".",
dryRun: dryRun ? true : false,
verbose: verbose ? true : false,
reposHomePathDoesNotExistHandler: () => {
if (createReposPath && reposHomePath) {
if (dryRun) {
console.log(`mkdir -p ${reposHomePath}`);
} else {
Deno.mkdirSync(reposHomePath.toString());
}
return "recovered";
}
console.error(`${reposHomePath} does not exist`);
return "unrecoverrable";
},
},
);
return true;
}
}
export async function vscwsGitStatusHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
git,
status,
"<file.code-workspace>": wsFileName,
"--dry-run": dryRun,
} = options;
if (vscws && git && status && wsFileName) {
await mod.workspaceFoldersGitCommandHandler(
dryRun ? true : false,
wsFileName as (string[] | string),
"status -s",
(ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
);
return true;
}
}
export async function vscwsGitFetchPullHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
git,
pull,
fetch,
"<file.code-workspace>": wsFileName,
"--dry-run": dryRun,
} = options;
if (vscws && git && (pull || fetch) && wsFileName) {
await mod.workspaceFoldersGitCommandHandler(
false, // fetch and pull have their own dry run
wsFileName as (string[] | string),
pull
? `pull${dryRun ? " --dry-run" : ""}`
: `fetch${dryRun ? " --dry-run" : ""}`,
(ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
);
return true;
}
}
export async function vscwsGitCommitHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
git,
"add-commit": addCommit,
"commit": commit,
"add-commit-push": addCommitPush,
"<message>": message,
"<file.code-workspace>": wsFileName,
"--dry-run": dryRun,
} = options;
if (
vscws && git && (addCommit || commit || addCommitPush) && message &&
wsFileName
) {
const gitDryRun = dryRun ? " --dry-run" : "";
if (addCommit || addCommitPush) {
await mod.workspaceFoldersGitCommandHandler(
false, // we'll use git commit --dry-run instead
wsFileName as (string[] | string),
`add${gitDryRun} .`,
(ctx) => {
return mod.postShellCmdBlockStatusReporter(
"==> " + ctx.folder.path + ` (git add${gitDryRun})`,
);
},
);
}
await mod.workspaceFoldersGitCommandHandler(
false, // we'll use git commit --dry-run instead
wsFileName as (string[] | string),
`commit${gitDryRun} -am "${message}"`,
(ctx) => {
return mod.postShellCmdBlockStatusReporter(
"==> " + ctx.folder.path + ` (git commit -am${gitDryRun})`,
);
},
);
if (addCommitPush) {
await mod.workspaceFoldersGitCommandHandler(
false, // we'll use git commit --dry-run instead
wsFileName as (string[] | string),
`push${gitDryRun}`,
(ctx) => {
return mod.postShellCmdBlockStatusReporter(
"==> " + ctx.folder.path + ` (git push${gitDryRun})`,
);
},
);
}
return true;
}
}
export async function vscwsNpmSingleCommandHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
npm,
update,
install,
test,
publish,
"<file.code-workspace>": wsFileName,
"--node-home": nodeHomePath,
"--dry-run": dryRun,
} = options;
if (vscws && npm && (update || install || test || publish) && wsFileName) {
let npmCmd = "(unknown)";
let filter:
| ((ctx: mod.VsCodeWorkspaceFolderContext) => boolean)
| undefined;
switch (update || install || test || publish) {
case update:
npmCmd = "update";
break;
case install:
npmCmd = "install";
break;
case test:
npmCmd = "test";
break;
case publish:
npmCmd = "publish";
filter = (ctx: mod.VsCodeWorkspaceFolderContext): boolean => {
return mod.isNpmPublishableProject(ctx.folder);
};
break;
}
await mod.workspaceFoldersNpmCommandHandler({
dryRun: dryRun ? true : false,
wsFileName: wsFileName as (string[] | string),
nodeHomePath: nodeHomePath
? nodeHomePath.toString()
: "/usr/local/bin/node",
npmCmdParams: npmCmd,
reporter: (ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
filter: filter,
});
return true;
}
}
export async function vscwsNpmVersionHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
npm,
version,
bump,
major,
minor,
"<file.code-workspace>": wsFileName,
"--node-home": nodeHomePath,
"--no-git-tag-version": noGitTagVersion,
"--dry-run": dryRun,
} = options;
if (vscws && npm && version && bump) {
const version = major ? "major" : (minor ? "minor" : "patch");
await mod.workspaceFoldersNpmCommandHandler({
dryRun: dryRun ? true : false,
wsFileName: wsFileName as (string[] | string),
nodeHomePath: nodeHomePath
? nodeHomePath.toString()
: "/usr/local/bin/node",
npmCmdParams: `${
noGitTagVersion ? "--no-git-tag-version" : ""
} version ${version}`,
reporter: (ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
});
return true;
}
}
export async function vscwsDenoSingleCommandHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
deno,
lint,
fmt,
test,
"<file.code-workspace>": wsFileName,
"--dry-run": dryRun,
} = options;
if (vscws && deno && (fmt || lint || test)) {
await mod.workspaceFoldersDenoProjectHandler({
dryRun: dryRun ? true : false,
wsFileName: wsFileName as (string[] | string),
command: (): string => {
return lint
? "deno lint --unstable"
: (fmt ? "deno fmt --unstable -A" : "deno test --unstable -A");
},
filter: (ctx): boolean => {
return mod.isDenoProject(ctx.folder);
},
reporter: (ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
});
return true;
}
}
export async function vscwsDenoUpdateHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
deno,
update,
"<file.code-workspace>": wsFileName,
"--dry-run": dryRun,
} = options;
if (vscws && deno && update) {
await mod.workspaceFoldersDenoProjectHandler({
dryRun: false, // udd has its own --dry-run
wsFileName: wsFileName as (string[] | string),
command: (dp: mod.DenoProject): string => {
const checkFiles: string[] = [];
for (const candidate of dp.updateDepsCandidates()) {
if (candidate.fileExists) {
checkFiles.push(candidate.relativeTo(dp.absProjectPath));
}
}
return `udd${dryRun ? " --dry-run" : ""} ${checkFiles.join(" ")}`;
},
filter: (ctx): boolean => {
return mod.isDenoProject(ctx.folder) &&
ctx.folder.updateDepsCandidates().length > 0;
},
reporter: (ctx) => {
return mod.postShellCmdBlockStatusReporter(ctx.folder.path);
},
});
return true;
}
}
export async function vscwsSettingsSyncHandler(
options: DocOptions,
): Promise<true | void> {
const {
vscws,
settings,
sync,
deno,
"<file.code-workspace>": wsFileName,
"--tag": tag,
"--dry-run": dryRun,
"--verbose": verbose,
} = options;
if (vscws && settings && sync) {
const stdLib: "auto" | "deno" = (deno ? "deno" : "auto");
const cmdRuns: Promise<void>[] = [];
mod.vsCodeWorkspaceFolders({
wsFileNames: Array.isArray(wsFileName)
? wsFileName
: [wsFileName!.toString()],
}).forEach((ctx) => {
if (
(stdLib === "auto" || stdLib === "deno") &&
mod.isDenoProject(ctx.folder)
) {
mod.copyVsCodeSettingsFromGitHub("deno", {
srcRepoTag: tag ? tag.toString() : undefined,
projectHomePath: ctx.folder.absProjectPath,
dryRun: dryRun ? true : false,
verbose: verbose ? true : false,
});
}
});
await Promise.all(cmdRuns);
return true;
}
}
if (import.meta.main) {
const handlers: CommandHandler[] = [
vscwsInspectFoldersHandler,
vscwsGitCloneHandler,
vscwsGitFetchPullHandler,
vscwsGitStatusHandler,
vscwsGitCommitHandler,
vscwsNpmSingleCommandHandler,
vscwsNpmVersionHandler,
vscwsDenoSingleCommandHandler,
vscwsDenoUpdateHandler,
vscwsSettingsSyncHandler,
setupHandler,
];
try {
const options = docopt(docoptSpec);
let handled: true | void;
for (const handler of handlers) {
handled = await handler(options);
if (handled) break;
}
if (!handled) {
console.error("Unable to handle validly parsed docoptSpec:");
console.dir(options);
}
} catch (e) {
console.error(e.message);
}
}