-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathquestions.js
870 lines (805 loc) · 26.1 KB
/
questions.js
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
const chalk = require("chalk");
const Client = require("./client");
const { localConfig, globalConfig } = require('./config');
const { projectsList } = require('./commands/projects');
const { teamsList } = require('./commands/teams');
const { functionsListRuntimes, functionsListSpecifications, functionsList } = require('./commands/functions');
const { accountListMfaFactors } = require("./commands/account");
const { sdkForConsole } = require("./sdks");
const { validateRequired } = require("./validations");
const { paginate } = require('./paginate');
const { isPortTaken } = require('./utils');
const { databasesList } = require('./commands/databases');
const { checkDeployConditions } = require('./utils');
const JSONbig = require("json-bigint")({ storeAsString: false });
const whenOverride = (answers) => answers.override === undefined ? true : answers.override;
const getIgnores = (runtime) => {
const languge = runtime.split("-").slice(0, -1).join("-");
switch (languge) {
case 'cpp':
return ['build', 'CMakeFiles', 'CMakeCaches.txt'];
case 'dart':
return ['.packages', '.dart_tool'];
case 'deno':
return [];
case 'dotnet':
return ['bin', 'obj', '.nuget'];
case 'java':
case 'kotlin':
return ['build'];
case 'node':
case 'bun':
return ['node_modules', '.npm'];
case 'php':
return ['vendor'];
case 'python':
case 'python-ml':
return ['__pypackages__'];
case 'ruby':
return ['vendor'];
case 'rust':
return ['target', 'debug', '*.rs.bk', '*.pdb'];
case 'swift':
return ['.build', '.swiftpm'];
}
return [];
};
const getEntrypoint = (runtime) => {
const languge = runtime.split("-").slice(0, -1).join("-");
switch (languge) {
case 'dart':
return 'lib/main.dart';
case 'deno':
return 'src/main.ts';
case 'node':
return 'src/main.js';
case 'bun':
return 'src/main.ts';
case 'php':
return 'src/index.php';
case 'python':
case 'python-ml':
return 'src/main.py';
case 'ruby':
return 'lib/main.rb';
case 'rust':
return 'main.rs';
case 'swift':
return 'Sources/index.swift';
case 'cpp':
return 'src/main.cc';
case 'dotnet':
return 'src/Index.cs';
case 'java':
return 'src/Main.java';
case 'kotlin':
return 'src/Main.kt';
case 'go':
return 'main.go';
}
return undefined;
};
const getInstallCommand = (runtime) => {
const languge = runtime.split("-").slice(0, -1).join("-");
switch (languge) {
case 'dart':
return 'dart pub get';
case 'deno':
return "deno cache src/main.ts";
case 'node':
return 'npm install';
case 'bun':
return 'bun install';
case 'php':
return 'composer install';
case 'python':
case 'python-ml':
return 'pip install -r requirements.txt';
case 'ruby':
return 'bundle install';
case 'rust':
return 'cargo install';
case 'dotnet':
return 'dotnet restore';
case 'swift':
case 'java':
case 'kotlin':
case 'cpp':
return '';
}
return undefined;
};
const questionsInitProject = [
{
type: "confirm",
name: "override",
message:
`An Appwrite project ( ${localConfig.getProject()['projectId']} ) is already associated with the current directory. Would you like to override`,
when() {
return Object.keys(localConfig.getProject()).length !== 0;
}
},
{
type: "list",
name: "start",
when: whenOverride,
message: "How would you like to start?",
choices: [
{
name: "Create new project",
value: "new"
},
{
name: "Link directory to an existing project",
value: "existing"
}
]
},
{
type: "search-list",
name: "organization",
message: "Choose your organization",
choices: async () => {
let client = await sdkForConsole(true);
const { teams } = await paginate(teamsList, { parseOutput: false, sdk: client }, 100, 'teams');
let choices = teams.map((team, idx) => {
return {
name: `${team.name} (${team['$id']})`,
value: team['$id']
}
})
if (choices.length == 0) {
throw new Error(`No organizations found. Please create a new organization at ${globalConfig.getEndpoint().replace('/v1', '/console/onboarding')}`)
}
return choices;
},
when: whenOverride
},
{
type: "input",
name: "project",
message: "What would you like to name your project?",
default: "My Awesome Project",
when: (answer) => answer.start !== 'existing'
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your project?",
default: "unique()",
when: (answer) => answer.start !== 'existing'
},
{
type: "search-list",
name: "project",
message: "Choose your Appwrite project.",
choices: async (answers) => {
const queries = [
JSON.stringify({ method: 'equal', attribute: 'teamId', values: [answers.organization] }),
JSON.stringify({ method: 'orderDesc', attribute: '$id' })
]
const { projects } = await paginate(projectsList, { parseOutput: false }, 100, 'projects', queries);
let choices = projects.map((project) => {
return {
name: `${project.name} (${project['$id']})`,
value: project['$id']
}
})
if (choices.length == 0) {
throw new Error("No projects found. Please create a new project.")
}
return choices;
},
when: (answer) => answer.start === 'existing'
}
];
const questionsInitProjectAutopull = [
{
type: "confirm",
name: "autopull",
message:
`Would you like to pull all resources from project you just linked?`
},
];
const questionsPullResources = [
{
type: "list",
name: "resource",
message: "Which resources would you like to pull?",
choices: [
{ name: `Settings ${chalk.blackBright(`(Project)`)}`, value: 'settings' },
{ name: `Functions ${chalk.blackBright(`(Deployment)`)}`, value: 'functions' },
{ name: `Collections ${chalk.blackBright(`(Databases)`)}`, value: 'collections' },
{ name: `Buckets ${chalk.blackBright(`(Storage)`)}`, value: 'buckets' },
{ name: `Teams ${chalk.blackBright(`(Auth)`)}`, value: 'teams' },
{ name: `Topics ${chalk.blackBright(`(Messaging)`)}`, value: 'messages' }
]
}
]
const questionsPullFunctions = [
{
type: "checkbox",
name: "functions",
message: "Which functions would you like to pull?",
validate: (value) => validateRequired('function', value),
choices: async () => {
const { functions } = await paginate(functionsList, { parseOutput: false }, 100, 'functions');
if (functions.length === 0) {
throw "We couldn't find any functions in your Appwrite project";
}
return functions.map(func => {
return {
name: `${func.name} (${func.$id})`,
value: { ...func }
}
});
}
}
];
const questionsPullFunctionsCode = [
{
type: "confirm",
name: "override",
message: "Do you want to pull source code of the latest deployment?"
},
];
const questionsCreateFunction = [
{
type: "input",
name: "name",
message: "What would you like to name your function?",
default: "My Awesome Function"
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your function?",
default: "unique()"
},
{
type: "list",
name: "runtime",
message: "What runtime would you like to use?",
choices: async () => {
let response = await functionsListRuntimes({
parseOutput: false
})
let runtimes = response["runtimes"]
let choices = runtimes.map((runtime, idx) => {
return {
name: `${runtime.name} (${runtime['$id']})`,
value: {
id: runtime['$id'],
name: runtime['$id'].split('-')[0],
entrypoint: getEntrypoint(runtime['$id']),
ignore: getIgnores(runtime['$id']),
commands: getInstallCommand(runtime['$id'])
},
}
})
return choices;
},
},
{
type: "list",
name: "specification",
message: "What specification would you like to use?",
choices: async () => {
let response = await functionsListSpecifications({
parseOutput: false
})
let specifications = response["specifications"]
let choices = specifications.map((spec, idx) => {
return {
name: `${spec.cpus} CPU, ${spec.memory}MB RAM`,
value: spec.slug,
disabled: spec.enabled === false ? 'Upgrade to use' : false
}
})
return choices;
},
}
];
const questionsCreateFunctionSelectTemplate = (templates) => {
return [
{
type: "search-list",
name: "template",
message: "What template would you like to use?",
choices: templates.map((template) => {
const name = `${template[0].toUpperCase()}${template.split('').slice(1).join('')}`.replace(/[-_]/g, ' ');
return { value: template, name }
})
}
];
};
const questionsCreateBucket = [
{
type: "input",
name: "bucket",
message: "What would you like to name your bucket?",
default: "My Awesome Bucket"
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your bucket?",
default: "unique()"
},
{
type: "list",
name: "fileSecurity",
message: "Enable File-Security configuring permissions for individual file",
choices: ["No", "Yes"]
}
];
const questionsCreateTeam = [
{
type: "input",
name: "bucket",
message: "What would you like to name your team?",
default: "My Awesome Team"
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your team?",
default: "unique()"
}
];
const questionsCreateCollection = [
{
type: "list",
name: "method",
message: "What database would you like to use for your collection",
choices: ["New", "Existing"],
when: async () => {
return localConfig.getDatabases().length !== 0;
}
},
{
type: "search-list",
name: "database",
message: "Choose the collection database",
choices: async () => {
const databases = localConfig.getDatabases();
let choices = databases.map((database, idx) => {
return {
name: `${database.name} (${database.$id})`,
value: database.$id
}
})
if (choices.length === 0) {
throw new Error("No databases found. Please create one in project console.")
}
return choices;
},
when: (answers) => (answers.method ?? '').toLowerCase() === 'existing'
},
{
type: "input",
name: "databaseName",
message: "What would you like to name your database?",
default: "My Awesome Database",
when: (answers) => (answers.method ?? '').toLowerCase() !== 'existing'
},
{
type: "input",
name: "databaseId",
message: "What ID would you like to have for your database?",
default: "unique()",
when: (answers) => (answers.method ?? '').toLowerCase() !== 'existing'
},
{
type: "input",
name: "collection",
message: "What would you like to name your collection?",
default: "My Awesome Collection"
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your collection?",
default: "unique()"
},
{
type: "list",
name: "documentSecurity",
message: "Enable Document-Security for configuring permissions for individual documents",
choices: ["No", "Yes"]
}
];
const questionsCreateMessagingTopic = [
{
type: "input",
name: "topic",
message: "What would you like to name your messaging topic?",
default: "My Awesome Topic"
},
{
type: "input",
name: "id",
message: "What ID would you like to have for your messaging topic?",
default: "unique()"
}
];
const questionsPullCollection = [
{
type: "checkbox",
name: "databases",
message: "From which database would you like to pull collections?",
validate: (value) => validateRequired('collection', value),
choices: async () => {
let response = await databasesList({
parseOutput: false
})
let databases = response["databases"]
if (databases.length <= 0) {
throw new Error("No databases found. Please create one in project console.")
}
let choices = databases.map((database, idx) => {
return {
name: `${database.name} (${database.$id})`,
value: database.$id
}
})
return choices;
}
}
];
const questionsLogin = [
{
type: "list",
name: "method",
message: "What you like to do?",
choices: [
{ name: 'Login to an account', value: 'login' },
{ name: 'Switch to an account', value: 'select' }
],
when: () => globalConfig.getSessions().length >= 2
},
{
type: "input",
name: "email",
message: "Enter your email",
validate(value) {
if (!value) {
return "Please enter your email";
}
return true;
},
when: (answers) => answers.method !== 'select'
},
{
type: "password",
name: "password",
message: "Enter your password",
mask: "*",
validate(value) {
if (!value) {
return "Please enter your password";
}
return true;
},
when: (answers) => answers.method !== 'select'
},
{
type: "search-list",
name: "accountId",
message: "Select an account to use",
choices() {
const sessions = globalConfig.getSessions();
const current = globalConfig.getCurrentSession();
const data = [];
const longestEmail = sessions.reduce((prev, current) => (prev && (prev.email ?? '').length > (current.email ?? '').length) ? prev : current).email.length;
sessions.forEach((session) => {
if (session.email) {
data.push({
current: current === session.id,
value: session.id,
name: `${session.email.padEnd(longestEmail)} ${current === session.id ? chalk.green.bold('current') : ' '.repeat(6)} ${session.endpoint}`,
});
}
})
return data.sort((a, b) => Number(b.current) - Number(a.current))
},
when: (answers) => answers.method === 'select'
},
];
const questionGetEndpoint = [
{
type: "input",
name: "endpoint",
message: "Enter the endpoint of your Appwrite server",
default: "http://localhost/v1",
async validate(value) {
if (!value) {
return "Please enter a valid endpoint.";
}
let client = new Client().setEndpoint(value);
try {
let response = await client.call('get', '/health/version');
if (response.version) {
return true;
} else {
throw new Error();
}
} catch (error) {
return "Invalid endpoint or your Appwrite server is not running as expected.";
}
}
}
];
const questionsLogout = [
{
type: "checkbox",
name: "accounts",
message: "Select accounts to logout from",
validate: (value) => validateRequired('account', value),
choices() {
const sessions = globalConfig.getSessions();
const current = globalConfig.getCurrentSession();
const data = [];
const longestEmail = sessions.reduce((prev, current) => (prev && (prev.email ?? '').length > (current.email ?? '').length) ? prev : current).email.length;
sessions.forEach((session) => {
if (session.email) {
data.push({
current: current === session.id,
value: session.id,
name: `${session.email.padEnd(longestEmail)} ${current === session.id ? chalk.green.bold('current') : ' '.repeat(6)} ${session.endpoint}`,
});
}
})
return data.sort((a, b) => Number(b.current) - Number(a.current))
}
}
];
const questionsPushResources = [
{
type: "list",
name: "resource",
message: "Which resources would you like to push?",
choices: [
{ name: `Settings ${chalk.blackBright(`(Project)`)}`, value: 'settings' },
{ name: `Functions ${chalk.blackBright(`(Deployment)`)}`, value: 'functions' },
{ name: `Collections ${chalk.blackBright(`(Databases)`)}`, value: 'collections' },
{ name: `Buckets ${chalk.blackBright(`(Storage)`)}`, value: 'buckets' },
{ name: `Teams ${chalk.blackBright(`(Auth)`)}`, value: 'teams' },
{ name: `Topics ${chalk.blackBright(`(Messaging)`)}`, value: 'messages' }
]
}
];
const questionsInitResources = [
{
type: "list",
name: "resource",
message: "Which resource would you create?",
choices: [
{ name: 'Function', value: 'function' },
{ name: 'Collection', value: 'collection' },
{ name: 'Bucket', value: 'bucket' },
{ name: 'Team', value: 'team' },
{ name: 'Topic', value: 'message' }
]
}
];
const questionsPushFunctions = [
{
type: "checkbox",
name: "functions",
message: "Which functions would you like to push?",
validate: (value) => validateRequired('function', value),
when: () => localConfig.getFunctions().length > 0,
choices: () => {
let functions = localConfig.getFunctions();
checkDeployConditions(localConfig)
let choices = functions.map((func, idx) => {
return {
name: `${func.name} (${func.$id})`,
value: func.$id
}
})
return choices;
}
},
]
const questionsPushCollections = [
{
type: "checkbox",
name: "collections",
message: "Which collections would you like to push?",
validate: (value) => validateRequired('collection', value),
when: () => localConfig.getCollections().length > 0,
choices: () => {
let collections = localConfig.getCollections();
checkDeployConditions(localConfig)
return collections.map(collection => {
return {
name: `${collection.name} (${collection['databaseId']} - ${collection['$id']})`,
value: `${collection['databaseId']}|${collection['$id']}`
}
});
}
}
];
const questionPushChanges = [
{
type: "input",
name: "changes",
message: `Are you sure you want to apply these changes? (YES/NO)`
}
];
const questionPushChangesConfirmation = [
{
type: "input",
name: "changes",
message: `Please type 'YES' or 'NO':`
}
];
const questionsPushBuckets = [
{
type: "checkbox",
name: "buckets",
message: "Which buckets would you like to push?",
validate: (value) => validateRequired('bucket', value),
when: () => localConfig.getBuckets().length > 0,
choices: () => {
let buckets = localConfig.getBuckets();
checkDeployConditions(localConfig)
return buckets.map(bucket => {
return {
name: `${bucket.name} (${bucket['$id']})`,
value: bucket.$id
}
});
}
}
]
const questionsPushMessagingTopics = [
{
type: "checkbox",
name: "topics",
message: "Which messaging topic would you like to push?",
validate: (value) => validateRequired('topics', value),
when: () => localConfig.getMessagingTopics().length > 0,
choices: () => {
let topics = localConfig.getMessagingTopics();
return topics.map(topic => {
return {
name: `${topic.name} (${topic['$id']})`,
value: topic.$id
}
});
}
}
]
const questionsGetEntrypoint = [
{
type: "input",
name: "entrypoint",
message: "Enter the entrypoint",
default: null,
validate(value) {
if (!value) {
return "Please enter your entrypoint";
}
return true;
}
},
]
const questionsPushTeams = [
{
type: "checkbox",
name: "teams",
message: "Which teams would you like to push?",
validate: (value) => validateRequired('team', value),
when: () => localConfig.getTeams().length > 0,
choices: () => {
let teams = localConfig.getTeams();
checkDeployConditions(localConfig);
return teams.map(team => {
return {
name: `${team.name} (${team['$id']})`,
value: team.$id
}
});
}
},
];
const questionsListFactors = [
{
type: "list",
name: "factor",
message: "Your account is protected by multi-factor authentication. Please choose one for verification.",
choices: async () => {
let client = await sdkForConsole(false);
const factors = await accountListMfaFactors({
sdk: client,
parseOutput: false
});
const choices = [
{
name: `Authenticator app (Get a code from a third-party authenticator app)`,
value: 'totp'
},
{
name: `Email (Get a security code at your Appwrite email address)`,
value: 'email'
},
{
name: `SMS (Get a security code on your Appwrite phone number)`,
value: 'phone'
},
{
name: `Recovery code (Use one of your recovery codes for verification)`,
value: 'recoveryCode'
}
].filter((ch) => factors[ch.value] === true);
return choices;
}
}
];
const questionsMfaChallenge = [
{
type: "input",
name: "otp",
message: "Enter OTP",
validate(value) {
if (!value) {
return "Please enter OTP";
}
return true;
},
}
];
const questionsRunFunctions = [
{
type: "list",
name: "function",
message: "Which function would you like to develop locally?",
validate: (value) => validateRequired('function', value),
choices: () => {
let functions = localConfig.getFunctions();
if (functions.length === 0) {
throw new Error("No functions found. Use 'appwrite pull functions' to synchronize existing one, or use 'appwrite init function' to create a new one.");
}
let choices = functions.map((func, idx) => {
return {
name: `${func.name} (${func.$id})`,
value: func.$id
}
})
return choices;
}
}
];
module.exports = {
questionsInitProject,
questionsInitProjectAutopull,
questionsCreateFunction,
questionsCreateFunctionSelectTemplate,
questionsCreateBucket,
questionsCreateCollection,
questionsCreateMessagingTopic,
questionsPullFunctions,
questionsPullFunctionsCode,
questionsLogin,
questionsPullResources,
questionsLogout,
questionsPullCollection,
questionsPushResources,
questionsPushFunctions,
questionsPushCollections,
questionsPushBuckets,
questionsPushMessagingTopics,
questionsPushTeams,
questionsGetEntrypoint,
questionsListFactors,
questionsMfaChallenge,
questionsRunFunctions,
questionGetEndpoint,
questionsInitResources,
questionsCreateTeam,
questionPushChanges,
questionPushChangesConfirmation
};