deno.land / x / yargs@v17.6.0-deno / lib / validation.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
import {argsert} from './argsert.js';import { Dictionary, assertNotStrictEqual, PlatformShim,} from './typings/common-types.js';import {levenshtein as distance} from './utils/levenshtein.js';import {objFilter} from './utils/obj-filter.js';import {UsageInstance} from './usage.js';import {YargsInstance, Arguments} from './yargs-factory.js';import {DetailedArguments} from './typings/yargs-parser-types.js';
const specialKeys = ['$0', '--', '_'];
// validation-type-stuff, missing params,// bad implications:export function validation( yargs: YargsInstance, usage: UsageInstance, shim: PlatformShim) { const __ = shim.y18n.__; const __n = shim.y18n.__n; const self = {} as ValidationInstance;
// validate appropriate # of non-option // arguments were provided, i.e., '_'. self.nonOptionCount = function nonOptionCount(argv) { const demandedCommands = yargs.getDemandedCommands(); // don't count currently executing commands const positionalCount = argv._.length + (argv['--'] ? argv['--'].length : 0); const _s = positionalCount - yargs.getInternalMethods().getContext().commands.length;
if ( demandedCommands._ && (_s < demandedCommands._.min || _s > demandedCommands._.max) ) { if (_s < demandedCommands._.min) { if (demandedCommands._.minMsg !== undefined) { usage.fail( // replace $0 with observed, $1 with expected. demandedCommands._.minMsg ? demandedCommands._.minMsg .replace(/\$0/g, _s.toString()) .replace(/\$1/, demandedCommands._.min.toString()) : null ); } else { usage.fail( __n( 'Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option arguments: got %s, need at least %s', _s, _s.toString(), demandedCommands._.min.toString() ) ); } } else if (_s > demandedCommands._.max) { if (demandedCommands._.maxMsg !== undefined) { usage.fail( // replace $0 with observed, $1 with expected. demandedCommands._.maxMsg ? demandedCommands._.maxMsg .replace(/\$0/g, _s.toString()) .replace(/\$1/, demandedCommands._.max.toString()) : null ); } else { usage.fail( __n( 'Too many non-option arguments: got %s, maximum of %s', 'Too many non-option arguments: got %s, maximum of %s', _s, _s.toString(), demandedCommands._.max.toString() ) ); } } } };
// validate the appropriate # of <required> // positional arguments were provided: self.positionalCount = function positionalCount(required, observed) { if (observed < required) { usage.fail( __n( 'Not enough non-option arguments: got %s, need at least %s', 'Not enough non-option arguments: got %s, need at least %s', observed, observed + '', required + '' ) ); } };
// make sure all the required arguments are present. self.requiredArguments = function requiredArguments( argv, demandedOptions: Dictionary<string | undefined> ) { let missing: Dictionary<string | undefined> | null = null;
for (const key of Object.keys(demandedOptions)) { if ( !Object.prototype.hasOwnProperty.call(argv, key) || typeof argv[key] === 'undefined' ) { missing = missing || {}; missing[key] = demandedOptions[key]; } }
if (missing) { const customMsgs: string[] = []; for (const key of Object.keys(missing)) { const msg = missing[key]; if (msg && customMsgs.indexOf(msg) < 0) { customMsgs.push(msg); } }
const customMsg = customMsgs.length ? `\n${customMsgs.join('\n')}` : ''; usage.fail( __n( 'Missing required argument: %s', 'Missing required arguments: %s', Object.keys(missing).length, Object.keys(missing).join(', ') + customMsg ) ); } };
// check for unknown arguments (strict-mode). self.unknownArguments = function unknownArguments( argv, aliases, positionalMap, isDefaultCommand, checkPositionals = true ) { const commandKeys = yargs .getInternalMethods() .getCommandInstance() .getCommands(); const unknown: string[] = []; const currentContext = yargs.getInternalMethods().getContext();
Object.keys(argv).forEach(key => { if ( !specialKeys.includes(key) && !Object.prototype.hasOwnProperty.call(positionalMap, key) && !Object.prototype.hasOwnProperty.call( yargs.getInternalMethods().getParseContext(), key ) && !self.isValidAndSomeAliasIsNotNew(key, aliases) ) { unknown.push(key); } });
if ( checkPositionals && (currentContext.commands.length > 0 || commandKeys.length > 0 || isDefaultCommand) ) { argv._.slice(currentContext.commands.length).forEach(key => { if (!commandKeys.includes('' + key)) { unknown.push('' + key); } }); }
// https://github.com/yargs/yargs/issues/1861 if (checkPositionals) { // Check for non-option args that are not in currentContext.commands // Take into account expected args from commands and yargs.demand(number) const demandedCommands = yargs.getDemandedCommands(); const maxNonOptDemanded = demandedCommands._?.max || 0; const expected = currentContext.commands.length + maxNonOptDemanded; if (expected < argv._.length) { argv._.slice(expected).forEach(key => { key = String(key); if ( !currentContext.commands.includes(key) && !unknown.includes(key) ) { unknown.push(key); } }); } }
if (unknown.length) { usage.fail( __n( 'Unknown argument: %s', 'Unknown arguments: %s', unknown.length, unknown.map(s => (s.trim() ? s : `"${s}"`)).join(', ') ) ); } };
self.unknownCommands = function unknownCommands(argv) { const commandKeys = yargs .getInternalMethods() .getCommandInstance() .getCommands(); const unknown: string[] = []; const currentContext = yargs.getInternalMethods().getContext();
if (currentContext.commands.length > 0 || commandKeys.length > 0) { argv._.slice(currentContext.commands.length).forEach(key => { if (!commandKeys.includes('' + key)) { unknown.push('' + key); } }); }
if (unknown.length > 0) { usage.fail( __n( 'Unknown command: %s', 'Unknown commands: %s', unknown.length, unknown.join(', ') ) ); return true; } else { return false; } };
// check for a key that is not an alias, or for which every alias is new, // implying that it was invented by the parser, e.g., during camelization self.isValidAndSomeAliasIsNotNew = function isValidAndSomeAliasIsNotNew( key, aliases ) { if (!Object.prototype.hasOwnProperty.call(aliases, key)) { return false; } const newAliases = (yargs.parsed as DetailedArguments).newAliases; return [key, ...aliases[key]].some( a => !Object.prototype.hasOwnProperty.call(newAliases, a) || !newAliases[key] ); };
// validate arguments limited to enumerated choices self.limitedChoices = function limitedChoices(argv) { const options = yargs.getOptions(); const invalid: Dictionary<any[]> = {};
if (!Object.keys(options.choices).length) return;
Object.keys(argv).forEach(key => { if ( specialKeys.indexOf(key) === -1 && Object.prototype.hasOwnProperty.call(options.choices, key) ) { [].concat(argv[key]).forEach(value => { // TODO case-insensitive configurability if ( options.choices[key].indexOf(value) === -1 && value !== undefined ) { invalid[key] = (invalid[key] || []).concat(value); } }); } });
const invalidKeys = Object.keys(invalid);
if (!invalidKeys.length) return;
let msg = __('Invalid values:'); invalidKeys.forEach(key => { msg += `\n ${__( 'Argument: %s, Given: %s, Choices: %s', key, usage.stringifiedValues(invalid[key]), usage.stringifiedValues(options.choices[key]) )}`; }); usage.fail(msg); };
// check implications, argument foo implies => argument bar. let implied: Dictionary<KeyOrPos[]> = {}; self.implies = function implies(key, value) { argsert( '<string|object> [array|number|string]', [key, value], arguments.length );
if (typeof key === 'object') { Object.keys(key).forEach(k => { self.implies(k, key[k]); }); } else { yargs.global(key); if (!implied[key]) { implied[key] = []; } if (Array.isArray(value)) { value.forEach(i => self.implies(key, i)); } else { assertNotStrictEqual(value, undefined, shim); implied[key].push(value); } } }; self.getImplied = function getImplied() { return implied; };
function keyExists(argv: Arguments, val: any): any { // convert string '1' to number 1 const num = Number(val); val = isNaN(num) ? val : num;
if (typeof val === 'number') { // check length of argv._ val = argv._.length >= val; } else if (val.match(/^--no-.+/)) { // check if key/value doesn't exist val = val.match(/^--no-(.+)/)[1]; val = !Object.prototype.hasOwnProperty.call(argv, val); } else { // check if key/value exists val = Object.prototype.hasOwnProperty.call(argv, val); } return val; }
self.implications = function implications(argv) { const implyFail: string[] = [];
Object.keys(implied).forEach(key => { const origKey = key; (implied[key] || []).forEach(value => { let key = origKey; const origValue = value; key = keyExists(argv, key); value = keyExists(argv, value);
if (key && !value) { implyFail.push(` ${origKey} -> ${origValue}`); } }); });
if (implyFail.length) { let msg = `${__('Implications failed:')}\n`;
implyFail.forEach(value => { msg += value; });
usage.fail(msg); } };
let conflicting: Dictionary<(string | undefined)[]> = {}; self.conflicts = function conflicts(key, value) { argsert('<string|object> [array|string]', [key, value], arguments.length);
if (typeof key === 'object') { Object.keys(key).forEach(k => { self.conflicts(k, key[k]); }); } else { yargs.global(key); if (!conflicting[key]) { conflicting[key] = []; } if (Array.isArray(value)) { value.forEach(i => self.conflicts(key, i)); } else { conflicting[key].push(value); } } }; self.getConflicting = () => conflicting;
self.conflicting = function conflictingFn(argv) { Object.keys(argv).forEach(key => { if (conflicting[key]) { conflicting[key].forEach(value => { // we default keys to 'undefined' that have been configured, we should not // apply conflicting check unless they are a value other than 'undefined'. if (value && argv[key] !== undefined && argv[value] !== undefined) { usage.fail( __('Arguments %s and %s are mutually exclusive', key, value) ); } }); } });
// When strip-dashed is true, match conflicts (kebab) with argv (camel) // Addresses: https://github.com/yargs/yargs/issues/1952 if (yargs.getInternalMethods().getParserConfiguration()['strip-dashed']) { Object.keys(conflicting).forEach(key => { conflicting[key].forEach(value => { if ( value && argv[shim.Parser.camelCase(key)] !== undefined && argv[shim.Parser.camelCase(value)] !== undefined ) { usage.fail( __('Arguments %s and %s are mutually exclusive', key, value) ); } }); }); } };
self.recommendCommands = function recommendCommands(cmd, potentialCommands) { const threshold = 3; // if it takes more than three edits, let's move on. potentialCommands = potentialCommands.sort((a, b) => b.length - a.length);
let recommended = null; let bestDistance = Infinity; for ( let i = 0, candidate; (candidate = potentialCommands[i]) !== undefined; i++ ) { const d = distance(cmd, candidate); if (d <= threshold && d < bestDistance) { bestDistance = d; recommended = candidate; } } if (recommended) usage.fail(__('Did you mean %s?', recommended)); };
self.reset = function reset(localLookup) { implied = objFilter(implied, k => !localLookup[k]); conflicting = objFilter(conflicting, k => !localLookup[k]); return self; };
const frozens: FrozenValidationInstance[] = []; self.freeze = function freeze() { frozens.push({ implied, conflicting, }); }; self.unfreeze = function unfreeze() { const frozen = frozens.pop(); assertNotStrictEqual(frozen, undefined, shim); ({implied, conflicting} = frozen); };
return self;}
/** Instance of the validation module. */export interface ValidationInstance { conflicting(argv: Arguments): void; conflicts( key: string | Dictionary<string | string[]>, value?: string | string[] ): void; freeze(): void; getConflicting(): Dictionary<(string | undefined)[]>; getImplied(): Dictionary<KeyOrPos[]>; implications(argv: Arguments): void; implies( key: string | Dictionary<KeyOrPos | KeyOrPos[]>, value?: KeyOrPos | KeyOrPos[] ): void; isValidAndSomeAliasIsNotNew( key: string, aliases: DetailedArguments['aliases'] ): boolean; limitedChoices(argv: Arguments): void; nonOptionCount(argv: Arguments): void; positionalCount(required: number, observed: number): void; recommendCommands(cmd: string, potentialCommands: string[]): void; requiredArguments( argv: Arguments, demandedOptions: Dictionary<string | undefined> ): void; reset(localLookup: Dictionary): ValidationInstance; unfreeze(): void; unknownArguments( argv: Arguments, aliases: DetailedArguments['aliases'], positionalMap: Dictionary, isDefaultCommand: boolean, checkPositionals?: boolean ): void; unknownCommands(argv: Arguments): boolean;}
interface FrozenValidationInstance { implied: Dictionary<KeyOrPos[]>; conflicting: Dictionary<(string | undefined)[]>;}
export type KeyOrPos = string | number;
yargs

Version Info

Tagged at
a year ago