-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
API.js
1929 lines (1654 loc) · 58.7 KB
/
API.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 2013-2022 the PM2 project authors. All rights reserved.
* Use of this source code is governed by a license that
* can be found in the LICENSE file.
*/
'use strict';
const commander = require('commander');
const fs = require('fs');
const path = require('path');
const eachLimit = require('async/eachLimit');
const series = require('async/series');
const debug = require('debug')('pm2:cli');
const util = require('util');
const chalk = require('chalk');
const fclone = require('fclone');
var DockerMgmt = require('./API/ExtraMgmt/Docker.js')
var conf = require('../constants.js');
var Client = require('./Client');
var Common = require('./Common');
var KMDaemon = require('@pm2/agent/src/InteractorClient');
var Config = require('./tools/Config');
var Modularizer = require('./API/Modules/Modularizer.js');
var path_structure = require('../paths.js');
var UX = require('./API/UX');
var pkg = require('../package.json');
var hf = require('./API/Modules/flagExt.js');
var Configuration = require('./Configuration.js');
const sexec = require('./tools/sexec.js')
var IMMUTABLE_MSG = chalk.bold.blue('Use --update-env to update environment variables');
/**
* Main Function to be imported
* can be aliased to PM2
*
* To use it when PM2 is installed as a module:
*
* var PM2 = require('pm2');
*
* var pm2 = PM2(<opts>);
*
*
* @param {Object} opts
* @param {String} [opts.cwd=<current>] override pm2 cwd for starting scripts
* @param {String} [opts.pm2_home=[<paths.js>]] pm2 directory for log, pids, socket files
* @param {Boolean} [opts.independent=false] unique PM2 instance (random pm2_home)
* @param {Boolean} [opts.daemon_mode=true] should be called in the same process or not
* @param {String} [opts.public_key=null] pm2 plus bucket public key
* @param {String} [opts.secret_key=null] pm2 plus bucket secret key
* @param {String} [opts.machine_name=null] pm2 plus instance name
*/
class API {
constructor (opts) {
if (!opts) opts = {};
var that = this;
this.daemon_mode = typeof(opts.daemon_mode) == 'undefined' ? true : opts.daemon_mode;
this.pm2_home = conf.PM2_ROOT_PATH;
this.public_key = conf.PUBLIC_KEY || opts.public_key || null;
this.secret_key = conf.SECRET_KEY || opts.secret_key || null;
this.machine_name = conf.MACHINE_NAME || opts.machine_name || null
/**
* CWD resolution
*/
this.cwd = process.cwd();
if (opts.cwd) {
this.cwd = path.resolve(opts.cwd);
}
/**
* PM2 HOME resolution
*/
if (opts.pm2_home && opts.independent == true)
throw new Error('You cannot set a pm2_home and independent instance in same time');
if (opts.pm2_home) {
// Override default conf file
this.pm2_home = opts.pm2_home;
conf = Object.assign(conf, path_structure(this.pm2_home));
}
else if (opts.independent == true && conf.IS_WINDOWS === false) {
// Create an unique pm2 instance
const crypto = require('crypto');
var random_file = crypto.randomBytes(8).toString('hex');
this.pm2_home = path.join('/tmp', random_file);
// If we dont explicitly tell to have a daemon
// It will go as in proc
if (typeof(opts.daemon_mode) == 'undefined')
this.daemon_mode = false;
conf = Object.assign(conf, path_structure(this.pm2_home));
}
this._conf = conf;
if (conf.IS_WINDOWS) {
// Weird fix, may need to be dropped
// @todo windows connoisseur double check
if (process.stdout._handle && process.stdout._handle.setBlocking)
process.stdout._handle.setBlocking(true);
}
this.Client = new Client({
pm2_home: that.pm2_home,
conf: this._conf,
secret_key: this.secret_key,
public_key: this.public_key,
daemon_mode: this.daemon_mode,
machine_name: this.machine_name
});
this.pm2_configuration = Configuration.getSync('pm2') || {}
this.gl_interact_infos = null;
this.gl_is_km_linked = false;
try {
var pid = fs.readFileSync(conf.INTERACTOR_PID_PATH);
pid = parseInt(pid.toString().trim());
process.kill(pid, 0);
that.gl_is_km_linked = true;
} catch (e) {
that.gl_is_km_linked = false;
}
// For testing purposes
if (this.secret_key && process.env.NODE_ENV == 'local_test')
that.gl_is_km_linked = true;
KMDaemon.ping(this._conf, function(err, result) {
if (!err && result === true) {
fs.readFile(conf.INTERACTION_CONF, (err, _conf) => {
if (!err) {
try {
that.gl_interact_infos = JSON.parse(_conf.toString())
} catch(e) {
var json5 = require('./tools/json5.js')
try {
that.gl_interact_infos = json5.parse(_conf.toString())
} catch(e) {
console.error(e)
that.gl_interact_infos = null
}
}
}
})
}
})
this.gl_retry = 0;
}
/**
* Connect to PM2
* Calling this command is now optional
*
* @param {Function} cb callback once pm2 is ready for commands
*/
connect (noDaemon, cb) {
var that = this;
this.start_timer = new Date();
if (typeof(cb) == 'undefined') {
cb = noDaemon;
noDaemon = false;
} else if (noDaemon === true) {
// Backward compatibility with PM2 1.x
this.Client.daemon_mode = false;
this.daemon_mode = false;
}
this.Client.start(function(err, meta) {
if (err)
return cb(err);
if (meta.new_pm2_instance == false && that.daemon_mode === true)
return cb(err, meta);
that.launchSysMonitoring(() => {})
// If new pm2 instance has been popped
// Launch all modules
that.launchAll(that, function(err_mod) {
return cb(err, meta);
});
});
}
/**
* Usefull when custom PM2 created with independent flag set to true
* This will cleanup the newly created instance
* by removing folder, killing PM2 and so on
*
* @param {Function} cb callback once cleanup is successfull
*/
destroy (cb) {
var that = this;
debug('Killing and deleting current deamon');
this.killDaemon(function() {
var cmd = 'rm -rf ' + that.pm2_home;
var test_path = path.join(that.pm2_home, 'module_conf.json');
var test_path_2 = path.join(that.pm2_home, 'pm2.pid');
if (that.pm2_home.indexOf('.pm2') > -1)
return cb(new Error('Destroy is not a allowed method on .pm2'));
fs.access(test_path, fs.R_OK, function(err) {
if (err) return cb(err);
debug('Deleting temporary folder %s', that.pm2_home);
sexec(cmd, cb);
});
});
}
/**
* Disconnect from PM2 instance
* This will allow your software to exit by itself
*
* @param {Function} [cb] optional callback once connection closed
*/
disconnect (cb) {
var that = this;
if (!cb) cb = function() {};
this.Client.close(function(err, data) {
debug('The session lasted %ds', (new Date() - that.start_timer) / 1000);
return cb(err, data);
});
};
/**
* Alias on disconnect
* @param cb
*/
close (cb) {
this.disconnect(cb);
}
/**
* Launch modules
*
* @param {Function} cb callback once pm2 has launched modules
*/
launchModules (cb) {
this.launchAll(this, cb);
}
/**
* Enable bus allowing to retrieve various process event
* like logs, restarts, reloads
*
* @param {Function} cb callback called with 1st param err and 2nb param the bus
*/
launchBus (cb) {
this.Client.launchBus(cb);
}
/**
* Exit methods for API
* @param {Integer} code exit code for terminal
*/
exitCli (code) {
var that = this;
// Do nothing if PM2 called programmatically (also in speedlist)
if (conf.PM2_PROGRAMMATIC && process.env.PM2_USAGE != 'CLI') return false;
KMDaemon.disconnectRPC(function() {
that.Client.close(function() {
code = code || 0;
// Safe exits process after all streams are drained.
// file descriptor flag.
var fds = 0;
// exits process when stdout (1) and sdterr(2) are both drained.
function tryToExit() {
if ((fds & 1) && (fds & 2)) {
debug('This command took %ds to execute', (new Date() - that.start_timer) / 1000);
process.exit(code);
}
}
[process.stdout, process.stderr].forEach(function(std) {
var fd = std.fd;
if (!std.bufferSize) {
// bufferSize equals 0 means current stream is drained.
fds = fds | fd;
} else {
// Appends nothing to the std queue, but will trigger `tryToExit` event on `drain`.
std.write && std.write('', function() {
fds = fds | fd;
tryToExit();
});
}
// Does not write anything more.
delete std.write;
});
tryToExit();
});
});
}
////////////////////////////
// Application management //
////////////////////////////
/**
* Start a file or json with configuration
* @param {Object||String} cmd script to start or json
* @param {Function} cb called when application has been started
*/
start (cmd, opts, cb) {
if (typeof(opts) == "function") {
cb = opts;
opts = {};
}
if (!opts) opts = {};
var that = this;
if (Array.isArray(opts.watch) && opts.watch.length === 0)
opts.watch = (opts.rawArgs ? !!~opts.rawArgs.indexOf('--watch') : !!~process.argv.indexOf('--watch')) || false;
if (Common.isConfigFile(cmd) || (typeof(cmd) === 'object')) {
that._startJson(cmd, opts, 'restartProcessId', (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
})
}
else {
that._startScript(cmd, opts, (err, procs) => {
return cb ? cb(err, procs) : this.speedList(0)
})
}
}
/**
* Reset process counters
*
* @method resetMetaProcess
*/
reset (process_name, cb) {
var that = this;
function processIds(ids, cb) {
eachLimit(ids, conf.CONCURRENT_ACTIONS, function(id, next) {
that.Client.executeRemote('resetMetaProcessId', id, function(err, res) {
if (err) console.error(err);
Common.printOut(conf.PREFIX_MSG + 'Resetting meta for process id %d', id);
return next();
});
}, function(err) {
if (err) return cb(Common.retErr(err));
return cb ? cb(null, {success:true}) : that.speedList();
});
}
if (process_name == 'all') {
that.Client.getAllProcessId(function(err, ids) {
if (err) {
Common.printError(err);
return cb ? cb(Common.retErr(err)) : that.exitCli(conf.ERROR_EXIT);
}
return processIds(ids, cb);
});
}
else if (isNaN(process_name)) {
that.Client.getProcessIdByName(process_name, function(err, ids) {
if (err) {
Common.printError(err);
return cb ? cb(Common.retErr(err)) : that.exitCli(conf.ERROR_EXIT);
}
if (ids.length === 0) {
Common.printError('Unknown process name');
return cb ? cb(new Error('Unknown process name')) : that.exitCli(conf.ERROR_EXIT);
}
return processIds(ids, cb);
});
} else {
processIds([process_name], cb);
}
}
/**
* Update daemonized PM2 Daemon
*
* @param {Function} cb callback when pm2 has been upgraded
*/
update (cb) {
var that = this;
Common.printOut('Be sure to have the latest version by doing `npm install pm2@latest -g` before doing this procedure.');
// Dump PM2 processes
that.Client.executeRemote('notifyKillPM2', {}, function() {});
that.getVersion(function(err, new_version) {
// If not linked to PM2 plus, and update PM2 to latest, display motd.update
if (!that.gl_is_km_linked && !err && (pkg.version != new_version)) {
var dt = fs.readFileSync(path.join(__dirname, that._conf.PM2_UPDATE));
console.log(dt.toString());
}
that.dump(function(err) {
that.killDaemon(function() {
that.Client.launchDaemon({interactor:false}, function(err, child) {
that.Client.launchRPC(function() {
that.resurrect(function() {
Common.printOut(chalk.blue.bold('>>>>>>>>>> PM2 updated'));
that.launchSysMonitoring(() => {})
that.launchAll(that, function() {
KMDaemon.launchAndInteract(that._conf, {
pm2_version: pkg.version
}, function(err, data, interactor_proc) {
})
setTimeout(() => {
return cb ? cb(null, {success:true}) : that.speedList();
}, 250)
});
});
});
});
});
});
});
return false;
}
/**
* Reload an application
*
* @param {String} process_name Application Name or All
* @param {Object} opts Options
* @param {Function} cb Callback
*/
reload (process_name, opts, cb) {
var that = this;
if (typeof(opts) == "function") {
cb = opts;
opts = {};
}
var delay = Common.lockReload();
if (delay > 0 && opts.force != true) {
Common.printError(conf.PREFIX_MSG_ERR + 'Reload already in progress, please try again in ' + Math.floor((conf.RELOAD_LOCK_TIMEOUT - delay) / 1000) + ' seconds or use --force');
return cb ? cb(new Error('Reload in progress')) : that.exitCli(conf.ERROR_EXIT);
}
if (Common.isConfigFile(process_name))
that._startJson(process_name, opts, 'reloadProcessId', function(err, apps) {
Common.unlockReload();
if (err)
return cb ? cb(err) : that.exitCli(conf.ERROR_EXIT);
return cb ? cb(null, apps) : that.exitCli(conf.SUCCESS_EXIT);
});
else {
if (opts && opts.env) {
var err = 'Using --env [env] without passing the ecosystem.config.js does not work'
Common.err(err);
Common.unlockReload();
return cb ? cb(Common.retErr(err)) : that.exitCli(conf.ERROR_EXIT);
}
if (opts && !opts.updateEnv)
Common.printOut(IMMUTABLE_MSG);
that._operate('reloadProcessId', process_name, opts, function(err, apps) {
Common.unlockReload();
if (err)
return cb ? cb(err) : that.exitCli(conf.ERROR_EXIT);
return cb ? cb(null, apps) : that.exitCli(conf.SUCCESS_EXIT);
});
}
}
/**
* Restart process
*
* @param {String} cmd Application Name / Process id / JSON application file / 'all'
* @param {Object} opts Extra options to be updated
* @param {Function} cb Callback
*/
restart (cmd, opts, cb) {
if (typeof(opts) == "function") {
cb = opts;
opts = {};
}
var that = this;
if (typeof(cmd) === 'number')
cmd = cmd.toString();
if (cmd == "-") {
// Restart from PIPED JSON
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function (param) {
process.stdin.pause();
that.actionFromJson('restartProcessId', param, opts, 'pipe', cb);
});
}
else if (Common.isConfigFile(cmd) || typeof(cmd) === 'object')
that._startJson(cmd, opts, 'restartProcessId', cb);
else {
if (opts && opts.env) {
var err = 'Using --env [env] without passing the ecosystem.config.js does not work'
Common.err(err);
return cb ? cb(Common.retErr(err)) : that.exitCli(conf.ERROR_EXIT);
}
if (opts && !opts.updateEnv)
Common.printOut(IMMUTABLE_MSG);
that._operate('restartProcessId', cmd, opts, cb);
}
}
/**
* Delete process
*
* @param {String} process_name Application Name / Process id / Application file / 'all'
* @param {Function} cb Callback
*/
delete (process_name, jsonVia, cb) {
var that = this;
if (typeof(jsonVia) === "function") {
cb = jsonVia;
jsonVia = null;
}
if (typeof(process_name) === "number") {
process_name = process_name.toString();
}
if (jsonVia == 'pipe')
return that.actionFromJson('deleteProcessId', process_name, commander, 'pipe', (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
});
if (Common.isConfigFile(process_name))
return that.actionFromJson('deleteProcessId', process_name, commander, 'file', (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
});
else {
that._operate('deleteProcessId', process_name, (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
});
}
}
/**
* Stop process
*
* @param {String} process_name Application Name / Process id / Application file / 'all'
* @param {Function} cb Callback
*/
stop (process_name, cb) {
var that = this;
if (typeof(process_name) === 'number')
process_name = process_name.toString();
if (process_name == "-") {
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function (param) {
process.stdin.pause();
that.actionFromJson('stopProcessId', param, commander, 'pipe', (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
})
});
}
else if (Common.isConfigFile(process_name))
that.actionFromJson('stopProcessId', process_name, commander, 'file', (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
});
else
that._operate('stopProcessId', process_name, (err, procs) => {
return cb ? cb(err, procs) : this.speedList()
});
}
/**
* Get list of all processes managed
*
* @param {Function} cb Callback
*/
list (opts, cb) {
var that = this;
if (typeof(opts) == 'function') {
cb = opts;
opts = null;
}
that.Client.executeRemote('getMonitorData', {}, function(err, list) {
if (err) {
Common.printError(err);
return cb ? cb(Common.retErr(err)) : that.exitCli(conf.ERROR_EXIT);
}
if (opts && opts.rawArgs && opts.rawArgs.indexOf('--watch') > -1) {
var dayjs = require('dayjs');
function show() {
process.stdout.write('\x1b[2J');
process.stdout.write('\x1b[0f');
console.log('Last refresh: ', dayjs().format());
that.Client.executeRemote('getMonitorData', {}, function(err, list) {
UX.list(list, null);
});
}
show();
setInterval(show, 900);
return false;
}
return cb ? cb(null, list) : that.speedList(null);
});
}
/**
* Kill Daemon
*
* @param {Function} cb Callback
*/
killDaemon (cb) {
process.env.PM2_STATUS = 'stopping'
var that = this;
that.Client.executeRemote('notifyKillPM2', {}, function() {});
that._operate('deleteProcessId', 'all', function(err, list) {
Common.printOut(conf.PREFIX_MSG + '[v] All Applications Stopped');
process.env.PM2_SILENT = 'false';
that.killAgent(function(err, data) {
if (!err) {
Common.printOut(conf.PREFIX_MSG + '[v] Agent Stopped');
}
that.Client.killDaemon(function(err, res) {
if (err) Common.printError(err);
Common.printOut(conf.PREFIX_MSG + '[v] PM2 Daemon Stopped');
return cb ? cb(err, res) : that.exitCli(conf.SUCCESS_EXIT);
});
});
})
}
kill (cb) {
this.killDaemon(cb);
}
/////////////////////
// Private methods //
/////////////////////
/**
* Method to START / RESTART a script
*
* @private
* @param {string} script script name (will be resolved according to location)
*/
_startScript (script, opts, cb) {
if (typeof opts == "function") {
cb = opts;
opts = {};
}
var that = this;
/**
* Commander.js tricks
*/
var app_conf = Config.filterOptions(opts);
var appConf = {};
if (typeof app_conf.name == 'function')
delete app_conf.name;
delete app_conf.args;
// Retrieve arguments via -- <args>
var argsIndex;
if (opts.rawArgs && (argsIndex = opts.rawArgs.indexOf('--')) >= 0)
app_conf.args = opts.rawArgs.slice(argsIndex + 1);
else if (opts.scriptArgs)
app_conf.args = opts.scriptArgs;
app_conf.script = script;
if(!app_conf.namespace)
app_conf.namespace = 'default';
if ((appConf = Common.verifyConfs(app_conf)) instanceof Error) {
Common.err(appConf)
return cb ? cb(Common.retErr(appConf)) : that.exitCli(conf.ERROR_EXIT);
}
app_conf = appConf[0];
if (opts.watchDelay) {
if (typeof opts.watchDelay === "string" && opts.watchDelay.indexOf("ms") !== -1)
app_conf.watch_delay = parseInt(opts.watchDelay);
else {
app_conf.watch_delay = parseFloat(opts.watchDelay) * 1000;
}
}
var mas = [];
if(typeof opts.ext != 'undefined')
hf.make_available_extension(opts, mas); // for -e flag
mas.length > 0 ? app_conf.ignore_watch = mas : 0;
/**
* If -w option, write configuration to configuration.json file
*/
if (app_conf.write) {
var dst_path = path.join(process.env.PWD || process.cwd(), app_conf.name + '-pm2.json');
Common.printOut(conf.PREFIX_MSG + 'Writing configuration to', chalk.blue(dst_path));
// pretty JSON
try {
fs.writeFileSync(dst_path, JSON.stringify(app_conf, null, 2));
} catch (e) {
console.error(e.stack || e);
}
}
series([
restartExistingProcessName,
restartExistingNameSpace,
restartExistingProcessId,
restartExistingProcessPathOrStartNew
], function(err, data) {
if (err instanceof Error)
return cb ? cb(err) : that.exitCli(conf.ERROR_EXIT);
var ret = {};
data.forEach(function(_dt) {
if (_dt !== undefined)
ret = _dt;
});
return cb ? cb(null, ret) : that.speedList();
});
/**
* If start <app_name> start/restart application
*/
function restartExistingProcessName(cb) {
if (!isNaN(script) ||
(typeof script === 'string' && script.indexOf('/') != -1) ||
(typeof script === 'string' && path.extname(script) !== ''))
return cb(null);
that.Client.getProcessIdByName(script, function(err, ids) {
if (err && cb) return cb(err);
if (ids.length > 0) {
that._operate('restartProcessId', script, opts, function(err, list) {
if (err) return cb(err);
Common.printOut(conf.PREFIX_MSG + 'Process successfully started');
return cb(true, list);
});
}
else return cb(null);
});
}
/**
* If start <namespace> start/restart namespace
*/
function restartExistingNameSpace(cb) {
if (!isNaN(script) ||
(typeof script === 'string' && script.indexOf('/') != -1) ||
(typeof script === 'string' && path.extname(script) !== ''))
return cb(null);
if (script !== 'all') {
that.Client.getProcessIdsByNamespace(script, function (err, ids) {
if (err && cb) return cb(err);
if (ids.length > 0) {
that._operate('restartProcessId', script, opts, function (err, list) {
if (err) return cb(err);
Common.printOut(conf.PREFIX_MSG + 'Process successfully started');
return cb(true, list);
});
}
else return cb(null);
});
}
else {
that._operate('restartProcessId', 'all', function(err, list) {
if (err) return cb(err);
Common.printOut(conf.PREFIX_MSG + 'Process successfully started');
return cb(true, list);
});
}
}
function restartExistingProcessId(cb) {
if (isNaN(script)) return cb(null);
that._operate('restartProcessId', script, opts, function(err, list) {
if (err) return cb(err);
Common.printOut(conf.PREFIX_MSG + 'Process successfully started');
return cb(true, list);
});
}
/**
* Restart a process with the same full path
* Or start it
*/
function restartExistingProcessPathOrStartNew(cb) {
that.Client.executeRemote('getMonitorData', {}, function(err, procs) {
if (err) return cb ? cb(new Error(err)) : that.exitCli(conf.ERROR_EXIT);
var full_path = path.resolve(that.cwd, script);
var managed_script = null;
procs.forEach(function(proc) {
if (proc.pm2_env.pm_exec_path == full_path &&
proc.pm2_env.name == app_conf.name)
managed_script = proc;
});
if (managed_script &&
(managed_script.pm2_env.status == conf.STOPPED_STATUS ||
managed_script.pm2_env.status == conf.STOPPING_STATUS ||
managed_script.pm2_env.status == conf.ERRORED_STATUS)) {
// Restart process if stopped
var app_name = managed_script.pm2_env.name;
that._operate('restartProcessId', app_name, opts, function(err, list) {
if (err) return cb ? cb(new Error(err)) : that.exitCli(conf.ERROR_EXIT);
Common.printOut(conf.PREFIX_MSG + 'Process successfully started');
return cb(true, list);
});
return false;
}
else if (managed_script && !opts.force) {
Common.err('Script already launched, add -f option to force re-execution');
return cb(new Error('Script already launched'));
}
var resolved_paths = null;
try {
resolved_paths = Common.resolveAppAttributes({
cwd : that.cwd,
pm2_home : that.pm2_home
}, app_conf);
} catch(e) {
Common.err(e.message);
return cb(Common.retErr(e));
}
Common.printOut(conf.PREFIX_MSG + 'Starting %s in %s (%d instance' + (resolved_paths.instances > 1 ? 's' : '') + ')',
resolved_paths.pm_exec_path, resolved_paths.exec_mode, resolved_paths.instances);
if (!resolved_paths.env) resolved_paths.env = {};
// Set PM2 HOME in case of child process using PM2 API
resolved_paths.env['PM2_HOME'] = that.pm2_home;
var additional_env = Modularizer.getAdditionalConf(resolved_paths.name);
Object.assign(resolved_paths.env, additional_env);
// Is KM linked?
resolved_paths.km_link = that.gl_is_km_linked;
that.Client.executeRemote('prepare', resolved_paths, function(err, data) {
if (err) {
Common.printError(conf.PREFIX_MSG_ERR + 'Error while launching application', err.stack || err);
return cb(Common.retErr(err));
}
Common.printOut(conf.PREFIX_MSG + 'Done.');
return cb(true, data);
});
return false;
});
}
}
/**
* Method to start/restart/reload processes from a JSON file
* It will start app not started
* Can receive only option to skip applications
*
* @private
*/
_startJson (file, opts, action, pipe, cb) {
var config = {};
var appConf = {};
var staticConf = [];
var deployConf = {};
var apps_info = [];
var that = this;
/**
* Get File configuration
*/
if (typeof(cb) === 'undefined' && typeof(pipe) === 'function') {
cb = pipe;
}
if (typeof(file) === 'object') {
config = file;
} else if (pipe === 'pipe') {
config = Common.parseConfig(file, 'pipe');
} else {
var data = null;
var isAbsolute = path.isAbsolute(file)
var file_path = isAbsolute ? file : path.join(that.cwd, file);
debug('Resolved filepath %s', file_path);
try {
data = fs.readFileSync(file_path);
} catch(e) {
Common.printError(conf.PREFIX_MSG_ERR + 'File ' + file +' not found');
return cb ? cb(Common.retErr(e)) : that.exitCli(conf.ERROR_EXIT);
}
try {
config = Common.parseConfig(data, file);
} catch(e) {
Common.printError(conf.PREFIX_MSG_ERR + 'File ' + file + ' malformated');
console.error(e);
return cb ? cb(Common.retErr(e)) : that.exitCli(conf.ERROR_EXIT);
}
}
/**
* Alias some optional fields
*/
if (config.deploy)
deployConf = config.deploy;
if (config.static)
staticConf = config.static;
if (config.apps)
appConf = config.apps;
else if (config.pm2)
appConf = config.pm2;
else
appConf = config;
if (!Array.isArray(appConf))
appConf = [appConf];
if ((appConf = Common.verifyConfs(appConf)) instanceof Error)
return cb ? cb(appConf) : that.exitCli(conf.ERROR_EXIT);
process.env.PM2_JSON_PROCESSING = true;
// Get App list
var apps_name = [];
var proc_list = {};
// Add statics to apps
staticConf.forEach(function(serve) {
appConf.push({
name: serve.name ? serve.name : `static-page-server-${serve.port}`,
script: path.resolve(__dirname, 'API', 'Serve.js'),
env: {
PM2_SERVE_PORT: serve.port,
PM2_SERVE_HOST: serve.host,
PM2_SERVE_PATH: serve.path,
PM2_SERVE_SPA: serve.spa,
PM2_SERVE_DIRECTORY: serve.directory,
PM2_SERVE_BASIC_AUTH: serve.basic_auth !== undefined,
PM2_SERVE_BASIC_AUTH_USERNAME: serve.basic_auth ? serve.basic_auth.username : null,
PM2_SERVE_BASIC_AUTH_PASSWORD: serve.basic_auth ? serve.basic_auth.password : null,
PM2_SERVE_MONITOR: serve.monitor
}
});
});
// Here we pick only the field we want from the CLI when starting a JSON
appConf.forEach(function(app) {
if (!app.env) { app.env = {}; }
app.env.io = app.io;
// --only <app>
if (opts.only) {
var apps = opts.only.split(/,| /)
if (apps.indexOf(app.name) == -1)
return false
}
// Namespace
if (!app.namespace) {
if (opts.namespace)
app.namespace = opts.namespace;
else