mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(config) rm iife
This commit is contained in:
parent
4b6fc40588
commit
96dd511773
2 changed files with 174 additions and 176 deletions
|
|
@ -1,194 +1,192 @@
|
|||
(function() {
|
||||
'use strict';
|
||||
'use strict';
|
||||
|
||||
var DIR_SERVER = __dirname + '/',
|
||||
DIR_LIB = DIR_SERVER + '../',
|
||||
DIR = DIR_SERVER + '../../',
|
||||
|
||||
var DIR_SERVER = __dirname + '/',
|
||||
DIR_LIB = DIR_SERVER + '../',
|
||||
DIR = DIR_SERVER + '../../',
|
||||
|
||||
path = require('path'),
|
||||
|
||||
exit = require(DIR_SERVER + 'exit'),
|
||||
CloudFunc = require(DIR_LIB + 'cloudfunc'),
|
||||
|
||||
pipe = require('pipe-io'),
|
||||
ponse = require('ponse'),
|
||||
jonny = require('jonny'),
|
||||
readjson = require('readjson'),
|
||||
writejson = require('writejson'),
|
||||
tryCatch = require('try-catch'),
|
||||
exec = require('execon'),
|
||||
criton = require('criton'),
|
||||
|
||||
HOME = require('os-homedir')(),
|
||||
|
||||
apiURL = CloudFunc.apiURL,
|
||||
|
||||
ConfigPath = path.join(DIR, 'json/config.json'),
|
||||
ConfigHome = path.join(HOME, '.cloudcmd.json'),
|
||||
|
||||
error,
|
||||
config;
|
||||
path = require('path'),
|
||||
|
||||
exit = require(DIR_SERVER + 'exit'),
|
||||
CloudFunc = require(DIR_LIB + 'cloudfunc'),
|
||||
|
||||
pipe = require('pipe-io'),
|
||||
ponse = require('ponse'),
|
||||
jonny = require('jonny'),
|
||||
readjson = require('readjson'),
|
||||
writejson = require('writejson'),
|
||||
tryCatch = require('try-catch'),
|
||||
exec = require('execon'),
|
||||
criton = require('criton'),
|
||||
|
||||
HOME = require('os-homedir')(),
|
||||
|
||||
apiURL = CloudFunc.apiURL,
|
||||
|
||||
ConfigPath = path.join(DIR, 'json/config.json'),
|
||||
ConfigHome = path.join(HOME, '.cloudcmd.json'),
|
||||
|
||||
error,
|
||||
config;
|
||||
|
||||
error = tryCatch(function() {
|
||||
config = readjson.sync(ConfigHome);
|
||||
});
|
||||
|
||||
if (error) {
|
||||
if (error.code !== 'ENOENT')
|
||||
console.error('cloudcmd --config ~/.cloudcmd.json:', error.message);
|
||||
|
||||
error = tryCatch(function() {
|
||||
config = readjson.sync(ConfigHome);
|
||||
config = readjson.sync(ConfigPath);
|
||||
});
|
||||
|
||||
if (error) {
|
||||
if (error.code !== 'ENOENT')
|
||||
console.error('cloudcmd --config ~/.cloudcmd.json:', error.message);
|
||||
if (error)
|
||||
exit('cloudcmd --config', ConfigPath + ':', error.message);
|
||||
}
|
||||
|
||||
module.exports = manage;
|
||||
module.exports.save = save;
|
||||
module.exports.middle = middle;
|
||||
module.exports.listen = function(socket, authCheck) {
|
||||
if (!socket)
|
||||
throw Error('socket could not be empty!');
|
||||
|
||||
if (authCheck && typeof authCheck !== 'function')
|
||||
throw Error('authCheck should be function!');
|
||||
|
||||
listen(socket, authCheck);
|
||||
|
||||
return middle;
|
||||
};
|
||||
|
||||
function manage(key, value) {
|
||||
var result;
|
||||
|
||||
if (key)
|
||||
if (value === undefined)
|
||||
result = config[key];
|
||||
else
|
||||
config[key] = value;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function save(callback) {
|
||||
writejson(ConfigHome, config, callback);
|
||||
}
|
||||
|
||||
function listen(sock, authCheck) {
|
||||
var prefix = manage('prefix');
|
||||
|
||||
sock.of(prefix + '/config')
|
||||
.on('connection', function(socket) {
|
||||
var connect = exec.with(connection, socket);
|
||||
|
||||
error = tryCatch(function() {
|
||||
config = readjson.sync(ConfigPath);
|
||||
exec.if(!manage('auth'), connect, function(fn) {
|
||||
authCheck(socket, fn);
|
||||
});
|
||||
|
||||
if (error)
|
||||
exit('cloudcmd --config', ConfigPath + ':', error.message);
|
||||
}
|
||||
|
||||
module.exports = manage;
|
||||
module.exports.save = save;
|
||||
module.exports.middle = middle;
|
||||
module.exports.listen = function(socket, authCheck) {
|
||||
if (!socket)
|
||||
throw Error('socket could not be empty!');
|
||||
|
||||
if (authCheck && typeof authCheck !== 'function')
|
||||
throw Error('authCheck should be function!');
|
||||
|
||||
listen(socket, authCheck);
|
||||
|
||||
return middle;
|
||||
};
|
||||
|
||||
function manage(key, value) {
|
||||
var result;
|
||||
|
||||
if (key)
|
||||
if (value === undefined)
|
||||
result = config[key];
|
||||
else
|
||||
config[key] = value;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function save(callback) {
|
||||
writejson(ConfigHome, config, callback);
|
||||
}
|
||||
|
||||
function listen(sock, authCheck) {
|
||||
var prefix = manage('prefix');
|
||||
|
||||
sock.of(prefix + '/config')
|
||||
.on('connection', function(socket) {
|
||||
var connect = exec.with(connection, socket);
|
||||
|
||||
exec.if(!manage('auth'), connect, function(fn) {
|
||||
authCheck(socket, fn);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function connection(socket) {
|
||||
socket.emit('config', config);
|
||||
|
||||
socket.on('message', function(json) {
|
||||
var data;
|
||||
|
||||
if (typeof json !== 'object') {
|
||||
socket.emit('err', 'Error: Wrong data type!');
|
||||
} else {
|
||||
cryptoPass(json);
|
||||
|
||||
data = traverse(json);
|
||||
|
||||
save(function(error) {
|
||||
if (error) {
|
||||
socket.emit('err', error.message);
|
||||
} else {
|
||||
socket.broadcast.send(json);
|
||||
socket.send(json);
|
||||
socket.emit('log', data);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function connection(socket) {
|
||||
socket.emit('config', config);
|
||||
|
||||
function middle(req, res, next) {
|
||||
if (req.url !== apiURL + '/config') {
|
||||
next();
|
||||
socket.on('message', function(json) {
|
||||
var data;
|
||||
|
||||
if (typeof json !== 'object') {
|
||||
socket.emit('err', 'Error: Wrong data type!');
|
||||
} else {
|
||||
switch(req.method) {
|
||||
case 'GET':
|
||||
get(req, res, next);
|
||||
break;
|
||||
|
||||
case 'PATCH':
|
||||
patch(req, res, next);
|
||||
break;
|
||||
|
||||
default:
|
||||
next();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function get(req, res) {
|
||||
var data = jonny.stringify(config);
|
||||
|
||||
ponse.send(data, {
|
||||
name : 'config.json',
|
||||
request : req,
|
||||
response: res,
|
||||
cache : false
|
||||
});
|
||||
}
|
||||
|
||||
function patch(req, res, callback) {
|
||||
var options = {
|
||||
name : 'config.json',
|
||||
request : req,
|
||||
response: res,
|
||||
cache : false
|
||||
};
|
||||
|
||||
pipe.getBody(req, function(error, body) {
|
||||
var data = '',
|
||||
json = jonny.parse(body) || {};
|
||||
|
||||
if (error)
|
||||
callback(error);
|
||||
else
|
||||
cryptoPass(json);
|
||||
cryptoPass(json);
|
||||
|
||||
data = traverse(json);
|
||||
|
||||
save(function(error) {
|
||||
if (error)
|
||||
ponse.sendError(error, options);
|
||||
else
|
||||
ponse.send(data, options);
|
||||
if (error) {
|
||||
socket.emit('err', error.message);
|
||||
} else {
|
||||
socket.broadcast.send(json);
|
||||
socket.send(json);
|
||||
socket.emit('log', data);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function middle(req, res, next) {
|
||||
if (req.url !== apiURL + '/config') {
|
||||
next();
|
||||
} else {
|
||||
switch(req.method) {
|
||||
case 'GET':
|
||||
get(req, res, next);
|
||||
break;
|
||||
|
||||
case 'PATCH':
|
||||
patch(req, res, next);
|
||||
break;
|
||||
|
||||
default:
|
||||
next();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function get(req, res) {
|
||||
var data = jonny.stringify(config);
|
||||
|
||||
ponse.send(data, {
|
||||
name : 'config.json',
|
||||
request : req,
|
||||
response: res,
|
||||
cache : false
|
||||
});
|
||||
}
|
||||
|
||||
function patch(req, res, callback) {
|
||||
var options = {
|
||||
name : 'config.json',
|
||||
request : req,
|
||||
response: res,
|
||||
cache : false
|
||||
};
|
||||
|
||||
pipe.getBody(req, function(error, body) {
|
||||
var data = '',
|
||||
json = jonny.parse(body) || {};
|
||||
|
||||
if (error)
|
||||
callback(error);
|
||||
else
|
||||
cryptoPass(json);
|
||||
|
||||
data = traverse(json);
|
||||
|
||||
save(function(error) {
|
||||
if (error)
|
||||
ponse.sendError(error, options);
|
||||
else
|
||||
ponse.send(data, options);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function traverse(json) {
|
||||
var data;
|
||||
|
||||
function traverse(json) {
|
||||
var data;
|
||||
|
||||
Object.keys(json).forEach(function(name) {
|
||||
data = CloudFunc.formatMsg('config', name);
|
||||
manage(name, json[name]);
|
||||
});
|
||||
|
||||
return data;
|
||||
}
|
||||
Object.keys(json).forEach(function(name) {
|
||||
data = CloudFunc.formatMsg('config', name);
|
||||
manage(name, json[name]);
|
||||
});
|
||||
|
||||
function cryptoPass(json) {
|
||||
var algo = manage('algo');
|
||||
|
||||
if (json && json.password)
|
||||
json.password = criton(json.password, algo);
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
function cryptoPass(json) {
|
||||
var algo = manage('algo');
|
||||
|
||||
})();
|
||||
if (json && json.password)
|
||||
json.password = criton(json.password, algo);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@
|
|||
"nsp": "^2.2.1",
|
||||
"nyc": "^8.1.0",
|
||||
"place": "^1.1.4",
|
||||
"pullout": "^1.0.0",
|
||||
"pullout": "^1.0.1",
|
||||
"recess": "^1.1.9",
|
||||
"redrun": "^5.0.0",
|
||||
"request": "^2.76.0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue