-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathLifecycleCommands.ts
More file actions
1487 lines (1274 loc) · 66.6 KB
/
LifecycleCommands.ts
File metadata and controls
1487 lines (1274 loc) · 66.6 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
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) Microsoft Corporation.
*
* Licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
import * as fs from "fs";
import * as path from "path";
import * as vscode from "vscode";
import {
ExtensionContext,
InputBoxOptions,
Progress,
ProgressLocation,
Uri,
workspace as vscWorkspace,
WorkspaceFolder,
} from "vscode";
import { GlobalEventBus } from "../GlobalEventBus";
import {
AuthenticationKind,
CreateAuthState,
ExtensionInfo,
GenericResult,
IPQTestService,
} from "../common/PQTestService";
import { extensionI18n, resolveI18nTemplate } from "../i18n/extension";
import {
getAnyPqFileBeneathTheFirstWorkspace,
getCurrentWorkspaceSettingPath,
getFirstWorkspaceFolder,
resolveSubstitutedValues,
substitutedWorkspaceFolderBasenameIfNeeded,
updateCurrentLocalPqModeIfNeeded,
} from "../utils/vscodes";
import { InputStep, MultiStepInput } from "../common/MultiStepInput";
import { PqServiceHostClient, PqServiceHostServerNotReady } from "../pqTestConnector/PqServiceHostClient";
import { PqTestResultViewPanel, SimplePqTestResultViewBroker } from "../panels/PqTestResultViewPanel";
import { prettifyJson, resolveTemplateSubstitutedValues } from "../utils/strings";
import { debounce } from "../utils/debounce";
import { ExtensionConfigurations } from "../constants/PowerQuerySdkConfiguration";
import { ExtensionConstants } from "../constants/PowerQuerySdkExtension";
import { getCtimeOfAFile } from "../utils/files";
import { IDisposable } from "../common/Disposable";
import { PqSdkNugetPackageService } from "../common/PqSdkNugetPackageService";
import { PqSdkOutputChannel } from "../features/PqSdkOutputChannel";
const CommandPrefix: string = `powerquery.sdk.tools`;
const validateProjectNameRegExp: RegExp = /[A-Za-z]+/;
const templateFileBaseName: string = "PQConn";
export class LifecycleCommands implements IDisposable {
static SeizePqTestCommand: string = `${CommandPrefix}.SeizePqTestCommand`;
static BuildProjectCommand: string = `${CommandPrefix}.BuildProjectCommand`;
static SetupCurrentWorkspaceCommand: string = `${CommandPrefix}.SetupCurrentWorkspaceCommand`;
static CreateNewProjectCommand: string = `${CommandPrefix}.CreateNewProjectCommand`;
static DeleteCredentialCommand: string = `${CommandPrefix}.DeleteCredentialCommand`;
static DisplayExtensionInfoCommand: string = `${CommandPrefix}.DisplayExtensionInfoCommand`;
static ListCredentialCommand: string = `${CommandPrefix}.ListCredentialCommand`;
static GenerateAndSetCredentialCommand: string = `${CommandPrefix}.GenerateAndSetCredentialCommand`;
static RefreshCredentialCommand: string = `${CommandPrefix}.RefreshCredentialCommand`;
static RunTestBatteryCommand: string = `${CommandPrefix}.RunTestBatteryCommand`;
static TestConnectionCommand: string = `${CommandPrefix}.TestConnectionCommand`;
private isSuggestingSetupCurrentWorkspace: boolean = false;
private readonly initPqSdkTool$deferred: Promise<string | undefined>;
private checkAndTryToUpdatePqTestDeferred$: Promise<string | undefined> | undefined;
constructor(
private readonly vscExtCtx: ExtensionContext,
readonly globalEventBus: GlobalEventBus,
private readonly pqSdkNugetPackageService: PqSdkNugetPackageService,
private readonly pqTestService: IPQTestService,
private readonly outputChannel: PqSdkOutputChannel,
) {
vscExtCtx.subscriptions.push(
vscode.commands.registerCommand(LifecycleCommands.SeizePqTestCommand, this.manuallyUpdatePqTest.bind(this)),
vscode.commands.registerCommand(
LifecycleCommands.BuildProjectCommand,
this.doBuildProjectCommand.bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.SetupCurrentWorkspaceCommand,
this.setupCurrentlyOpenedWorkspaceCommand.bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.CreateNewProjectCommand,
this.generateOneNewProject.bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.DeleteCredentialCommand,
this.commandGuard(this.deleteCredentialCommand).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.DisplayExtensionInfoCommand,
this.commandGuard(this.displayExtensionInfoCommand).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.ListCredentialCommand,
this.commandGuard(this.listCredentialCommand).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.GenerateAndSetCredentialCommand,
this.commandGuard(this.generateAndSetCredentialCommandV2).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.RefreshCredentialCommand,
this.commandGuard(this.refreshCredentialCommand).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.RunTestBatteryCommand,
this.commandGuard(this.runTestBatteryCommand).bind(this),
),
vscode.commands.registerCommand(
LifecycleCommands.TestConnectionCommand,
this.commandGuard(this.testConnectionCommand).bind(this),
),
);
this.initPqSdkTool$deferred = this.checkAndTryToUpdatePqTest(true);
this.activateIntervalTasks();
void this.promptToSetupCurrentWorkspaceIfNeeded();
}
dispose(): void {
this.disposeIntervalTasks();
}
private intervalTaskHandler: NodeJS.Timeout | undefined;
private activateIntervalTasks(): void {
// update lastCtimeOfMezFileWhoseInfoSeized once its info:static-type-check got re-eval
this.pqTestService.currentExtensionInfos.subscribe(() => {
const currentPQTestExtensionFileLocation: string | undefined =
ExtensionConfigurations.DefaultExtensionLocation;
const resolvedPQTestExtensionFileLocation: string | undefined = currentPQTestExtensionFileLocation
? resolveSubstitutedValues(currentPQTestExtensionFileLocation)
: undefined;
if (resolvedPQTestExtensionFileLocation && fs.existsSync(resolvedPQTestExtensionFileLocation)) {
this.lastCtimeOfMezFileWhoseInfoSeized = getCtimeOfAFile(resolvedPQTestExtensionFileLocation);
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.update.lastCtimeOfMezFile", {
lastCtimeOfMezFileWhoseInfoSeized: String(this.lastCtimeOfMezFileWhoseInfoSeized.getTime()),
}),
);
}
});
this.intervalTaskHandler = setInterval(this.intervalTask.bind(this), 3995);
}
private disposeIntervalTasks(): void {
if (this.intervalTaskHandler) {
clearInterval(this.intervalTaskHandler);
this.intervalTaskHandler = undefined;
}
}
private intervalTask(): void {
// this task gonna be invoked repeatedly, thus make sure it is as lite as possible
void this.promptSettingIncorrectOrInvokeInfoTaskIfNeeded();
}
private currentIncorrectConnectorPathInSettingGotPromptedBefore: boolean = false;
private lastCtimeOfMezFileWhoseInfoSeized: Date = new Date(0);
private onGoingDisplayLatestExtensionInfoCommand:
| {
ctime: Date;
deferred: Promise<unknown>;
}
| undefined = undefined;
private promptSettingIncorrectOrInvokeInfoTaskIfNeeded(): void {
const currentPQTestExtensionFileLocation: string | undefined = ExtensionConfigurations.DefaultExtensionLocation;
const resolvedPQTestExtensionFileLocation: string | undefined = currentPQTestExtensionFileLocation
? resolveSubstitutedValues(currentPQTestExtensionFileLocation)
: undefined;
if (
resolvedPQTestExtensionFileLocation &&
fs.existsSync(resolvedPQTestExtensionFileLocation) &&
(!ExtensionConfigurations.featureUseServiceHost ||
(this.pqTestService as PqServiceHostClient).pqServiceHostConnected)
) {
const currentCtime: Date = getCtimeOfAFile(resolvedPQTestExtensionFileLocation);
if (currentCtime > this.lastCtimeOfMezFileWhoseInfoSeized && this.pqTestService.pqTestReady) {
// first check where we got an onGoing one or not,
// if the ongGoing one were newer or equaled to the current one, just return
if (
this.onGoingDisplayLatestExtensionInfoCommand &&
this.onGoingDisplayLatestExtensionInfoCommand.ctime >= currentCtime
) {
return;
}
// we need to invoke a info task
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.detect.newerMezFile", {
currentCtime: String(currentCtime.getTime()),
diffCtime: String(currentCtime.getTime() - this.lastCtimeOfMezFileWhoseInfoSeized.getTime()),
}),
);
this.onGoingDisplayLatestExtensionInfoCommand = {
ctime: currentCtime,
deferred: this.displayLatestExtensionInfoCommand(currentCtime).finally(() => {
if (this.onGoingDisplayLatestExtensionInfoCommand?.ctime === currentCtime) {
this.onGoingDisplayLatestExtensionInfoCommand = undefined;
this.lastCtimeOfMezFileWhoseInfoSeized = currentCtime;
}
}),
};
}
// do not reset currentIncorrectConnectorPathInSettingGotPromptedBefore like:
// this.currentIncorrectConnectorPathInSettingGotPromptedBefore = false;
// as there would be a short intermediate state that the mez is messing while building
// then it would bring up the setting.json warning unexpectedly
} else if (!this.currentIncorrectConnectorPathInSettingGotPromptedBefore) {
// prompt only once for each setting config
this.currentIncorrectConnectorPathInSettingGotPromptedBefore = true;
setTimeout(async () => {
const currentPQTestExtensionFileLocation: string | undefined =
ExtensionConfigurations.DefaultExtensionLocation;
const resolvedPQTestExtensionFileLocation: string | undefined = currentPQTestExtensionFileLocation
? resolveSubstitutedValues(currentPQTestExtensionFileLocation)
: undefined;
// still not found
if (!resolvedPQTestExtensionFileLocation || !fs.existsSync(resolvedPQTestExtensionFileLocation)) {
const anyPqFiles: Uri[] = await getAnyPqFileBeneathTheFirstWorkspace();
const nullableCurrentWorkspaceSettingPath: string | undefined = getCurrentWorkspaceSettingPath();
// and we are beneath an opened workspace and there are pq.files be opened pq workspace
if (anyPqFiles.length && nullableCurrentWorkspaceSettingPath) {
const openStr: string = resolveI18nTemplate("PQSdk.common.open.file", {
fileName: "setting.json",
});
const result: string | undefined = await vscode.window.showWarningMessage(
extensionI18n["PQSdk.lifecycle.command.verify.mezFilePath.warning.message"],
openStr,
extensionI18n["PQSdk.common.cancel"],
);
if (result === openStr) {
void vscode.commands.executeCommand(
"vscode.open",
vscode.Uri.file(nullableCurrentWorkspaceSettingPath),
);
}
}
}
}, 7e3);
}
}
private currentExecuteTimeOfExtensionDisplayingInfo: Date | undefined;
private currentCtimeOfExtensionDisplayingInfo: Date | undefined;
private currentDisplayInfoDeferred$: Promise<void> | undefined;
private displayLatestExtensionInfoCommand(targetCTime: Date): Promise<unknown> {
if (
!this.currentCtimeOfExtensionDisplayingInfo ||
!this.currentDisplayInfoDeferred$ ||
!this.currentExecuteTimeOfExtensionDisplayingInfo ||
targetCTime > this.currentCtimeOfExtensionDisplayingInfo ||
// time out and retry if it would take longer than 10s
new Date().getTime() - this.currentExecuteTimeOfExtensionDisplayingInfo.getTime() > 1e4
) {
this.currentExecuteTimeOfExtensionDisplayingInfo = new Date();
this.currentCtimeOfExtensionDisplayingInfo = targetCTime;
this.currentDisplayInfoDeferred$ = this.displayExtensionInfoCommand();
}
return this.currentDisplayInfoDeferred$;
}
public async promptToSetupCurrentWorkspaceIfNeeded(): Promise<void> {
const theFirstWorkspace: vscode.WorkspaceFolder | undefined = getFirstWorkspaceFolder();
if (theFirstWorkspace && !this.isSuggestingSetupCurrentWorkspace && ExtensionConfigurations.autoDetection) {
this.isSuggestingSetupCurrentWorkspace = true;
const anyPqFiles: Uri[] = await getAnyPqFileBeneathTheFirstWorkspace();
if (
anyPqFiles.length &&
!ExtensionConfigurations.DefaultQueryFileLocation &&
!ExtensionConfigurations.DefaultExtensionLocation
) {
const enableStr: string = extensionI18n["PQSdk.common.enable"];
// we need to suggest setup for newly opened folder
const result: string | undefined = await vscode.window.showInformationMessage(
extensionI18n["PQSdk.lifecycle.prompt.update.workspace"],
enableStr,
extensionI18n["PQSdk.common.cancel"],
);
if (result === enableStr) {
void vscode.commands.executeCommand(LifecycleCommands.SetupCurrentWorkspaceCommand);
}
}
this.isSuggestingSetupCurrentWorkspace = false;
}
}
private commandGuard(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
cb: (...args: any[]) => Promise<any>,
debouncedTime: number = 250,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): (...args: any[]) => Promise<any> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
return debounce(async (...args: any[]): Promise<any> => {
let pqTestServiceReady: boolean = this.pqTestService.pqTestReady;
if (!pqTestServiceReady) {
const curPqTestPath: string | undefined = await this.checkAndTryToUpdatePqTest();
pqTestServiceReady = Boolean(curPqTestPath);
}
return pqTestServiceReady ? await cb.apply(this, [...args]) : undefined;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
}, debouncedTime).bind(this) as (...args: any[]) => Promise<any>;
}
public async doBuildProjectCommand(): Promise<void> {
await this.initPqSdkTool$deferred;
return this.pqTestService.ExecuteBuildTaskAndAwaitIfNeeded();
}
public setupCurrentlyOpenedWorkspaceCommand(): Promise<unknown> {
const tasks: Array<Promise<void>> = [];
const nullableFirstWorkspaceUri: vscode.Uri | undefined = getFirstWorkspaceFolder()?.uri;
let hasPQTestExtensionFileLocation: boolean = false;
if (ExtensionConfigurations.DefaultExtensionLocation) {
const resolvedPQTestExtensionFileLocation: string | undefined = resolveSubstitutedValues(
ExtensionConfigurations.DefaultExtensionLocation,
);
hasPQTestExtensionFileLocation = Boolean(
resolvedPQTestExtensionFileLocation && fs.existsSync(resolvedPQTestExtensionFileLocation),
);
}
if (nullableFirstWorkspaceUri) {
updateCurrentLocalPqModeIfNeeded(nullableFirstWorkspaceUri.fsPath);
}
if (!hasPQTestExtensionFileLocation) {
tasks.push(
(async (): Promise<void> => {
const mezUrlsBeneathBin: Uri[] = await vscWorkspace.findFiles("bin/**/*.{mez}", null, 1);
let mezExtensionPath: string = path.join(
"${workspaceFolder}",
"bin",
"AnyCPU",
"Debug",
"${workspaceFolderBasename}.mez",
);
if (mezUrlsBeneathBin.length) {
const relativePath: string = vscWorkspace.asRelativePath(mezUrlsBeneathBin[0], false);
mezExtensionPath = path.join(
"${workspaceFolder}",
path.dirname(relativePath),
substitutedWorkspaceFolderBasenameIfNeeded(path.basename(relativePath)),
);
}
if (ExtensionConfigurations.DefaultExtensionLocation !== mezExtensionPath) {
void ExtensionConfigurations.setDefaultExtensionLocation(mezExtensionPath);
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.set.config", {
configName:
ExtensionConstants.ConfigNames.PowerQuerySdk.properties.defaultExtensionLocation,
configValue: mezExtensionPath,
}),
);
}
})(),
);
}
if (!ExtensionConfigurations.DefaultQueryFileLocation) {
tasks.push(
(async (): Promise<void> => {
const connectorQueryUrls: Uri[] = await vscWorkspace.findFiles("*.{m,pq}", null, 10);
for (const uri of connectorQueryUrls) {
const theFSPath: string = uri.fsPath;
if (theFSPath.indexOf(".m") > -1 || theFSPath.indexOf(".query.pq") > -1) {
const relativePath: string = vscWorkspace.asRelativePath(uri, false);
const primaryConnQueryLocation: string = path.join(
"${workspaceFolder}",
path.dirname(relativePath),
substitutedWorkspaceFolderBasenameIfNeeded(path.basename(relativePath)),
);
void ExtensionConfigurations.setDefaultQueryFileLocation(primaryConnQueryLocation);
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.set.config", {
configName:
ExtensionConstants.ConfigNames.PowerQuerySdk.properties
.defaultQueryFileLocation,
configValue: primaryConnQueryLocation,
}),
);
break;
}
}
})(),
);
}
return Promise.all(tasks);
}
private doGenerateOneProjectIntoOneFolderFromTemplates(inputFolder: string, projectName: string): string {
const folder: string = inputFolder.endsWith(projectName) ? inputFolder : path.join(inputFolder, projectName);
fs.mkdirSync(folder, { recursive: true });
const templateTargetFolder: string = path.resolve(this.vscExtCtx.extensionPath, "templates");
// settings.json
if (!fs.existsSync(path.join(folder, ".vscode"))) {
fs.mkdirSync(path.join(folder, ".vscode"));
}
fs.copyFileSync(
path.resolve(templateTargetFolder, "settings.json"),
path.resolve(folder, ".vscode", "settings.json"),
);
// copy pngs
["16", "20", "24", "32", "40", "48", "64", "80"].forEach((onePngSize: string) => {
fs.copyFileSync(
path.resolve(templateTargetFolder, `${templateFileBaseName}${onePngSize}.png`),
path.resolve(folder, `${projectName}${onePngSize}.png`),
);
});
// template files
[
[`${templateFileBaseName}.proj`, `${projectName}.proj`],
[`${templateFileBaseName}.pq`, `${projectName}.pq`],
[`${templateFileBaseName}.query.pq`, `${projectName}.query.pq`],
["resources.resx", "resources.resx"],
].forEach(([templateFileName, targetFileName]: string[]) => {
let content: string = fs.readFileSync(path.resolve(templateTargetFolder, templateFileName), {
encoding: "utf8",
});
// we can enhance this part by using a real-template language like handlebars mustache or pug
content = resolveTemplateSubstitutedValues(content, { ProjectName: projectName });
fs.writeFileSync(path.resolve(folder, targetFileName), content, { encoding: "utf8" });
});
return folder;
}
private async doCheckAndTryToUpdatePqTest(skipQueryDialog: boolean = false): Promise<string | undefined> {
try {
let pqTestLocation: string | undefined = ExtensionConfigurations.PQTestLocation;
const maybeNewVersion: string | undefined =
await this.pqSdkNugetPackageService.findNullableNewPqSdkVersion();
// we should not update to the latest unless the latest nuget doesn't exist on start
// users might just want to use the previous one purposely
// therefore do not try to update when, like, pqTestLocation.indexOf(maybeNewVersion) === -1
if (
!pqTestLocation ||
!this.pqTestService.pqTestReady ||
!this.pqSdkNugetPackageService.nugetPqSdkExistsSync(maybeNewVersion)
) {
const pqTestExecutableFullPath: string | undefined =
await this.pqSdkNugetPackageService.updatePqSdkFromNuget(maybeNewVersion);
if (!pqTestExecutableFullPath && !skipQueryDialog) {
const pqTestLocationUrls: Uri[] | undefined = await vscode.window.showOpenDialog({
openLabel: extensionI18n["PQSdk.lifecycle.warning.pqtest.required"],
canSelectFiles: true,
canSelectFolders: false,
canSelectMany: false,
filters: {
Executable: ["exe"],
},
});
if (pqTestLocationUrls?.[0]) {
pqTestLocation = pqTestLocationUrls[0].fsPath;
}
}
if (pqTestExecutableFullPath) {
// convert pqTestLocation of exe to its dirname
pqTestLocation = path.dirname(pqTestExecutableFullPath);
const histPqTestLocation: string | undefined = ExtensionConfigurations.PQTestLocation;
const newPqTestLocation: string = pqTestLocation;
await ExtensionConfigurations.setPQTestLocation(newPqTestLocation);
if (histPqTestLocation === newPqTestLocation) {
// update the pqtest location by force in case it equals the previous one
this.pqTestService.onPowerQueryTestLocationChanged();
}
}
}
return pqTestLocation;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.update.sdkTool.errorMessage", {
errorMessage,
}),
);
} finally {
this.checkAndTryToUpdatePqTestDeferred$ = undefined;
}
return undefined;
}
/**
* check and only update pqTest if needed like: not ready, not existing, the latest one doesn't exist either
* @param skipQueryDialog
* @private
*/
private checkAndTryToUpdatePqTest(skipQueryDialog: boolean = false): Promise<string | undefined> {
if (!this.checkAndTryToUpdatePqTestDeferred$) {
this.checkAndTryToUpdatePqTestDeferred$ = this.doCheckAndTryToUpdatePqTest(skipQueryDialog);
}
return this.checkAndTryToUpdatePqTestDeferred$;
}
/**
* eagerly update the pqTest as long as currently it is not configured to the latest
* @param maybeNextVersion
*/
public async manuallyUpdatePqTest(maybeNextVersion?: string): Promise<string | undefined> {
try {
if (!maybeNextVersion) {
maybeNextVersion = await this.pqSdkNugetPackageService.findNullableNewPqSdkVersion();
}
let pqTestLocation: string | undefined = ExtensionConfigurations.PQTestLocation;
// determine whether we should trigger to seize or not
if (
!this.pqSdkNugetPackageService.nugetPqSdkExistsSync(maybeNextVersion) ||
!pqTestLocation ||
// when manually update, we should eagerly update as long as current path is not of the latest version
// like,
// users might want to switch back to the latest some time after
// they temporarily switch back to the previous version
(maybeNextVersion && pqTestLocation.indexOf(maybeNextVersion) === -1)
) {
const pqTestExecutableFullPath: string | undefined =
await this.pqSdkNugetPackageService.updatePqSdkFromNuget(maybeNextVersion);
if (pqTestExecutableFullPath) {
pqTestLocation = path.dirname(pqTestExecutableFullPath);
const histPqTestLocation: string | undefined = ExtensionConfigurations.PQTestLocation;
const newPqTestLocation: string = pqTestLocation;
await ExtensionConfigurations.setPQTestLocation(newPqTestLocation);
if (histPqTestLocation === newPqTestLocation) {
// update the pqtest location by force in case it equals the previous one
this.pqTestService.onPowerQueryTestLocationChanged();
}
}
}
// check whether it got seized or not
if (this.pqSdkNugetPackageService.nugetPqSdkExistsSync(maybeNextVersion)) {
const pqTestExecutableFullPath: string =
this.pqSdkNugetPackageService.expectedPqSdkPath(maybeNextVersion);
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.pqtest.seized.from", {
pqTestExecutableFullPath,
}),
);
} else {
this.outputChannel.appendErrorLine(extensionI18n["PQSdk.lifecycle.warning.pqtest.seized.failed"]);
}
if (pqTestLocation) {
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.pqtest.set.to", {
pqTestLocation: ExtensionConfigurations.PQTestLocation,
}),
);
} else {
this.outputChannel.appendErrorLine(extensionI18n["PQSdk.lifecycle.warning.pqtest.set.failed"]);
}
return pqTestLocation;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.manuallyUpdate.sdkTool.errorMessage", {
errorMessage,
}),
);
}
return undefined;
}
public async generateOneNewProject(): Promise<void> {
const newProjName: string | undefined = await vscode.window.showInputBox({
title: extensionI18n["PQSdk.lifecycle.command.new.project.title"],
placeHolder: extensionI18n["PQSdk.lifecycle.command.new.project.placeHolder"],
validateInput(value: string): string | Thenable<string | undefined | null> | undefined | null {
if (!value) {
return extensionI18n["PQSdk.lifecycle.error.empty.project.name"];
} else if (!value.match(validateProjectNameRegExp)) {
return extensionI18n["PQSdk.lifecycle.error.invalid.project.name"];
}
return undefined;
},
});
if (newProjName) {
const firstWorkspaceFolder: WorkspaceFolder | undefined = getFirstWorkspaceFolder();
if (firstWorkspaceFolder) {
// we gotta workspace and let's generate files into the first workspace
const targetFolder: string = this.doGenerateOneProjectIntoOneFolderFromTemplates(
firstWorkspaceFolder.uri.fsPath,
newProjName,
);
if (targetFolder === firstWorkspaceFolder.uri.fsPath) {
// show the info message box telling users that
// extension files have been generated for the current folder
await vscode.commands.executeCommand(
"vscode.open",
vscode.Uri.file(path.join(targetFolder, `${newProjName}.pq`)),
);
void vscode.window.showInformationMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.new.project.created", {
newProjName,
targetFolder,
}),
);
} else {
// open the sub folder as the current workspace
await vscode.commands.executeCommand("vscode.openFolder", vscode.Uri.file(targetFolder));
}
//
} else {
// we need to open a folder and generate into it
const selectedFolders: Uri[] | undefined = await vscode.window.showOpenDialog({
canSelectMany: false,
openLabel: extensionI18n["PQSdk.lifecycle.command.select.workspace"],
canSelectFiles: false,
canSelectFolders: true,
});
if (selectedFolders?.[0].fsPath) {
const targetFolder: string = this.doGenerateOneProjectIntoOneFolderFromTemplates(
selectedFolders[0].fsPath,
newProjName,
);
await vscode.commands.executeCommand("vscode.openFolder", vscode.Uri.file(targetFolder));
}
}
}
}
public async deleteCredentialCommand(): Promise<void> {
await vscode.window.withProgress(
{
title: extensionI18n["PQSdk.lifecycle.command.delete.credentials.title"],
location: ProgressLocation.Window,
cancellable: true,
},
async (progress: Progress<{ increment?: number; message?: string }>) => {
progress.report({ increment: 0 });
this.outputChannel.show();
try {
const result: GenericResult = await this.pqTestService.DeleteCredential();
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.delete.credentials.result", {
result: prettifyJson(result),
}),
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.delete.credentials.errorMessage", {
errorMessage,
}),
);
}
progress.report({ increment: 100 });
},
);
}
public async displayExtensionInfoCommand(): Promise<void> {
await vscode.window.withProgress(
{
title: extensionI18n["PQSdk.lifecycle.command.display.extension.info.title"],
location: ProgressLocation.Window,
cancellable: true,
},
async (progress: Progress<{ increment?: number; message?: string }>) => {
progress.report({ increment: 0 });
this.outputChannel.show();
try {
const result: ExtensionInfo[] = await this.pqTestService.DisplayExtensionInfo();
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.display.extension.info.result", {
result: result
.map((info: ExtensionInfo) => info.Name ?? "")
.filter(Boolean)
.join(","),
}),
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
// in service host mode:
// we could ignore PqServiceHostServerNotReady for displayInfo while serviceHost not connected
// which would be triggerred by fs.watcher that I cannot control
// and service host would also ensure that there would be one display info triggerred
// everytime a new connection established.
if (
!(
ExtensionConfigurations.featureUseServiceHost &&
!(this.pqTestService as PqServiceHostClient).pqServiceHostConnected &&
error instanceof PqServiceHostServerNotReady
)
) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.display.extension.info.errorMessage", {
errorMessage,
}),
);
}
}
progress.report({ increment: 100 });
},
);
}
public async listCredentialCommand(): Promise<void> {
await vscode.window.withProgress(
{
title: extensionI18n["PQSdk.lifecycle.command.list.credentials.title"],
location: ProgressLocation.Window,
cancellable: true,
},
async (progress: Progress<{ increment?: number; message?: string }>) => {
progress.report({ increment: 0 });
this.outputChannel.show();
try {
const result: unknown[] = await this.pqTestService.ListCredentials();
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.list.credentials.result", {
result: prettifyJson(result),
}),
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.list.credentials.errorMessage", {
errorMessage,
}),
);
}
progress.report({ increment: 100 });
},
);
}
private async doPopulateOneSubstitutedValue(
templateStr: string,
title: string,
valueName: string,
options?: Partial<InputBoxOptions>,
): Promise<string> {
const valueKey: string | undefined = await vscode.window.showInputBox({
title,
placeHolder: valueName,
validateInput(value: string): string | Thenable<string | undefined | null> | undefined | null {
if (!value) {
return resolveI18nTemplate("PQSdk.lifecycle.error.invalid.empty.value", {
valueName,
});
}
return undefined;
},
...options,
});
if (valueKey) {
templateStr = templateStr.replace(valueName, valueKey);
}
return templateStr;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
private async populateCredentialTemplate(template: any): Promise<string> {
const theAuthenticationKind: AuthenticationKind = template.AuthenticationKind as AuthenticationKind;
let templateStr: string = JSON.stringify(template);
switch (theAuthenticationKind) {
case "Key":
// $$KEY$$
templateStr = await this.doPopulateOneSubstitutedValue(
templateStr,
extensionI18n["PQSdk.lifecycle.credential.key.label"],
"$$KEY$$",
);
break;
case "Aad":
case "OAuth":
// $$ACCESS_TOKEN$$
templateStr = await this.doPopulateOneSubstitutedValue(
templateStr,
extensionI18n["PQSdk.lifecycle.credential.accessToken.label"],
"$$ACCESS_TOKEN$$",
);
// $$REFRESH_TOKEN$$
templateStr = await this.doPopulateOneSubstitutedValue(
templateStr,
extensionI18n["PQSdk.lifecycle.credential.refreshToken.label"],
"$$REFRESH_TOKEN$$",
);
break;
case "UsernamePassword":
case "Windows":
// $$USERNAME$$
templateStr = await this.doPopulateOneSubstitutedValue(
templateStr,
extensionI18n["PQSdk.lifecycle.credential.username.label"],
"$$USERNAME$$",
);
// $$PASSWORD$$
templateStr = await this.doPopulateOneSubstitutedValue(
templateStr,
extensionI18n["PQSdk.lifecycle.credential.password.label"],
"$$PASSWORD$$",
{
password: true,
},
);
break;
case "Anonymous":
default:
break;
}
return templateStr;
}
public async generateAndSetCredentialCommand(): Promise<void> {
await vscode.window.withProgress(
{
title: extensionI18n["PQSdk.lifecycle.command.generate.credentials.title"],
location: ProgressLocation.Window,
cancellable: true,
},
async (progress: Progress<{ increment?: number; message?: string }>) => {
progress.report({ increment: 0 });
this.outputChannel.show();
try {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const credentialPayload: any = await this.pqTestService.GenerateCredentialTemplate();
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.generate.credentials.result", {
result: prettifyJson(credentialPayload),
}),
);
const credentialPayloadStr: string = await this.populateCredentialTemplate(credentialPayload);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const result: any = await this.pqTestService.SetCredential(credentialPayloadStr);
this.outputChannel.appendInfoLine(
resolveI18nTemplate("PQSdk.lifecycle.command.set.credentials.result", {
result: prettifyJson(result),
}),
);
void vscode.window.showInformationMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.set.credentials.info", {
authenticationKind: credentialPayload.AuthenticationKind,
}),
);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (error: any | string) {
const errorMessage: string = error instanceof Error ? error.message : error;
void vscode.window.showErrorMessage(
resolveI18nTemplate("PQSdk.lifecycle.command.set.credentials.errorMessage", {
errorMessage,
}),
);
}
progress.report({ increment: 100 });
},
);
}
/**
* Validate createAuthState and return an error message if any
* @param createAuthState
*/
public validateCreateAuthState(createAuthState: CreateAuthState): string | undefined {
if (
!createAuthState.DataSourceKind ||
!createAuthState.AuthenticationKind ||
!createAuthState.PathToQueryFile
) {
return extensionI18n["PQSdk.lifecycle.error.invalid.missing.dataSourceKindAndAuthKind"];
}
if (
createAuthState.AuthenticationKind.toLowerCase() === "usernamepassword" &&
(!createAuthState.$$PASSWORD$$ || !createAuthState.$$USERNAME$$)
) {
return resolveI18nTemplate("PQSdk.lifecycle.error.invalid.missing.userNameAndPw", {
authenticationKind: createAuthState.AuthenticationKind,
});
}
if (createAuthState.AuthenticationKind.toLowerCase() === "key" && !createAuthState.$$KEY$$) {
return resolveI18nTemplate("PQSdk.lifecycle.error.invalid.missing.key", {
authenticationKind: createAuthState.AuthenticationKind,
});
}
return undefined;
}