forked from node-js-libs/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
1133 lines (1063 loc) · 35.5 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
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) 2010 Chris O'Hara <cohara87@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
//Note: cli includes kof/node-natives and creationix/stack. I couldn't find
//license information for either - contact me if you want your license added
var cli = exports,
argv, curr_opt, curr_val, full_opt, is_long,
short_tags = [], opt_list, parsed = {},
usage, argv_parsed, command_list, commands,
daemon, daemon_arg, no_color, show_debug;
cli.app = null;
cli.version = null;
cli.argv = [];
cli.argc = 0;
cli.options = {};
cli.args = [];
cli.command;
cli.width = 70;
cli.option_width = 25;
/**
* Bind kof's node-natives (https://github.com/kof/node-natives) to `cli.native`
*
* Rather than requiring node natives (e.g. var fs = require('fs')), all
* native modules can be accessed like `cli.native.fs`
*/
cli.native = {};
var define_native = function (module) {
Object.defineProperty(cli.native, module, {
enumerable: true,
configurable: true,
get: function() {
delete cli.native[module];
return cli.native[module] = require(module);
}
});
};
var natives = process.binding('natives');
for (var module in natives) {
define_native(module);
}
cli.output = cli.native.util.print;
cli.exit = process.exit;
/**
* Define plugins. Plugins can be enabled and disabled by calling:
*
* `cli.enable(plugin1, [plugin2, ...])`
* `cli.disable(plugin1, [plugin2, ...])`
*
* Methods are chainable - `cli.enable(plugin).disable(plugin2)`.
*
* The 'help' plugin is enabled by default.
*/
var enable = {
help: true, //Adds -h, --help
version: false, //Adds -v,--version => gets version by parsing a nearby package.json
daemon: false, //Adds -d,--daemon [ARG] => (see cli.daemon() below)
status: false, //Adds -k,--no-color & --debug => display plain status messages /display debug messages
timeout: false, //Adds -t,--timeout N => timeout the process after N seconds
catchall: false, //Adds -c,--catch => catch and output uncaughtExceptions
glob: false //Adds glob matching => use cli.glob(arg)
}
cli.enable = function (/*plugins*/) {
Array.prototype.slice.call(arguments).forEach(function (plugin) {
switch (plugin) {
case 'daemon':
try {
daemon = require('daemon');
if (typeof daemon.daemonize !== 'function') {
throw 'Invalid module';
}
} catch (e) {
cli.fatal('daemon.node not installed. Please run `npm install daemon`');
}
break;
case 'catchall':
process.on('uncaughtException', function (err) {
cli.error('Uncaught exception: ' + (err.msg || err));
});
break;
case 'help': case 'version': case 'status':
case 'autocomplete': case 'timeout':
//Just add switches.
break;
case 'glob':
cli.glob = require('glob');
break;
default:
cli.fatal('Unknown plugin "' + plugin + '"');
break;
}
enable[plugin] = true;
});
return cli;
}
cli.disable = function (/*plugins*/) {
Array.prototype.slice.call(arguments).forEach(function (plugin) {
if (enable[plugin]) {
enable[plugin] = false;
}
});
return cli;
}
/**
* Sets argv (default is process.argv).
*
* @param {Array|String} argv
* @param {Boolean} keep_arg0 (optional - default is false)
* @api public
*/
cli.setArgv = function (arr, keep_arg0) {
if (typeof arr == 'string') {
arr = arr.split(' ');
} else {
arr = arr.slice();
}
cli.app = arr.shift();
//Strip off argv[0] if it's a node binary
if (!keep_arg0 && ('node' === cli.native.path.basename(cli.app)
|| process.execPath === cli.app)) {
cli.app = arr.shift();
}
cli.app = cli.native.path.basename(cli.app);
argv_parsed = false;
cli.args = cli.argv = argv = arr;
cli.argc = argv.length;
cli.options = {};
cli.command = null;
};
cli.setArgv(process.argv);
/**
* Returns the next opt, or false if no opts are found.
*
* @return {String} opt
* @api public
*/
cli.next = function () {
if (!argv_parsed) {
cli.args = [];
argv_parsed = true;
}
curr_val = null;
//If we're currently in a group of short opts (e.g. -abc), return the next opt
if (short_tags.length) {
curr_opt = short_tags.shift();
full_opt = '-' + curr_opt;
return curr_opt;
}
if (!argv.length) {
return false;
}
curr_opt = argv.shift();
//If an escape sequence is found (- or --), subsequent opts are ignored
if (curr_opt === '-' || curr_opt === '--') {
while (argv.length) {
cli.args.push(argv.shift());
}
return false;
}
//If the next element in argv isn't an opt, add it to the list of args
if (curr_opt[0] !== '-') {
cli.args.push(curr_opt);
return cli.next();
} else {
//Check if the opt is short/long
is_long = curr_opt[1] === '-';
curr_opt = curr_opt.substr(is_long ? 2 : 1);
}
//Accept grouped short opts, e.g. -abc => -a -b -c
if (!is_long && curr_opt.length > 1) {
short_tags = curr_opt.split('');
return cli.next();
}
var eq, len;
//Check if the long opt is in the form --option=VALUE
if (is_long && (eq = curr_opt.indexOf('=')) >= 0) {
curr_val = curr_opt.substr(eq + 1);
curr_opt = curr_opt.substr(0, eq);
len = curr_val.length;
//Allow values to be quoted
if ((curr_val[0] === '"' && curr_val[len - 1] === '"') ||
(curr_val[0] === "'" && curr_val[len - 1] === "'"))
{
curr_val = curr_val.substr(1, len-2);
}
if (curr_val.match(/^[0-9]+$/)) {
curr_val = parseInt(curr_val, 10);
}
}
//Save the opt representation for later
full_opt = (is_long ? '--' : '-') + curr_opt;
return curr_opt;
};
/**
* Parses command line opts.
*
* `opts` must be an object with opts defined like:
* long_tag: [short_tag, description, value_type, default_value];
*
* `commands` is an optional array or object for apps that are of the form
* my_app [OPTIONS] <command> [ARGS]
* The command list is output with usage information + there is bundled
* support for auto-completion, etc.
*
* See README.md for more information.
*
* @param {Object} opts
* @param {Object} commands (optional)
* @return {Object} opts (parsed)
* @api public
*/
cli.parse = function (opts, command_def) {
var default_val, i, parsed = cli.options, seen,
catch_all = !opts;
opt_list = opts || {};
commands = command_def;
command_list = commands || [];
if (commands && !Array.isArray(commands)) {
command_list = Object.keys(commands);
}
while (o = cli.next()) {
seen = false;
for (opt in opt_list) {
if (!(opt_list[opt] instanceof Array)) {
continue;
}
if (!opt_list[opt][0]) {
opt_list[opt][0] = opt;
}
if (o === opt || o === opt_list[opt][0]) {
seen = true;
if (opt_list[opt].length === 2) {
parsed[opt] = true;
break;
}
default_val = null;
if (opt_list[opt].length === 4) {
default_val = opt_list[opt][3];
}
if (opt_list[opt][2] instanceof Array) {
for (i = 0, l = opt_list[opt][2].length; i < l; i++) {
if (typeof opt_list[opt][2][i] === 'number') {
opt_list[opt][2][i] += '';
}
}
parsed[opt] = cli.getArrayValue(opt_list[opt][2], is_long ? null : default_val);
break;
}
if (opt_list[opt][2].toLowerCase) {
opt_list[opt][2] = opt_list[opt][2].toLowerCase();
}
switch (opt_list[opt][2]) {
case 'string': case 1: case true:
parsed[opt] = cli.getValue(default_val);
break;
case 'int': case 'number': case 'num':
case 'time': case 'seconds': case 'secs': case 'minutes': case 'mins':
case 'x': case 'n':
parsed[opt] = cli.getInt(default_val);
break;
case 'float': case 'decimal':
parsed[opt] = cli.getFloat(default_val);
break;
case 'path': case 'file': case 'directory': case 'dir':
parsed[opt] = cli.getPath(default_val, opt_list[opt][2]);
break;
case 'email':
parsed[opt] = cli.getEmail(default_val);
break;
case 'url': case 'uri': case 'domain': case 'host':
parsed[opt] = cli.getUrl(default_val, opt_list[opt][2]);
break;
case 'ip':
parsed[opt] = cli.getIp(default_val);
break;
case 'bool': case 'boolean': case 'on':
parsed[opt] = true;
break;
case 'false': case 'off': case false: case 0:
parsed[opt] = false;
break;
default:
cli.fatal('Unknown opt type "' + opt_list[opt][2] + '"');
}
break;
}
}
if (process.env.NODE_DISABLE_COLORS) {
no_color = true;
}
if (!seen) {
if (enable.help && (o === 'h' || o === 'help')) {
cli.getUsage();
process.exit();
} else if (enable.version && (o === 'v' || o === 'version')) {
if (cli.version == null) {
cli.parsePackageJson();
}
console.error(cli.app + ' v' + cli.version);
process.exit();
} else if (enable.daemon && (o === 'd' || o === 'daemon')) {
daemon_arg = cli.getArrayValue(['start','stop','restart','pid','log'], is_long ? null : 'start');
continue;
} else if (enable.catchall && (o === 'c' || o === 'catch')) {
continue;
} else if (enable.status && (o === 'k' || o === 'no-color' || o === 'debug')) {
no_color = (o === 'k' || o === 'no-color');
show_debug = o === 'debug';
continue;
} else if (enable.timeout && (o === 't' || o === 'timeout')) {
var secs = cli.getInt();
setTimeout(function () {
cli.fatal('Process timed out after ' + secs + 's');
}, secs * 1000);
continue;
} else if (catch_all) {
parsed[o] = curr_val || true;
continue;
}
cli.fatal('Unknown option ' + full_opt);
}
}
//Fill the remaining options with their default value or null
for (opt in opt_list) {
default_val = opt_list[opt].length === 4 ? opt_list[opt][3] : null;
if (!(opt_list[opt] instanceof Array)) {
parsed[opt] = opt_list[opt];
continue;
} else if (typeof parsed[opt] === 'undefined') {
parsed[opt] = default_val;
}
}
if (command_list.length) {
if (cli.args.length === 0) {
if (enable.help) {
cli.getUsage();
} else {
cli.fatal('A command is required (' + command_list.join(', ') + ').');
}
process.exit(1);
} else {
cli.command = cli.autocompleteCommand(cli.args.shift());
}
}
cli.argc = cli.args.length;
return parsed;
};
/**
* Helper method for matching a command from the command list.
*
* @param {String} command
* @return {String} full_command
* @api public
*/
cli.autocompleteCommand = function (command) {
var list;
if (!(command_list instanceof Array)) {
list = Object.keys(command_list);
} else {
list = command_list;
}
var i, j = 0, c = command.length, tmp_list;
if (list.length === 0 || list.indexOf(command) !== -1) {
return command;
}
for (i = 0; i < c; i++) {
tmp_list = [];
l = list.length;
if (l <= 1) break;
for (j = 0; j < l; j++)
if (list[j].length >= i && list[j][i] === command[i])
tmp_list.push(list[j]);
list = tmp_list;
}
l = list.length;
if (l === 1) {
return list[0];
} else if (l === 0) {
cli.fatal('Unknown command "' + command + '"' + (enable.help ? '. Please see --help for more information' : ''));
} else {
list.sort();
cli.fatal('The command "' + command + '" is ambiguous and could mean "' + list.join('", "') + '"');
}
};
/**
* Adds methods to output styled status messages to stderr.
*
* Added methods are cli.info(msg), cli.error(msg), cli.ok(msg), and
* cli.debug(msg).
*
* To control status messages, use the 'status' plugin
* 1) debug() messages are hidden by default. Display them with
* the --debug opt.
* 2) to hide all status messages, use the -s or --silent opt.
*
* @api private
*/
cli.status = function (msg, type) {
var pre;
switch (type) {
case 'info':
pre = no_color ? 'INFO:' : '\x1B[33mINFO\x1B[0m:';
break;
case 'debug':
pre = no_color ? 'DEBUG:' : '\x1B[36mDEBUG\x1B[0m:';
break;
case 'error':
case 'fatal':
pre = no_color ? 'ERROR:' : '\x1B[31mERROR\x1B[0m:';
break;
case 'ok':
pre = no_color ? 'OK:' : '\x1B[32mOK\x1B[0m:';
break;
}
msg = pre + ' ' + msg;
if (type === 'fatal') {
console.error(msg);
process.exit(1);
}
if (enable.status && !show_debug && type === 'debug') {
return;
}
console.error(msg);
};
['info','error','ok','debug','fatal'].forEach(function (type) {
cli[type] = function (msg) {
cli.status(msg, type);
};
});
/**
* Sets the app name and version.
*
* Usage:
* setApp('myapp', '0.1.0');
* setApp('./package.json'); //Pull name/version from package.json
*
* @param {String} name
* @return cli (for chaining)
* @api public
*/
cli.setApp = function (name, version) {
if (name.indexOf('package.json') !== -1) {
cli.parsePackageJson(name);
} else {
cli.app = name;
cli.version = version;
}
return cli;
};
/**
* Parses the version number from package.json. If no path is specified, cli
* will attempt to locate a package.json in ./, ../ or ../../
*
* @param {String} path (optional)
* @api public
*/
cli.parsePackageJson = function (path) {
var parse_packagejson = function (path) {
var packagejson = JSON.parse(cli.native.fs.readFileSync(path, 'utf8'));
cli.version = packagejson.version;
cli.app = packagejson.name;
};
var try_all = function (arr, func, err) {
for (var i = 0, l = arr.length; i < l; i++) {
try {
func(arr[i]);
return;
} catch (e) {
if (i === l-1) {
cli.fatal(err);
}
}
}
};
try {
if (path) {
return parse_packagejson(path);
}
try_all([
__dirname + '/package.json',
__dirname + '/../package.json',
__dirname + '/../../package.json'
], parse_packagejson);
} catch (e) {
cli.fatal('Could not detect ' + cli.app + ' version');
}
};
/**
* Sets the usage string - default is `app [OPTIONS] [ARGS]`.
*
* @param {String} u
* @return cli (for chaining)
* @api public
*/
cli.setUsage = function (u) {
usage = u;
return cli;
};
var pad = function (str, len) {
if (typeof len === 'undefined') {
len = str;
str = '';
}
if (str.length < len) {
len -= str.length;
while (len--) str += ' ';
}
return str;
};
/**
* Automatically build usage information from the opts list. If the help
* plugin is enabled (default), this info is displayed with -h, --help.
*
* @api public
*/
cli.getUsage = function () {
var short, desc, optional, line, seen_opts = [],
switch_pad = cli.option_width;
var trunc_desc = function (pref, desc, len) {
var pref_len = pref.length,
desc_len = cli.width - pref_len,
truncated = '';
if (desc.length <= desc_len) {
return desc;
}
var desc_words = (desc+'').split(' '), chars = 0, word;
while (desc_words.length) {
truncated += (word = desc_words.shift()) + ' ';
chars += word.length;
if (desc_words.length && chars + desc_words[0].length > desc_len) {
truncated += '\n' + pad(pref_len);
chars = 0;
}
}
return truncated;
};
usage = usage || cli.app + ' [OPTIONS]' + (command_list.length ? ' <command>' : '') + ' [ARGS]';
if (no_color) {
console.error('Usage:\n ' + usage);
console.error('Options: ');
} else {
console.error('\x1b[1mUsage\x1b[0m:\n ' + usage);
console.error('\n\x1b[1mOptions\x1b[0m: ');
}
for (opt in opt_list) {
if (opt.length === 1) {
long = opt_list[opt][0];
short = opt;
} else {
long = opt;
short = opt_list[opt][0];
}
//Parse opt_list
desc = opt_list[opt][1].trim();
type = opt_list[opt].length >= 3 ? opt_list[opt][2] : null;
optional = opt_list[opt].length === 4 ? opt_list[opt][3] : null;
//Build usage line
if (short === long) {
if (short.length === 1) {
line = ' -' + short;
} else {
line = ' --' + long;
}
} else {
line = ' -' + short + ', --' + long;
}
line += ' ';
if (type) {
if (type instanceof Array) {
desc += '. VALUE must be either [' + type.join('|') + ']';
type = 'VALUE';
}
if (type === true || type === 1) {
type = long.toUpperCase();
}
type = type.toUpperCase();
if (type === 'FLOAT' || type === 'INT') {
type = 'NUMBER';
}
line += optional ? '[' + type + ']' : type;
}
line = pad(line, switch_pad);
line += trunc_desc(line, desc);
line += optional ? ' (Default is ' + optional + ')' : '';
console.error(line.replace('%s', '%\0s'));
seen_opts.push(short);
seen_opts.push(long);
}
if (enable.timeout && seen_opts.indexOf('t') === -1 && seen_opts.indexOf('timeout') === -1) {
console.error(pad(' -t, --timeout N', switch_pad) + 'Exit if the process takes longer than N seconds');
}
if (enable.status) {
if (seen_opts.indexOf('k') === -1 && seen_opts.indexOf('no-color') === -1) {
console.error(pad(' -k, --no-color', switch_pad) + 'Omit color from output');
}
if (seen_opts.indexOf('debug') === -1) {
console.error(pad(' --debug', switch_pad) + 'Show debug information');
}
}
if (enable.catchall && seen_opts.indexOf('c') === -1 && seen_opts.indexOf('catch') === -1) {
console.error(pad(' -c, --catch', switch_pad) + 'Catch unanticipated errors');
}
if (enable.daemon && seen_opts.indexOf('d') === -1 && seen_opts.indexOf('daemon') === -1) {
console.error(pad(' -d, --daemon [ARG]', switch_pad) + 'Daemonize the process. Control the daemon using [start, stop, restart, log, pid]');
}
if (enable.version && seen_opts.indexOf('v') === -1 && seen_opts.indexOf('version') === -1) {
console.error(pad(' -v, --version', switch_pad) + 'Display the current version');
}
if (enable.help && seen_opts.indexOf('h') === -1 && seen_opts.indexOf('help') === -1) {
console.error(pad(' -h, --help', switch_pad) + 'Display help and usage details');
}
if (command_list.length) {
console.error('\n\x1b[1mCommands\x1b[0m: ');
if (!Array.isArray(commands)) {
for (var c in commands) {
line = ' ' + pad(c, switch_pad - 2);
line += trunc_desc(line, commands[c]);
console.error(line);
}
} else {
command_list.sort();
console.error(' ' + trunc_desc(' ', command_list.join(', ')));
}
}
process.exit();
};
/**
* Generates an error message when an opt is incorrectly used.
*
* @param {String} expects (e.g. 'a value')
* @param {String} type (e.g. 'VALUE')
* @api public
*/
cli.getOptError = function (expects, type) {
var err = full_opt + ' expects ' + expects
+ '. Use `' + cli.app + ' ' + full_opt + (is_long ? '=' : ' ') + type + '`';
return err;
};
/**
* Gets the next opt value and validates it with an optional validation
* function. If validation fails or no value can be obtained, this method
* will return the default value (if specified) or exit with err_msg.
*
* @param {String} default_val
* @param {Function} validate_func
* @param {String} err_msg
* @api public
*/
cli.getValue = function (default_val, validate_func, err_msg) {
err_msg = err_msg || cli.getOptError('a value', 'VALUE');
var value;
try {
if (curr_val) {
if (validate_func) {
curr_val = validate_func(curr_val);
}
return curr_val;
}
//Grouped short opts aren't allowed to have values
if (short_tags.length) {
throw 'Short tags';
}
//If there's no args left or the next arg is an opt, return the
//default value (if specified) - otherwise fail
if (!argv.length || (argv[0].length === 1 && argv[0][0] === '-')) {
throw 'No value';
}
value = argv.shift();
if (value.match(/^[0-9]+$/)) {
value = parseInt(value, 10);
}
//Run the value through a validation/transformation function if specified
if (validate_func) {
value = validate_func(value);
}
} catch (e) {
//The value didn't pass the validation/transformation. Unshift the value and
//return the default value (if specified)
if (value) {
argv.unshift(value);
}
return default_val != null ? default_val : cli.fatal(err_msg);
}
return value;
};
cli.getInt = function (default_val) {
return cli.getValue(default_val, function (value) {
if (typeof value === 'number') return value;
if (!value.match(/^(?:-?(?:0|[1-9][0-9]*))$/)) {
throw 'Invalid int';
}
return parseInt(value);
}, cli.getOptError('a number', 'NUMBER'));
}
cli.getFloat = function (default_val) {
return cli.getValue(default_val, function (value) {
if (!value.match(/^(?:-?(?:0|[1-9][0-9]*))?(?:\.[0-9]*)?$/)) {
throw 'Invalid float';
}
return parseFloat(value, 10);
}, cli.getOptError('a number', 'NUMBER'));
}
cli.getUrl = function (default_val, identifier) {
identifier = identifier || 'url';
return cli.getValue(default_val, function (value) {
if (!value.match(/^(?:(?:ht|f)tp(?:s?)\:\/\/|~\/|\/)?(?:\w+:\w+@)?((?:(?:[-\w\d{1-3}]+\.)+(?:com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|edu|co\.uk|ac\.uk|it|fr|tv|museum|asia|local|travel|[a-z]{2})?)|((\b25[0-5]\b|\b[2][0-4][0-9]\b|\b[0-1]?[0-9]?[0-9]\b)(\.(\b25[0-5]\b|\b[2][0-4][0-9]\b|\b[0-1]?[0-9]?[0-9]\b)){3}))(?::[\d]{1,5})?(?:(?:(?:\/(?:[-\w~!$+|.,=]|%[a-f\d]{2})+)+|\/)+|\?|#)?(?:(?:\?(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=?(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)(?:&(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=?(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)*)*(?:#(?:[-\w~!$ |\/.,*:;=]|%[a-f\d]{2})*)?$/i)) {
throw 'Invalid URL';
}
return value;
}, cli.getOptError('a ' + identifier, identifier.toUpperCase()));
}
cli.getEmail = function (default_val) {
return cli.getValue(default_val, function (value) {
if (!value.match(/^(?:[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+\.)*[\w\!\#\$\%\&\'\*\+\-\/\=\?\^\`\{\|\}\~]+@(?:(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9\-](?!\.)){0,61}[a-zA-Z0-9]?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9\-](?!$)){0,61}[a-zA-Z0-9]?)|(?:\[(?:(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\]))$/)) {
throw 'Invalid email';
}
return value;
}, cli.getOptError('an email', 'EMAIL'));
}
cli.getIp = function (default_val) {
return cli.getValue(default_val, function (value) {
if (!value.match(/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/)) {
throw 'Invalid IP';
}
return value;
}, cli.getOptError('an IP', 'IP'));
}
cli.getPath = function (default_val, identifier) {
identifier = identifier || 'path';
return cli.getValue(default_val, function (value) {
if (value.match(/[?*:;{}]/)) {
throw 'Invalid path';
}
return value;
}, cli.getOptError('a ' + identifier, identifier.toUpperCase()));
}
cli.getArrayValue = function (arr, default_val) {
return cli.getValue(default_val, function (value) {
if (arr.indexOf(value) === -1) {
throw 'Unexpected value';
}
return value;
}, cli.getOptError('either [' + arr.join('|') + ']', 'VALUE'));
}
/**
* Gets all data from STDIN (with optional encoding) and sends it to callback.
*
* @param {String} encoding (optional - default is 'utf8')
* @param {Function} callback
* @api public
*/
cli.withStdin = function (encoding, callback) {
if (typeof encoding === 'function') {
callback = encoding;
encoding = 'utf8';
}
var stream = process.openStdin(), data = '';
stream.setEncoding(encoding);
stream.on('data', function (chunk) {
data += chunk;
});
stream.on('end', function () {
callback.apply(cli, [data]);
});
};
/**
* Gets all data from STDIN, splits the data into lines and sends it
* to callback (callback isn't called until all of STDIN is read. To
* process each line as it's received, see the method below
*
* @param {Function} callback
* @api public
*/
cli.withStdinLines = function (callback) {
cli.withStdin(function (data) {
var sep = data.indexOf('\r\n') !== -1 ? '\r\n' : '\n';
callback.apply(cli, [data.split(sep), sep]);
});
};
/**
* Asynchronously reads a file line by line. When a line is received,
* callback is called with (line, sep) - when EOF is reached, callback
* receives (null, null, true)
*
* @param {String} file (optional - default is 'stdin')
* @param {String} encoding (optional - default is 'utf8')
* @param {Function} callback (line, sep, eof)
* @api public
*/
cli.withInput = function (file, encoding, callback) {
if (typeof encoding === 'function') {
callback = encoding;
encoding = 'utf8';
} else if (typeof file === 'function') {
callback = file;
encoding = 'utf8';
file = 'stdin';
}
if (file === 'stdin') {
file = process.openStdin();
} else {
try {
file = cli.native.fs.createReadStream(file);
file.on('error', cli.fatal);
} catch (e) {
return cli.fatal(e);
}
}
file.setEncoding(encoding);
var lines = [], data = '', eof, sep;
file.on('data', function (chunk) {
if (eof) return;
data += chunk;
if (!sep) {
if (data.indexOf('\r\n') !== -1) {
sep = '\r\n';
} else if (data.indexOf('\n') !== -1) {
sep = '\n';
} else {
last_line = data;
return;
}
}
lines = data.split(sep);
data = eof ? null : lines.pop();
while (lines.length) {
callback.apply(cli, [lines.shift(), sep, false]);
}
});
file.on('end', function () {
eof = true;
if (data.length) {
callback.apply(cli, [data, sep || '', false]);
}
callback.apply(cli, [null, null, true]);
});
};
/**
* A method for creating and controlling a daemon.
*
* `arg` can be:
* start = daemonizes the process
* stop = stops the daemon if it is running
* restart = alias for stop -> start
* pid = outputs the daemon's PID if it is running
* log = outputs the daemon's log file (stdout + stderr)
*
* @param {String} arg (Optional - default is 'start')
* @param {Function} callback
* @api public
*/
cli.daemon = function (arg, callback) {
if (typeof daemon === 'undefined') {
cli.fatal('Daemon is not initialized');
}
if (typeof arg === 'function') {
callback = arg;
arg = 'start';
}
var lock_file = '/tmp/' + cli.app + '.pid',
log_file = '/tmp/' + cli.app + '.log';
var start = function () {
daemon.daemonize(log_file, lock_file, function (err) {
if (err) return cli.error('Error starting daemon: ' + err);
callback();
});
};
var stop = function () {
try {
cli.native.fs.readFileSync(lock_file);
} catch (e) {
return cli.error('Daemon is not running');
};
daemon.kill(lock_file, function (err, pid) {
if (err && err.errno === 3) {
return cli.error('Daemon is not running');
} else if (err) {
return cli.error('Error stopping daemon: ' + err.errno);
}
cli.ok('Successfully stopped daemon with pid: ' + pid);
});
};
switch(arg) {
case 'stop':
stop();
break;
case 'restart':
daemon.stop(lock_file, function () {
start();
});
break;
case 'log':
try {
cli.native.fs.createReadStream(log_file, {encoding: 'utf8'}).pipe(process.stdout);
} catch (e) {
return cli.error('No daemon log file');
};
break;
case 'pid':
try {
var pid = cli.native.fs.readFileSync(lock_file, 'utf8');
cli.native.fs.statSync('/proc/' + pid);
cli.info(pid);
} catch (e) {
return cli.error('Daemon is not running');
};
break;
default:
start();
break;
}
}
/**
* The main entry method. Calling cli.main() is only necessary in
* scripts that have daemon support enabled. `callback` receives (args, options)
*
* @param {Function} callback
* @api public
*/