feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
212
api.hyungi.net/node_modules/pm2/lib/API/Configuration.js
generated
vendored
Normal file
212
api.hyungi.net/node_modules/pm2/lib/API/Configuration.js
generated
vendored
Normal file
@@ -0,0 +1,212 @@
|
||||
|
||||
var Common = require('../Common.js');
|
||||
var cst = require('../../constants.js');
|
||||
var UX = require('./UX');
|
||||
var chalk = require('chalk');
|
||||
var Configuration = require('../Configuration.js');
|
||||
|
||||
module.exports = function(CLI) {
|
||||
|
||||
CLI.prototype.get = function(key, cb) {
|
||||
var that = this;
|
||||
|
||||
if (!key || key == 'all') {
|
||||
displayConf(function(err, data) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
return false;
|
||||
}
|
||||
Configuration.get(key, function(err, data) {
|
||||
if (err) {
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
}
|
||||
// pm2 conf module-name
|
||||
if (key.indexOf(':') === -1 && key.indexOf('.') === -1) {
|
||||
displayConf(key, function() {
|
||||
console.log('Modules configuration. Copy/Paste line to edit values.')
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT)
|
||||
});
|
||||
return false;
|
||||
}
|
||||
// pm2 conf module-name:key
|
||||
var module_name, key_name;
|
||||
|
||||
if (key.indexOf(':') > -1) {
|
||||
module_name = key.split(':')[0];
|
||||
key_name = key.split(':')[1];
|
||||
} else if (key.indexOf('.') > -1) {
|
||||
module_name = key.split('.')[0];
|
||||
key_name = key.split('.')[1];
|
||||
}
|
||||
|
||||
Common.printOut('Value for module ' + chalk.blue(module_name), 'key ' + chalk.blue(key_name) + ': ' + chalk.bold.green(data));
|
||||
|
||||
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
};
|
||||
|
||||
CLI.prototype.set = function(key, value, cb) {
|
||||
var that = this;
|
||||
|
||||
if (!key) {
|
||||
interactiveConfigEdit(function(err) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set value
|
||||
*/
|
||||
Configuration.set(key, value, function(err) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
|
||||
var values = [];
|
||||
|
||||
if (key.indexOf('.') > -1)
|
||||
values = key.split('.');
|
||||
|
||||
if (key.indexOf(':') > -1)
|
||||
values = key.split(':');
|
||||
|
||||
if (values && values.length > 1) {
|
||||
// The first element is the app name (module_conf.json)
|
||||
var app_name = values[0];
|
||||
|
||||
process.env.PM2_PROGRAMMATIC = 'true';
|
||||
that.restart(app_name, {
|
||||
updateEnv : true
|
||||
}, function(err, data) {
|
||||
process.env.PM2_PROGRAMMATIC = 'false';
|
||||
if (!err)
|
||||
Common.printOut(cst.PREFIX_MSG + 'Module %s restarted', app_name);
|
||||
Common.log('Setting changed')
|
||||
displayConf(app_name, function() {
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
});
|
||||
return false;
|
||||
}
|
||||
displayConf(null, function() {
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
CLI.prototype.multiset = function(serial, cb) {
|
||||
var that = this;
|
||||
|
||||
Configuration.multiset(serial, function(err, data) {
|
||||
if (err)
|
||||
return cb ? cb({success:false, err:err}) : that.exitCli(cst.ERROR_EXIT);
|
||||
|
||||
var values = [];
|
||||
var key = serial.match(/(?:[^ "]+|"[^"]*")+/g)[0];
|
||||
|
||||
if (key.indexOf('.') > -1)
|
||||
values = key.split('.');
|
||||
|
||||
if (key.indexOf(':') > -1)
|
||||
values = key.split(':');
|
||||
|
||||
if (values && values.length > 1) {
|
||||
// The first element is the app name (module_conf.json)
|
||||
var app_name = values[0];
|
||||
|
||||
process.env.PM2_PROGRAMMATIC = 'true';
|
||||
that.restart(app_name, {
|
||||
updateEnv : true
|
||||
}, function(err, data) {
|
||||
process.env.PM2_PROGRAMMATIC = 'false';
|
||||
if (!err)
|
||||
Common.printOut(cst.PREFIX_MSG + 'Module %s restarted', app_name);
|
||||
displayConf(app_name, function() {
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT)
|
||||
});
|
||||
});
|
||||
return false;
|
||||
}
|
||||
displayConf(app_name, function() {
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT)
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
CLI.prototype.unset = function(key, cb) {
|
||||
var that = this;
|
||||
|
||||
Configuration.unset(key, function(err) {
|
||||
if (err) {
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
}
|
||||
|
||||
displayConf(function() { cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT) });
|
||||
});
|
||||
};
|
||||
|
||||
CLI.prototype.conf = function(key, value, cb) {
|
||||
var that = this;
|
||||
|
||||
if (typeof(value) === 'function') {
|
||||
cb = value;
|
||||
value = null;
|
||||
}
|
||||
|
||||
// If key + value = set
|
||||
if (key && value) {
|
||||
that.set(key, value, function(err) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
}
|
||||
// If only key = get
|
||||
else if (key) {
|
||||
that.get(key, function(err, data) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
}
|
||||
else {
|
||||
interactiveConfigEdit(function(err) {
|
||||
if (err)
|
||||
return cb ? cb(Common.retErr(err)) : that.exitCli(cst.ERROR_EXIT);
|
||||
return cb ? cb(null, {success:true}) : that.exitCli(cst.SUCCESS_EXIT);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
function interactiveConfigEdit(cb) {
|
||||
UX.helpers.openEditor(cst.PM2_MODULE_CONF_FILE, function(err, data) {
|
||||
Common.printOut(chalk.bold('Module configuration (%s) edited.'), cst.PM2_MODULE_CONF_FILE);
|
||||
Common.printOut(chalk.bold('To take changes into account, please restart module related.'), cst.PM2_MODULE_CONF_FILE);
|
||||
if (err)
|
||||
return cb(Common.retErr(err));
|
||||
return cb(null, {success:true});
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Configuration
|
||||
*/
|
||||
function displayConf(target_app, cb) {
|
||||
if (typeof(target_app) == 'function') {
|
||||
cb = target_app;
|
||||
target_app = null;
|
||||
}
|
||||
|
||||
Configuration.getAll(function(err, data) {
|
||||
UX.helpers.dispKeys(data, target_app);
|
||||
return cb();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user