-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathindex.ts
657 lines (607 loc) · 19.1 KB
/
index.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
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
import type { ConnectEventMap } from '@mongodb-js/devtools-connect';
import path from 'path';
export interface ApiEventArguments {
pipeline?: any[];
query?: object;
options?: object;
filter?: object;
}
export interface ApiEventWithArguments {
method: string;
class?: string;
db?: string;
coll?: string;
uri?: string;
arguments?: ApiEventArguments;
}
export interface ApiEvent {
method: string;
class: string;
deprecated: boolean;
isAsync: boolean;
callDepth: number;
}
export interface ApiWarning {
method: string;
class: string;
message: string;
}
export interface UseEvent {
db: string;
}
export interface EvaluateInputEvent {
input: string;
}
export interface ShowEvent {
method: string;
}
export interface ConnectEvent {
is_atlas?: boolean;
resolved_hostname?: string;
is_localhost?: boolean;
is_do_url?: boolean;
server_version?: string;
server_os?: string;
server_arch?: string;
is_enterprise?: boolean;
auth_type?: string;
is_data_federation?: boolean;
is_stream?: boolean;
dl_version?: string;
atlas_version?: string;
is_genuine?: boolean;
non_genuine_server_name?: string;
api_version?: string;
api_strict?: boolean;
api_deprecation_errors?: boolean;
node_version?: string;
uri?: string;
is_local_atlas?: boolean;
is_atlas_url?: boolean;
}
export interface ScriptLoadFileEvent {
nested: boolean;
filename: string;
}
export interface StartLoadingCliScriptsEvent {
usesShellOption: boolean;
}
export interface GlobalConfigFileLoadEvent {
filename: string;
found: boolean;
}
export interface CryptLibrarySkipEvent {
cryptSharedLibPath: string;
reason: string;
details?: any;
}
export interface CryptLibraryFoundEvent {
cryptSharedLibPath: string;
expectedVersion: { versionStr: string };
}
export interface MongocryptdLogEvent {
pid: number;
logEntry: any;
}
export interface StartMongoshReplEvent {
version: string;
}
export interface SnippetsLoadedEvent {
installdir: string;
}
export interface SnippetsNpmLookupEvent {
existingVersion: string;
}
export interface SnippetsNpmDownloadActiveEvent {
npmMetadataURL: string;
npmTarballURL: string;
}
export interface SnippetsNpmDownloadFailedEvent {
npmMetadataURL: string;
npmTarballURL?: string;
status?: number;
}
export interface SnippetsFetchIndexEvent {
refreshMode: string;
}
export interface SnippetsFetchIndexErrorEvent {
action: string;
url?: string;
status?: number;
error?: string;
}
export interface SnippetsErrorEvent {
error: string;
}
export interface SnippetsRunNpmEvent {
args: string[];
}
export interface SnippetsLoadSnippetEvent {
source: string;
name: string;
}
export interface SnippetsCommandEvent {
args: string[];
}
export interface SnippetsTransformErrorEvent {
error: string;
addition: string;
name: string;
}
export interface EditorRunEditCommandEvent {
tmpDoc: string;
editor: string;
code: string;
}
export interface EditorReadVscodeExtensionsDoneEvent {
vscodeDir: string;
hasMongodbExtension: boolean;
}
export interface EditorReadVscodeExtensionsFailedEvent {
vscodeDir: string;
error: Error;
}
export interface FetchingUpdateMetadataEvent {
updateURL: string;
localFilePath: string;
}
export interface FetchingUpdateMetadataCompleteEvent {
latest: string | null;
}
export interface SessionStartedEvent {
isInteractive: boolean;
jsContext: string;
timings: {
[category: string]: number;
};
}
export interface WriteCustomLogEvent {
method: 'info' | 'error' | 'warn' | 'fatal' | 'debug';
message: string;
attr?: unknown;
level?: 1 | 2 | 3 | 4 | 5;
}
export interface MongoshBusEventsMap extends ConnectEventMap {
/**
* Signals a connection to a MongoDB instance has been established
* or the used database changed.
*/
'mongosh:connect': (ev: ConnectEvent) => void;
/**
* Signals when a session is started, that will enable the REPL on interactive
* sessions or close on non-interactive sessions.
*/
'mongosh:start-session': (ev: SessionStartedEvent) => void;
/**
* Signals that the shell is started by a new user.
*/
'mongosh:new-user': (identity: {
userId: string;
anonymousId: string;
}) => void;
/**
* Signals a change of the user telemetry settings.
*/
'mongosh:update-user': (identity: {
userId: string;
anonymousId?: string;
}) => void;
/**
* Signals an error that should be logged or potentially tracked by analytics.
*/
'mongosh:error': (error: Error, component: string) => void;
/**
* Signals the start of the evaluation of user code inside Shellevaluator.
*/
'mongosh:evaluate-input': (ev: EvaluateInputEvent) => void;
/**
* Signals the initiation of the evaluation of user code in AsyncRepl (final step of the evaluation).
*/
'mongosh:evaluate-started': () => void;
/**
* Signals the completion of the evaluation of user code in AsyncRepl (final step of the evaluation)
* regardless of success, error, or being interrupted.
*/
'mongosh:evaluate-finished': () => void;
/**
* Signals a user used the `use` command.
*/
'mongosh:use': (ev: UseEvent) => void;
/**
* Signals a user used the `Mongo.getDB` method.
*/
'mongosh:getDB': (ev: UseEvent) => void;
/**
* Signals a user used the `show` command.
*/
'mongosh:show': (ev: ShowEvent) => void;
/**
* Signals the global context for the shell evaluation has been initialized.
*/
'mongosh:setCtx': (ev: ApiEventWithArguments) => void;
/**
* Signals usage of a shell API method. This includes arguments and is not suitable for telemetry.
*/
'mongosh:api-call-with-arguments': (ev: ApiEventWithArguments) => void;
/**
* Signals usage of a shell API method as an API entry point, suitable for telemetry.
*/
'mongosh:api-call': (ev: ApiEvent) => void;
/**
* Signals an error for an operation that we can silently ignore but still warn about.
*/
'mongosh:warn': (ev: ApiWarning) => void;
/**
* Signals the use of the `load` feature to load a file for evaluation.
*/
'mongosh:api-load-file': (ev: ScriptLoadFileEvent) => void;
/**
* Signals the start of loading external files upon startup.
*/
'mongosh:start-loading-cli-scripts': (
event: StartLoadingCliScriptsEvent
) => void;
/**
* Signals to start writing log to the disc after MongoLogManager is initialized.
*/
'mongosh:write-custom-log': (ev: WriteCustomLogEvent) => void;
/**
* Signals the successful startup of the mongosh REPL after initial files and configuration
* have been loaded.
*/
'mongosh:start-mongosh-repl': (ev: StartMongoshReplEvent) => void;
/**
* Signals the start of loading a mongosh configuration file.
*/
'mongosh:mongoshrc-load': () => void;
/**
* Signals the start of loading a global mongosh configuration file.
*/
'mongosh:globalconfig-load': (ev: GlobalConfigFileLoadEvent) => void;
/**
* Signals the detection of a legacy `mongo` configuration file or a misnamed mongosh configuration file.
*/
'mongosh:mongoshrc-mongorc-warn': () => void;
/**
* Signals the start of the evaluation of a script provided by the --eval CLI option.
*/
'mongosh:eval-cli-script': () => void;
/**
* Signals the completion of asynchronous user code execution due to the internal interrupt exception
* caused by CTRL-C.
* Not fired for interrupts of _synchronous_ code.
*/
'mongosh:eval-interrupted': () => void;
/**
* Signals that a potential crypt library search path was skipped.
*/
'mongosh:crypt-library-load-skip': (ev: CryptLibrarySkipEvent) => void;
/**
* Signals that a potential crypt library search path was accepted.
*/
'mongosh:crypt-library-load-found': (ev: CryptLibraryFoundEvent) => void;
/**
* Signals that the CLI REPL's `close` method has completed.
* _ONLY AVAILABLE FOR TESTING._
*/
'mongosh:closed': () => void;
/**
* Signals the completion of executing user code in MongoshRepl. Not fired for nested `load` evaluations.
*
* Note: When the evaluation of user code returns an error, the `mongosh:error` event is fired _after_ this event.
*
* _ONLY AVAILABLE FOR TESTING._
*/
'mongosh:eval-complete': () => void;
/**
* Signals the completion of the autocomplete suggestion providers.
* _ONLY AVAILABLE FOR TESTING._
*/
'mongosh:autocompletion-complete': () => void;
/**
* Signals the completion of the asynchronous interrupt handler in MongoshRepl. Not fired for interrupts of _synchronous_ code.
* _ONLY AVAILABLE FOR TESTING._
*/
'mongosh:interrupt-complete': () => void;
/** Signals that the snippets plugin has been loaded. */
'mongosh-snippets:loaded': (ev: SnippetsLoadedEvent) => void;
/** Signals that an event has happened while looking up the path to npm. */
'mongosh-snippets:npm-lookup': (ev: SnippetsNpmLookupEvent) => void;
/** Signals that attempting to download npm has been declined by the user. */
'mongosh-snippets:npm-lookup-stopped': () => void;
/** Signals that attempting to download npm has failed. */
'mongosh-snippets:npm-download-failed': (
ev: SnippetsNpmDownloadFailedEvent
) => void;
/** Signals that downloading the npm tarball has started. */
'mongosh-snippets:npm-download-active': (
ev: SnippetsNpmDownloadActiveEvent
) => void;
/** Signals that fetching the index file from the network has started. */
'mongosh-snippets:fetch-index': (ev: SnippetsFetchIndexEvent) => void;
/** Signals that, when fetching the index file, it turned out that the cache is currently invalid (not outdated). */
'mongosh-snippets:fetch-cache-invalid': () => void;
/** Signals that fetching the index file from the network has failed. */
'mongosh-snippets:fetch-index-error': (
ev: SnippetsFetchIndexErrorEvent
) => void;
/** Signals that fetching the index file from the network has completed. */
'mongosh-snippets:fetch-index-done': () => void;
/** Signals that an action on the internal package.json file has failed. */
'mongosh-snippets:package-json-edit-error': (ev: SnippetsErrorEvent) => void;
/** Signals that an npm child process has been spawned. */
'mongosh-snippets:spawn-child': (ev: SnippetsRunNpmEvent) => void;
/** Signals that a snippet has been loaded into the shell. */
'mongosh-snippets:load-snippet': (ev: SnippetsLoadSnippetEvent) => void;
/** Signals that a snippet shell command has started executing. */
'mongosh-snippets:snippet-command': (ev: SnippetsCommandEvent) => void;
/** Signals that a snippet has modified an error message. */
'mongosh-snippets:transform-error': (ev: SnippetsTransformErrorEvent) => void;
/** Signals that the service provider is opening a new connection because options have changed. */
'mongosh-sp:reset-connection-options': () => void;
/** Signals that open external editor command was called. */
'mongosh-editor:run-edit-command': (ev: EditorRunEditCommandEvent) => void;
/** Signals that reading vscode extensions from disc succeeded. */
'mongosh-editor:read-vscode-extensions-done': (
ev: EditorReadVscodeExtensionsDoneEvent
) => void;
/** Signals that reading vscode extensions from disc failed. */
'mongosh-editor:read-vscode-extensions-failed': (
ev: EditorReadVscodeExtensionsFailedEvent
) => void;
/** Signals that fetching update metadata has started. */
'mongosh:fetching-update-metadata': (ev: FetchingUpdateMetadataEvent) => void;
/** Signals that fetching update metadata has completed. */
'mongosh:fetching-update-metadata-complete': (
ev: FetchingUpdateMetadataCompleteEvent
) => void;
/** Signals that logging has been initialized. */
'mongosh:log-initialized': () => void;
}
export interface MongoshBus {
// TypeScript uses something like this itself for its EventTarget definitions.
on<K extends keyof MongoshBusEventsMap>(
event: K,
listener: MongoshBusEventsMap[K]
): this;
once<K extends keyof MongoshBusEventsMap>(
event: K,
listener: MongoshBusEventsMap[K]
): this;
emit<K extends keyof MongoshBusEventsMap>(
event: K,
...args: MongoshBusEventsMap[K] extends (...args: infer P) => any
? P
: never
): unknown;
}
export class ShellUserConfig {
displayBatchSize = 20;
maxTimeMS: number | null = null;
enableTelemetry = false;
editor: string | null = null;
}
export class ShellUserConfigValidator {
// eslint-disable-next-line @typescript-eslint/require-await
static async validate<K extends keyof ShellUserConfig>(
key: K,
value: ShellUserConfig[K]
): Promise<string | null> {
switch (key) {
case 'displayBatchSize':
if (typeof value !== 'number' || value <= 0) {
return `${key} must be a positive integer`;
}
return null;
case 'maxTimeMS':
if (value !== null && (typeof value !== 'number' || value <= 0)) {
return `${key} must be null or a positive integer`;
}
return null;
case 'enableTelemetry':
if (typeof value !== 'boolean') {
return `${key} must be a boolean`;
}
return null;
case 'editor':
if (typeof value !== 'string' && value !== null) {
return `${key} must be a string or null`;
}
return null;
default:
return `${key} is not a known config option`;
}
}
}
export class SnippetShellUserConfig extends ShellUserConfig {
snippetIndexSourceURLs =
'https://compass.mongodb.com/mongosh/snippets-index.bson.br';
snippetRegistryURL = 'https://registry.npmjs.org';
snippetAutoload = true;
}
export class SnippetShellUserConfigValidator extends ShellUserConfigValidator {
static async validate<K extends keyof SnippetShellUserConfig>(
key: K,
value: SnippetShellUserConfig[K]
): Promise<string | null> {
switch (key) {
case 'snippetIndexSourceURLs':
if (
typeof value !== 'string' ||
value.split(';').some((url) => url && !isValidUrl(url))
) {
return `${key} must be a ;-separated list of valid URLs`;
}
return null;
case 'snippetRegistryURL':
if (typeof value !== 'string' || !isValidUrl(value)) {
return `${key} must be a valid URL`;
}
return null;
case 'snippetAutoload':
if (typeof value !== 'boolean') {
return `${key} must be a boolean`;
}
return null;
default:
return super.validate(key as keyof ShellUserConfig, value as any);
}
}
}
export class CliUserConfig extends SnippetShellUserConfig {
userId = '';
telemetryAnonymousId = '';
disableGreetingMessage = false;
forceDisableTelemetry = false;
inspectCompact: number | boolean = 3;
inspectDepth = 6;
historyLength = 1000;
showStackTraces = false;
redactHistory: 'keep' | 'remove' | 'remove-redact' = 'remove';
oidcRedirectURI: undefined | string = undefined;
oidcTrustedEndpoints: undefined | string[] = undefined;
browser: undefined | false | string = undefined;
updateURL = 'https://downloads.mongodb.com/compass/mongosh.json';
disableLogging = false;
logLocation: string | undefined = undefined;
}
export class CliUserConfigValidator extends SnippetShellUserConfigValidator {
static async validate<K extends keyof CliUserConfig>(
key: K,
value: CliUserConfig[K]
): Promise<string | null> {
switch (key) {
case 'userId':
case 'telemetryAnonymousId':
case 'disableGreetingMessage':
return null; // Not modifiable by the user anyway.
case 'inspectCompact':
if (
typeof value !== 'boolean' &&
(typeof value !== 'number' || value < 0)
) {
return `${key} must be a boolean or a positive integer`;
}
return null;
case 'inspectDepth':
case 'historyLength':
if (typeof value !== 'number' || value < 0) {
return `${key} must be a positive integer`;
}
return null;
case 'disableLogging':
case 'forceDisableTelemetry':
case 'showStackTraces':
if (typeof value !== 'boolean') {
return `${key} must be a boolean`;
}
return null;
case 'redactHistory':
if (
value !== 'keep' &&
value !== 'remove' &&
value !== 'remove-redact'
) {
return `${key} must be one of 'keep', 'remove', or 'remove-redact'`;
}
return null;
case 'oidcRedirectURI':
if (
value !== undefined &&
(typeof value !== 'string' || !isValidUrl(value))
) {
return `${key} must be undefined or a valid URL`;
}
return null;
case 'oidcTrustedEndpoints':
if (
value !== undefined &&
(!Array.isArray(value) || value.some((v) => typeof v !== 'string'))
) {
return `${key} must be undefined or an array of hostnames`;
}
return null;
case 'browser':
if (
value !== undefined &&
value !== false &&
typeof value !== 'string'
) {
return `${key} must be undefined, false, or a command string`;
}
return null;
case 'updateURL':
if (typeof value !== 'string' || (value.trim() && !isValidUrl(value))) {
return `${key} must be a valid URL or empty`;
}
return null;
case 'logLocation':
if (
value !== undefined &&
(typeof value !== 'string' || !path.isAbsolute(value))
) {
return `${key} must be a valid absolute path or empty`;
}
return null;
default:
return super.validate(
key as keyof SnippetShellUserConfig,
value as any
);
}
}
}
export interface ConfigProvider<T> {
getConfig<K extends keyof T>(
key: K
): Promise<T[K] | undefined> | T[K] | undefined;
setConfig<K extends keyof T>(
key: K,
value: T[K]
): Promise<'success' | 'ignored'> | 'success' | 'ignored';
resetConfig<K extends keyof T>(
key: K
): Promise<'success' | 'ignored'> | 'success' | 'ignored';
validateConfig<K extends keyof T>(
key: K,
value: T[K]
): Promise<string | null>;
listConfigOptions(): string[] | undefined | Promise<string[]>;
}
function isValidUrl(url: string): boolean {
/* eslint-disable @typescript-eslint/ban-ts-comment */
// Need ts-ignore because we're not building this exclusively for environments
// in which URL is available.
// @ts-ignore
if (typeof URL === 'function') {
try {
// @ts-ignore
new URL(url);
return true;
} catch {
return false;
}
}
/* eslint-enable @typescript-eslint/ban-ts-comment */
return true; // Currently no overlap between URL-less environments and environments with config options.
}
export const TimingCategories = {
REPLInstantiation: 'REPLInstantiation',
UserConfigLoading: 'UserConfigLoading',
DriverSetup: 'DriverSetup',
Logging: 'Logging',
SnippetLoading: 'SnippetLoading',
Snapshot: 'Snapshot',
ResourceFileLoading: 'ResourceFileLoading',
AsyncRewrite: 'AsyncRewrite',
Eval: 'Eval',
EvalFile: 'EvalFile',
Telemetry: 'Telemetry',
Main: 'Main',
} as const;
export type TimingCategory =
(typeof TimingCategories)[keyof typeof TimingCategories];
export type TimingInterface = {
markTime: (category: TimingCategory, label: string) => void;
getTimingData: () => [string, string, number][];
};