-
Notifications
You must be signed in to change notification settings - Fork 36
/
cli.js
534 lines (529 loc) · 18.9 KB
/
cli.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
#!/usr/bin/env node
'use strict';
/**
* CLI entry for SFMC DevTools
*/
const Util = require('./util/util');
const yargs = require('yargs');
const Mcdev = require('./index');
yargs
.scriptName('mcdev')
.usage('$0 <command> [options]')
.command({
command: 'retrieve [BU] [TYPE] [KEY]',
aliases: ['r'],
desc: 'retrieves metadata of a business unit',
// @ts-ignore
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to retrieve from (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type that shall be exclusively downloaded',
})
.positional('KEY', {
type: 'string',
describe: 'metadata keys that shall be exclusively downloaded',
})
.option('like', {
type: 'string',
group: 'Options for retrieve:',
describe:
'filter metadata components (can include % as wildcard or _ for a single character)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.retrieve(argv.BU, csvToArray(argv.TYPE), csvToArray(argv.KEY));
},
})
.command({
command: 'deploy [BU] [TYPE] [KEY] [--fromRetrieve] [--refresh]',
aliases: ['d'],
desc: 'deploys local metadata to a business unit',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to deploy to (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type that shall be exclusively uploaded',
})
.positional('KEY', {
type: 'string',
describe: 'metadata key that shall be exclusively uploaded',
})
.option('changeKeyField', {
type: 'string',
group: 'Options for deploy:',
describe:
'enables updating the key of the deployed metadata with the value in provided field (e.g. c__newKey). Can be used to sync name and key fields.',
})
.option('changeKeyValue', {
type: 'string',
group: 'Options for deploy:',
describe:
'allows updating the key of the metadata to the provided value. Only available if a single type and key is deployed',
})
.option('fromRetrieve', {
type: 'boolean',
group: 'Options for deploy:',
describe: 'optionally deploy from retrieve folder',
})
.option('refresh', {
type: 'boolean',
group: 'Options for deploy:',
describe:
'optional for asset-message: runs refresh command for related triggeredSends after deploy',
})
.option('execute', {
type: 'boolean',
group: 'Options for deploy:',
describe: 'optional for query: runs execute after deploy',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.deploy(argv.BU, csvToArray(argv.TYPE), csvToArray(argv.KEY), argv.fromRetrieve);
},
})
.command({
command: 'init [credentialsName]',
desc: `creates '${Util.configFileName}' in your root or adds additional credentials to the existing one`,
builder: (yargs) => {
yargs.positional('credentialsName', {
type: 'string',
describe: 'name of your installed package',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.initProject(argv.credentialsName);
},
})
.command({
command: 'join',
desc: `clones an existing project from git`,
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.joinProject();
},
})
.command({
command: 'reloadBUs [credentialsName]',
aliases: ['rb'],
desc: 'loads the list of available BUs from the server and saves it to your config',
builder: (yargs) => {
yargs.positional('credentialsName', {
type: 'string',
describe: 'name of your installed package',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.findBUs(argv.credentialsName);
},
})
.command({
command: 'badKeys [BU]',
desc: 'lists metadata with random API names in specified Business Unit directory',
builder: (yargs) => {
yargs.positional('BU', {
type: 'string',
describe: 'the business unit to deploy to',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.badKeys(argv.BU);
},
})
.command({
command: 'document <BU> <TYPE>',
aliases: ['doc'],
desc: 'Creates Markdown or HTML documentation for the selected type',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to generate docs for (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe:
'metadata type to generate docs for; currently supported: dataExtension, role',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.document(argv.BU, argv.TYPE);
},
})
.command({
command: 'delete <BU> <TYPE> <EXTERNALKEY>',
aliases: ['del'],
desc: 'deletes metadata of selected type and external key',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to delete from (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type to delete from; currently supported: dataExtension',
})
.positional('EXTERNALKEY', {
type: 'string',
describe: 'the key to delete',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.deleteByKey(argv.BU, argv.TYPE, argv.EXTERNALKEY);
},
})
.command({
command: 'retrieveAsTemplate <BU> <TYPE> <NAME> <MARKET>',
aliases: ['rt'],
desc: 'Retrieves a specific metadata file by name from the server for templating',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to deploy to (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('NAME', {
type: 'string',
describe: 'name of the metadata component',
})
.positional('MARKET', {
type: 'string',
describe: 'market used for reverse building template',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.retrieveAsTemplate(argv.BU, argv.TYPE, csvToArray(argv.NAME), argv.MARKET);
},
})
.command({
command: 'buildTemplate <BU> <TYPE> <KEY> <MARKET>',
aliases: ['bt'],
desc: 'builds a template out of a specific metadata file already in your retrieve folder',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to deploy to (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('KEY', {
type: 'string',
describe: 'key(s) of the metadata component(s)',
})
.positional('MARKET', {
type: 'string',
describe: 'market used for reverse building template',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.buildTemplate(argv.BU, argv.TYPE, csvToArray(argv.KEY), argv.MARKET);
},
})
.command({
command: 'buildDefinition <BU> <TYPE> <FILENAME> <MARKET>',
aliases: ['bd'],
desc: 'builds metadata definition based on template',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe: 'the business unit to deploy to',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('FILENAME', {
type: 'string',
describe: 'File name of the metadata template without the extension',
})
.positional('MARKET', {
type: 'string',
describe: 'the business unit to deploy to',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.buildDefinition(argv.BU, argv.TYPE, argv.FILENAME, argv.MARKET);
},
})
.command({
command: 'buildDefinitionBulk <LISTNAME> <TYPE> <FILENAME>',
aliases: ['bdb'],
desc: 'builds metadata definition based on template en bulk',
builder: (yargs) => {
yargs
.positional('LISTNAME', {
type: 'string',
describe: 'name of list of BU-market combos',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('FILENAME', {
type: 'string',
describe: 'File name of the metadata template without the extension',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.buildDefinitionBulk(argv.LISTNAME, argv.TYPE, argv.FILENAME);
},
})
.command({
command: 'selectTypes',
aliases: ['st'],
desc: 'lets you choose what metadata types to retrieve',
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.selectTypes();
},
})
.command({
command: 'explainTypes',
aliases: ['et'],
desc: 'explains metadata types that can be retrieved',
builder: (yargs) => {
yargs.option('json', {
type: 'boolean',
group: 'Options for explainTypes:',
describe: 'optionaly return info in json format',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.explainTypes();
},
})
.command({
command: 'createDeltaPkg [range]',
aliases: ['cdp'],
desc: 'Copies commit-based file delta into deploy folder',
builder: (yargs) => {
yargs
.positional('range', {
type: 'string',
describe: 'Pull Request target branch or git commit range',
})
.option('filter', {
type: 'string',
group: 'Options for createDeltaPkg:',
describe:
'Disable templating & instead filter by the specified BU path (comma separated), can include subtype, will be prefixed with "retrieve/"',
})
.option('commitHistory', {
type: 'number',
group: 'Options for createDeltaPkg:',
describe: 'Number of commits to look back for changes (supersedes config)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.createDeltaPkg(argv);
},
})
.command({
command: 'getFilesToCommit <BU> <TYPE> <KEY>',
aliases: ['fc'],
desc: 'returns a list of relative paths to files one needs to include in a commit',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe:
'the business unit to deploy to (in format "credential name/BU name")',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('KEY', {
type: 'string',
describe: 'key(s) of the metadata component(s)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.getFilesToCommit(argv.BU, argv.TYPE, csvToArray(argv.KEY));
},
})
.command({
command: 'refresh <BU> [TYPE] [KEY]',
aliases: ['re'],
desc: 'ensures that updates are properly published',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe: 'the business unit to execute the refresh on',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('KEY', {
type: 'string',
describe: 'key(s) of the metadata component(s)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.refresh(argv.BU, argv.TYPE, csvToArray(argv.KEY));
},
})
.command({
command: 'execute <BU> <TYPE> [KEY]',
aliases: ['exec', 'start'],
desc: 'executes the entity (query/journey/automation etc.)',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe: 'the business unit where to start an item',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('KEY', {
type: 'string',
describe: 'key(s) of the metadata component(s)',
})
.option('like', {
type: 'string',
group: 'Options for execute:',
describe:
'filter metadata components (can include % as wildcard or _ for a single character)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
// ! do not allow multiple types to be passed in here via csvToArray
Mcdev.execute(argv.BU, argv.TYPE, csvToArray(argv.KEY));
},
})
.command({
command: 'pause <BU> <TYPE> [KEY]',
aliases: ['p', 'stop'],
desc: 'pauses the entity (automation etc.)',
builder: (yargs) => {
yargs
.positional('BU', {
type: 'string',
describe: 'the business unit where to start an item',
})
.positional('TYPE', {
type: 'string',
describe: 'metadata type',
})
.positional('KEY', {
type: 'string',
describe: 'key(s) of the metadata component(s)',
})
.option('like', {
type: 'string',
group: 'Options for pause:',
describe:
'filter metadata components (can include % as wildcard or _ for a single character)',
});
},
handler: (argv) => {
Mcdev.setOptions(argv);
// ! do not allow multiple types to be passed in here via csvToArray
Mcdev.pause(argv.BU, argv.TYPE, csvToArray(argv.KEY));
},
})
.command({
command: 'upgrade',
aliases: ['up'],
desc: 'Add NPM dependencies and IDE configuration files to your project',
handler: (argv) => {
Mcdev.setOptions(argv);
Mcdev.upgrade(argv.skipInteraction);
},
})
.option('verbose', {
type: 'boolean',
description: 'Run with verbose CLI output',
})
.option('debug', {
type: 'boolean',
description: 'Enable developer & edge-case features',
})
.option('silent', {
type: 'boolean',
description: 'Only output errors to CLI',
})
.option('noLogFile', {
type: 'boolean',
description: 'Only output log to CLI but not to files',
})
.option('skipInteraction', {
alias: ['yes', 'y'],
description: 'Interactive questions where possible and go with defaults instead',
})
.option('api', {
description: 'Print API calls to log ',
choices: ['log', 'cli'],
})
.demandCommand(1, 'Please enter a valid command')
.strict()
.recommendCommands()
.wrap(yargs.terminalWidth())
.epilog(
'Copyright 2023. Accenture. Get support at https://github.com/Accenture/sfmc-devtools/issues'
)
.help().argv;
/**
* helper to convert CSVs into an array. if only one value was given, it's also returned as an array
*
* @param {string} csv potentially comma-separated value or null
* @returns {string[]} values split into an array.
*/
function csvToArray(csv) {
// eslint-disable-next-line unicorn/no-negated-condition
return !csv
? null
: csv.includes(',')
? csv
.split(',')
.map((item) =>
// allow whitespace in comma-separated lists
item.trim()
)
// make sure trailing commas are ignored
.filter(Boolean)
: [csv.trim()].filter(Boolean);
}