mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(cloudcmd) rm " "
This commit is contained in:
parent
f69036f5a3
commit
2acd7c30f4
1 changed files with 190 additions and 192 deletions
382
bin/cloudcmd.js
382
bin/cloudcmd.js
|
|
@ -1,203 +1,201 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
(function() {
|
||||
'use strict';
|
||||
'use strict';
|
||||
|
||||
var Info = require('../package'),
|
||||
DIR = __dirname + '/../',
|
||||
DIR_LIB = DIR + 'lib/',
|
||||
DIR_SERVER = DIR_LIB + 'server/',
|
||||
|
||||
exit = require(DIR_SERVER + 'exit'),
|
||||
config = require(DIR_SERVER + 'config'),
|
||||
|
||||
options,
|
||||
argv = process.argv,
|
||||
|
||||
args = require('minimist')(argv.slice(2), {
|
||||
string: [
|
||||
'port',
|
||||
'password',
|
||||
'username',
|
||||
'config',
|
||||
'editor',
|
||||
'root',
|
||||
'prefix'
|
||||
],
|
||||
boolean: [
|
||||
'auth',
|
||||
'repl',
|
||||
'save',
|
||||
'server',
|
||||
'online',
|
||||
'open',
|
||||
'minify',
|
||||
'progress',
|
||||
'progress-of-copying',
|
||||
'html-dialogs',
|
||||
'one-panel-mode'
|
||||
],
|
||||
default: {
|
||||
server : true,
|
||||
auth : config('auth'),
|
||||
port : config('port'),
|
||||
minify : config('minify'),
|
||||
online : config('online'),
|
||||
open : config('open'),
|
||||
editor : config('editor') || 'edward',
|
||||
username : config('username'),
|
||||
root : config('root') || '/',
|
||||
prefix : config('prefix') || '',
|
||||
progress : config('progress') || config('progressOfCopying'),
|
||||
|
||||
'html-dialogs' : config('htmlDialogs'),
|
||||
'one-panel-mode': config('onePanelMode'),
|
||||
},
|
||||
alias: {
|
||||
v: 'version',
|
||||
h: 'help',
|
||||
p: 'password',
|
||||
o: 'online',
|
||||
u: 'username',
|
||||
s: 'save',
|
||||
a: 'auth',
|
||||
c: 'config'
|
||||
},
|
||||
unknown: function(cmd) {
|
||||
exit('\'%s\' is not a cloudcmd option. See \'cloudcmd --help\'.', cmd);
|
||||
}
|
||||
});
|
||||
|
||||
if (args.version) {
|
||||
version();
|
||||
} else if (args.help) {
|
||||
help();
|
||||
} else {
|
||||
if (args.repl)
|
||||
repl();
|
||||
|
||||
var Info = require('../package'),
|
||||
DIR = __dirname + '/../',
|
||||
DIR_LIB = DIR + 'lib/',
|
||||
DIR_SERVER = DIR_LIB + 'server/',
|
||||
checkUpdate();
|
||||
|
||||
exit = require(DIR_SERVER + 'exit'),
|
||||
config = require(DIR_SERVER + 'config'),
|
||||
port(args.port);
|
||||
|
||||
options,
|
||||
argv = process.argv,
|
||||
config('auth', args.auth);
|
||||
config('online', args.online);
|
||||
config('open', args.open);
|
||||
config('minify', args.minify);
|
||||
config('username', args.username);
|
||||
config('progress', args.progress);
|
||||
config('prefix', args.prefix);
|
||||
config('root', args.root);
|
||||
config('htmlDialogs', args['html-dialogs']);
|
||||
config('onePanelMode', args['one-panel-mode']);
|
||||
|
||||
args = require('minimist')(argv.slice(2), {
|
||||
string: [
|
||||
'port',
|
||||
'password',
|
||||
'username',
|
||||
'config',
|
||||
'editor',
|
||||
'root',
|
||||
'prefix'
|
||||
],
|
||||
boolean: [
|
||||
'auth',
|
||||
'repl',
|
||||
'save',
|
||||
'server',
|
||||
'online',
|
||||
'open',
|
||||
'minify',
|
||||
'progress',
|
||||
'progress-of-copying',
|
||||
'html-dialogs',
|
||||
'one-panel-mode'
|
||||
],
|
||||
default: {
|
||||
server : true,
|
||||
auth : config('auth'),
|
||||
port : config('port'),
|
||||
minify : config('minify'),
|
||||
online : config('online'),
|
||||
open : config('open'),
|
||||
editor : config('editor') || 'edward',
|
||||
username : config('username'),
|
||||
root : config('root') || '/',
|
||||
prefix : config('prefix') || '',
|
||||
progress : config('progress') || config('progressOfCopying'),
|
||||
|
||||
'html-dialogs' : config('htmlDialogs'),
|
||||
'one-panel-mode': config('onePanelMode'),
|
||||
},
|
||||
alias: {
|
||||
v: 'version',
|
||||
h: 'help',
|
||||
p: 'password',
|
||||
o: 'online',
|
||||
u: 'username',
|
||||
s: 'save',
|
||||
a: 'auth',
|
||||
c: 'config'
|
||||
},
|
||||
unknown: function(cmd) {
|
||||
exit('\'%s\' is not a cloudcmd option. See \'cloudcmd --help\'.', cmd);
|
||||
}
|
||||
readConfig(args.config);
|
||||
|
||||
options = {
|
||||
root: args.root,
|
||||
editor: args.editor,
|
||||
prefix: args.prefix
|
||||
};
|
||||
|
||||
if (args.password)
|
||||
config('password', getPassword(args.password));
|
||||
|
||||
if (!args.save)
|
||||
start(options);
|
||||
else
|
||||
config.save(function() {
|
||||
start(options);
|
||||
});
|
||||
}
|
||||
|
||||
function getPassword(password) {
|
||||
var criton = require('criton');
|
||||
|
||||
return criton(password, config('algo'));
|
||||
}
|
||||
|
||||
function version() {
|
||||
console.log('v' + Info.version);
|
||||
}
|
||||
|
||||
function start(config) {
|
||||
var SERVER = '../lib/server';
|
||||
|
||||
if (args.server)
|
||||
require(SERVER)(config);
|
||||
}
|
||||
|
||||
function port(arg) {
|
||||
var number = parseInt(arg, 10);
|
||||
|
||||
if (!isNaN(number))
|
||||
config('port', number);
|
||||
else
|
||||
exit('cloudcmd --port: should be a number');
|
||||
}
|
||||
|
||||
function readConfig(name) {
|
||||
var fs, data, error, tryCatch;
|
||||
|
||||
if (name) {
|
||||
fs = require('fs');
|
||||
tryCatch = require('try-catch');
|
||||
error = tryCatch(function() {
|
||||
var json = fs.readFileSync(name);
|
||||
data = JSON.parse(json);
|
||||
});
|
||||
|
||||
if (error)
|
||||
exit(error.message);
|
||||
else
|
||||
Object.keys(data).forEach(function(item) {
|
||||
config(item, data[item]);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function help() {
|
||||
var bin = require('../json/help'),
|
||||
usage = 'Usage: cloudcmd [options]',
|
||||
url = Info.homepage;
|
||||
|
||||
console.log(usage);
|
||||
console.log('Options:');
|
||||
|
||||
Object.keys(bin).forEach(function(name) {
|
||||
console.log(' %s %s', name, bin[name]);
|
||||
});
|
||||
|
||||
if (args.version) {
|
||||
version();
|
||||
} else if (args.help) {
|
||||
help();
|
||||
} else {
|
||||
if (args.repl)
|
||||
repl();
|
||||
|
||||
checkUpdate();
|
||||
|
||||
port(args.port);
|
||||
|
||||
config('auth', args.auth);
|
||||
config('online', args.online);
|
||||
config('open', args.open);
|
||||
config('minify', args.minify);
|
||||
config('username', args.username);
|
||||
config('progress', args.progress);
|
||||
config('prefix', args.prefix);
|
||||
config('root', args.root);
|
||||
config('htmlDialogs', args['html-dialogs']);
|
||||
config('onePanelMode', args['one-panel-mode']);
|
||||
|
||||
readConfig(args.config);
|
||||
|
||||
options = {
|
||||
root: args.root,
|
||||
editor: args.editor,
|
||||
prefix: args.prefix
|
||||
};
|
||||
|
||||
if (args.password)
|
||||
config('password', getPassword(args.password));
|
||||
|
||||
if (!args.save)
|
||||
start(options);
|
||||
else
|
||||
config.save(function() {
|
||||
start(options);
|
||||
});
|
||||
}
|
||||
console.log('\nGeneral help using Cloud Commander: <%s>', url);
|
||||
}
|
||||
|
||||
function repl() {
|
||||
console.log('REPL mode enabled (telnet localhost 1337)');
|
||||
require(DIR_LIB + '/server/repl');
|
||||
}
|
||||
|
||||
function checkUpdate() {
|
||||
var load = require('package-json'),
|
||||
chalk = require('chalk'),
|
||||
rendy = require('rendy');
|
||||
|
||||
function getPassword(password) {
|
||||
var criton = require('criton');
|
||||
|
||||
return criton(password, config('algo'));
|
||||
}
|
||||
|
||||
function version() {
|
||||
console.log('v' + Info.version);
|
||||
}
|
||||
|
||||
function start(config) {
|
||||
var SERVER = '../lib/server';
|
||||
|
||||
if (args.server)
|
||||
require(SERVER)(config);
|
||||
}
|
||||
|
||||
function port(arg) {
|
||||
var number = parseInt(arg, 10);
|
||||
|
||||
if (!isNaN(number))
|
||||
config('port', number);
|
||||
else
|
||||
exit('cloudcmd --port: should be a number');
|
||||
}
|
||||
|
||||
function readConfig(name) {
|
||||
var fs, data, error, tryCatch;
|
||||
|
||||
if (name) {
|
||||
fs = require('fs');
|
||||
tryCatch = require('try-catch');
|
||||
error = tryCatch(function() {
|
||||
var json = fs.readFileSync(name);
|
||||
data = JSON.parse(json);
|
||||
});
|
||||
load(Info.name, 'latest').then(function(data) {
|
||||
var latest,
|
||||
current,
|
||||
version = data.version;
|
||||
|
||||
if (error)
|
||||
exit(error.message);
|
||||
else
|
||||
Object.keys(data).forEach(function(item) {
|
||||
config(item, data[item]);
|
||||
});
|
||||
if (version !== Info.version) {
|
||||
latest = rendy('update available: {{ latest }}', {
|
||||
latest: chalk.green.bold('v' + version),
|
||||
});
|
||||
|
||||
current = chalk.dim(rendy('(current: v{{ current }})', {
|
||||
current: Info.version
|
||||
}));
|
||||
|
||||
console.log('%s %s', latest, current);
|
||||
}
|
||||
}
|
||||
|
||||
function help() {
|
||||
var bin = require('../json/help'),
|
||||
usage = 'Usage: cloudcmd [options]',
|
||||
url = Info.homepage;
|
||||
|
||||
console.log(usage);
|
||||
console.log('Options:');
|
||||
|
||||
Object.keys(bin).forEach(function(name) {
|
||||
console.log(' %s %s', name, bin[name]);
|
||||
});
|
||||
|
||||
console.log('\nGeneral help using Cloud Commander: <%s>', url);
|
||||
}
|
||||
|
||||
function repl() {
|
||||
console.log('REPL mode enabled (telnet localhost 1337)');
|
||||
require(DIR_LIB + '/server/repl');
|
||||
}
|
||||
|
||||
function checkUpdate() {
|
||||
var load = require('package-json'),
|
||||
chalk = require('chalk'),
|
||||
rendy = require('rendy');
|
||||
|
||||
load(Info.name, 'latest').then(function(data) {
|
||||
var latest,
|
||||
current,
|
||||
version = data.version;
|
||||
|
||||
if (version !== Info.version) {
|
||||
latest = rendy('update available: {{ latest }}', {
|
||||
latest: chalk.green.bold('v' + version),
|
||||
});
|
||||
|
||||
current = chalk.dim(rendy('(current: v{{ current }})', {
|
||||
current: Info.version
|
||||
}));
|
||||
|
||||
console.log('%s %s', latest, current);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
})();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue