embark/lib/dashboard/console.js

78 lines
2.4 KiB
JavaScript
Raw Normal View History

let utils = require('../utils/utils.js');
let RunCode = require('../core/runCode.js');
2016-09-23 04:31:09 +00:00
2017-03-30 11:12:39 +00:00
class Console {
constructor(options) {
this.plugins = options.plugins;
this.version = options.version;
2017-07-06 23:50:36 +00:00
this.contractsConfig = options.contractsConfig;
2016-09-25 01:23:57 +00:00
}
2017-03-30 11:12:39 +00:00
runCode(code) {
2017-07-06 23:50:36 +00:00
RunCode.doEval(code); // jshint ignore:line
}
2017-03-30 11:12:39 +00:00
processEmbarkCmd (cmd) {
if (cmd === 'help') {
let helpText = [
'Welcome to Embark ' + this.version,
'',
'possible commands are:',
2017-07-06 23:50:36 +00:00
'versions - display versions in use for libraries and tools like web3 and solc',
2017-03-30 11:12:39 +00:00
// TODO: only if the blockchain is actually active!
// will need to pass te current embark state here
'web3 - instantiated web3.js object configured to the current environment',
2017-12-16 23:16:53 +00:00
'quit - to immediatly exit (alias: exit)',
2017-03-30 11:12:39 +00:00
'',
'The web3 object and the interfaces for the deployed contracts and their methods are also available'
];
return helpText.join('\n');
2017-07-06 23:50:36 +00:00
} else if (cmd === 'versions') {
let solcVersionInConfig = this.contractsConfig.versions.solc;
let web3VersionInConfig = this.contractsConfig.versions["web3.js"];
2017-12-16 23:15:44 +00:00
let ipfsApiVersion = require('../../package.json').dependencies["ipfs-api"];
2017-07-06 23:50:36 +00:00
let text = [
'versions in use:',
'solc: ' + solcVersionInConfig,
2017-12-16 23:15:44 +00:00
'web3.js: ' + web3VersionInConfig,
'ipfs-api: ' + ipfsApiVersion
2017-07-07 11:46:06 +00:00
];
2017-07-06 23:50:36 +00:00
return text.join('\n');
2017-12-14 00:31:16 +00:00
} else if (['quit', 'exit', 'sair', 'sortir'].indexOf(cmd) >= 0) {
2017-03-30 11:12:39 +00:00
utils.exit();
}
return false;
}
2016-09-23 04:31:09 +00:00
2017-03-30 11:12:39 +00:00
executeCmd(cmd, callback) {
2017-07-07 11:46:06 +00:00
let plugin, pluginOutput;
let plugins = this.plugins.getPluginsFor('console');
for (let i = 0; i < plugins.length; i++) {
2017-03-30 11:12:39 +00:00
plugin = plugins[i];
pluginOutput = plugin.runCommands(cmd, {});
if (pluginOutput !== false && pluginOutput !== 'false') return callback(pluginOutput);
}
let output = this.processEmbarkCmd(cmd);
if (output) {
return callback(output);
}
try {
let result = RunCode.doEval(cmd);
return callback(result);
}
catch (e) {
if (e.message.indexOf('not defined') > 0) {
return callback(("error: " + e.message).red + ("\nType " + "help".bold + " to see the list of available commands").cyan);
} else {
return callback(e.message);
}
}
2016-09-23 04:31:09 +00:00
}
2017-03-30 11:12:39 +00:00
}
2016-09-23 04:31:09 +00:00
module.exports = Console;