2017-03-29 17:50:05 +00:00
|
|
|
let async = require('async');
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2017-02-22 02:01:38 +00:00
|
|
|
// TODO: make all of this async
|
2017-03-29 17:50:05 +00:00
|
|
|
let GethCommands = function(options) {
|
2016-09-25 06:23:33 +00:00
|
|
|
this.config = options.config;
|
2017-02-20 21:11:27 +00:00
|
|
|
this.env = options.env || 'development';
|
2016-09-25 06:23:33 +00:00
|
|
|
this.name = "Go-Ethereum (https://github.com/ethereum/go-ethereum)";
|
2017-02-18 13:55:33 +00:00
|
|
|
this.geth_bin = this.config.geth_bin || "geth";
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.commonOptions = function() {
|
2017-03-29 17:50:05 +00:00
|
|
|
let config = this.config;
|
|
|
|
let cmd = "";
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2017-02-22 02:01:38 +00:00
|
|
|
cmd += this.determineNetworkType(config);
|
2016-09-25 06:23:33 +00:00
|
|
|
|
|
|
|
if (config.datadir) {
|
|
|
|
cmd += "--datadir=\"" + config.datadir + "\" ";
|
|
|
|
}
|
|
|
|
|
2017-02-20 20:53:55 +00:00
|
|
|
if (config.light) {
|
|
|
|
cmd += "--light ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.fast) {
|
|
|
|
cmd += "--fast ";
|
|
|
|
}
|
|
|
|
|
2016-09-25 06:23:33 +00:00
|
|
|
if (config.account && config.account.password) {
|
|
|
|
cmd += "--password " + config.account.password + " ";
|
|
|
|
}
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
return cmd;
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 02:01:38 +00:00
|
|
|
GethCommands.prototype.determineNetworkType = function(config) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let cmd = "";
|
2017-02-22 02:01:38 +00:00
|
|
|
if (config.networkType === 'testnet') {
|
|
|
|
cmd += "--testnet ";
|
|
|
|
} else if (config.networkType === 'olympic') {
|
|
|
|
cmd += "--olympic ";
|
|
|
|
} else if (config.networkType === 'custom') {
|
|
|
|
cmd += "--networkid " + config.networkId + " ";
|
|
|
|
}
|
|
|
|
return cmd;
|
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.initGenesisCommmand = function() {
|
2017-03-29 17:50:05 +00:00
|
|
|
let config = this.config;
|
|
|
|
let cmd = this.geth_bin + " " + this.commonOptions();
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
if (config.genesisBlock) {
|
|
|
|
cmd += "init \"" + config.genesisBlock + "\" ";
|
2016-09-25 06:23:33 +00:00
|
|
|
}
|
|
|
|
|
2016-10-31 00:08:45 +00:00
|
|
|
return cmd;
|
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.newAccountCommand = function() {
|
2017-02-18 13:55:33 +00:00
|
|
|
return this.geth_bin + " " + this.commonOptions() + "account new ";
|
2016-10-31 00:21:28 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 00:08:45 +00:00
|
|
|
GethCommands.prototype.listAccountsCommand = function() {
|
2017-02-18 13:55:33 +00:00
|
|
|
return this.geth_bin + " " + this.commonOptions() + "account list ";
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 02:04:15 +00:00
|
|
|
GethCommands.prototype.determineRpcOptions = function(config) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let cmd = "";
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-31 00:15:57 +00:00
|
|
|
cmd += "--port " + config.port + " ";
|
2016-09-25 06:23:33 +00:00
|
|
|
cmd += "--rpc ";
|
|
|
|
cmd += "--rpcport " + config.rpcPort + " ";
|
|
|
|
cmd += "--rpcaddr " + config.rpcHost + " ";
|
2016-09-26 00:51:00 +00:00
|
|
|
if (config.rpcCorsDomain) {
|
2016-10-07 11:15:29 +00:00
|
|
|
if (config.rpcCorsDomain === '*') {
|
|
|
|
console.log('==================================');
|
|
|
|
console.log('make sure you know what you are doing');
|
|
|
|
console.log('==================================');
|
|
|
|
}
|
2016-09-26 00:51:00 +00:00
|
|
|
cmd += "--rpccorsdomain=\"" + config.rpcCorsDomain + "\" ";
|
|
|
|
} else {
|
2016-10-07 11:15:29 +00:00
|
|
|
console.log('==================================');
|
|
|
|
console.log('warning: cors is not set');
|
|
|
|
console.log('==================================');
|
2016-09-26 00:51:00 +00:00
|
|
|
}
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2017-02-22 02:04:15 +00:00
|
|
|
return cmd;
|
|
|
|
};
|
|
|
|
|
2017-03-02 13:15:35 +00:00
|
|
|
GethCommands.prototype.mainCommand = function(address, done) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let self = this;
|
|
|
|
let config = this.config;
|
|
|
|
let rpc_api = (this.config.rpcApi || ['eth', 'web3', 'net']);
|
2017-02-22 02:04:15 +00:00
|
|
|
|
2017-03-02 13:15:35 +00:00
|
|
|
async.series([
|
|
|
|
function commonOptions(callback) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let cmd = self.commonOptions();
|
2017-03-02 13:15:35 +00:00
|
|
|
callback(null, cmd);
|
|
|
|
},
|
|
|
|
function rpcOptions(callback) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let cmd = self.determineRpcOptions(self.config);
|
2017-03-02 13:15:35 +00:00
|
|
|
callback(null, cmd);
|
|
|
|
},
|
|
|
|
function dontGetPeers(callback) {
|
|
|
|
if (config.nodiscover) {
|
|
|
|
return callback(null, "--nodiscover");
|
|
|
|
}
|
|
|
|
callback(null, "");
|
|
|
|
},
|
|
|
|
function vmDebug(callback) {
|
|
|
|
if (config.vmdebug) {
|
|
|
|
return callback(null, "--vmdebug");
|
|
|
|
}
|
|
|
|
callback(null, "");
|
|
|
|
},
|
|
|
|
function maxPeers(callback) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let cmd = "--maxpeers " + config.maxpeers;
|
2017-03-02 13:15:35 +00:00
|
|
|
callback(null, cmd);
|
|
|
|
},
|
|
|
|
function mining(callback) {
|
|
|
|
if (config.mineWhenNeeded || config.mine) {
|
|
|
|
return callback(null, "--mine ");
|
|
|
|
}
|
|
|
|
callback("");
|
|
|
|
},
|
|
|
|
function bootnodes(callback) {
|
|
|
|
if (config.bootnodes && config.bootnodes !== "" && config.bootnodes !== []) {
|
|
|
|
return callback(null, "--bootnodes " + config.bootnodes);
|
|
|
|
}
|
|
|
|
callback("");
|
|
|
|
},
|
|
|
|
function whisper(callback) {
|
|
|
|
if (config.whisper) {
|
|
|
|
rpc_api.push('shh');
|
|
|
|
return callback(null, "--shh ");
|
|
|
|
}
|
|
|
|
callback("");
|
|
|
|
},
|
|
|
|
function rpcApi(callback) {
|
|
|
|
callback(null, '--rpcapi "' + rpc_api.join(',') + '"');
|
|
|
|
},
|
|
|
|
function accountToUnlock(callback) {
|
2017-03-29 17:50:05 +00:00
|
|
|
let accountAddress = config.account.address || address;
|
2017-03-02 13:15:35 +00:00
|
|
|
if (accountAddress) {
|
|
|
|
return callback(null, "--unlock=" + accountAddress);
|
|
|
|
}
|
|
|
|
callback(null, "");
|
|
|
|
},
|
|
|
|
function mineWhenNeeded(callback) {
|
|
|
|
if (config.mineWhenNeeded) {
|
|
|
|
return callback(null, "js .embark/" + self.env + "/js/mine.js");
|
|
|
|
}
|
|
|
|
callback(null, "");
|
|
|
|
}
|
|
|
|
], function(err, results) {
|
2017-03-04 02:11:53 +00:00
|
|
|
if (err) {
|
|
|
|
throw new Error(err.message);
|
|
|
|
}
|
2017-03-02 13:15:35 +00:00
|
|
|
done(self.geth_bin + " " + results.join(" "));
|
|
|
|
});
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GethCommands;
|
|
|
|
|