mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-04 01:44:24 +00:00
2bb977df76
Adding swarm to embarkjs. WIP. Add 'auto' setting for geth CORS and websockets origin * 'auto' now supported for `rpcCorsDomain` and `wsOrigins` in the blockchain config. * 'auto' set to the default value in blockchain config for test and demo apps. test add config and contract and add test addFileToPipeline test and registerBeforeDeploy with new arg add more registers but generation one fails in run WIP commit Undo changes to test config. Merge pull request #381 from embark-framework/features/cors-auto Add 'auto' setting for geth CORS and websockets origin fix a bug where upload cmd used plugin name don't error if it's an empty dapp with no contracts yet Merge pull request #383 from embark-framework/no_contracts don't error if it's an empty dapp with no contracts yet remove duplicated entry force zepplein version for travis Merge pull request #384 from embark-framework/chores/test-allpligin-apis Small fixes for plugin APIs intercept logs in the app itself - stopgap fix Merge pull request #385 from embark-framework/console_logs_fix intercept logs in the app itself - stopgap fix * removed unneeded provider property. * add 'swarm' as a provider in the storage.config * update method for swarm service check Merge branch 'develop' into features/add-swarm-to-embarkjs More work to add swarm to embarkjs * added eth-lib to parse result of swarm text * changed "currentStorage" and "currentMessages" to "currentProvider" for consistency. * added protocol to storage config * selectively starts storage service depending on which one is configured in the storage config * run service check for ipfs/swarm prior to uploaded * added swarm methods for embarkjs Updated code based on code review check if testrpc is installed and warn if not Merge pull request #386 from embark-framework/bug_fix/test-rpc-not-installed check if testrpc is installed and warn if not Removed timeout Removed spacer Merge pull request #382 from embark-framework/react-demo Updating embark demo to use react instead of jquery fix on contract add Merge pull request #387 from embark-framework/bug_fix/new-contract-in-empty-dapp Fix adding a contract redeploy with right config on config change fix tests reset watchers after build to make sure files remain watch Merge pull request #389 from embark-framework/bug_fix/file-changes-not-watched Fix files not being watched Merge pull request #388 from embark-framework/bug_fix/changing-contract-config Redeploy with right config on config change Added swarm support in embarkjs and isAvailable for messages/storage * reverted currentProvider back to currentStorage and currentMessages * added `EmbarkJS.Storage.isAvailable` and `EmbarkJS.Messages.isAvailable()` and underlying provider functions for Whisper, Orbit, IPFS, and Swarm * Finished swarm implementation in embarkjs plus cleanup * updated test app storage config to swarm to show swarm config option Merge branch 'develop' into features/add-swarm-to-embarkjs
218 lines
6.1 KiB
JavaScript
218 lines
6.1 KiB
JavaScript
let async = require('async');
|
|
|
|
// TODO: make all of this async
|
|
class GethCommands {
|
|
constructor(options) {
|
|
this.config = options && options.hasOwnProperty('config') ? options.config : {};
|
|
this.env = options && options.hasOwnProperty('env') ? options.env : 'development';
|
|
this.name = "Go-Ethereum (https://github.com/ethereum/go-ethereum)";
|
|
this.geth_bin = this.config.geth_bin || "geth";
|
|
}
|
|
|
|
commonOptions() {
|
|
let config = this.config;
|
|
let cmd = "";
|
|
|
|
cmd += this.determineNetworkType(config);
|
|
|
|
if (config.datadir) {
|
|
cmd += "--datadir=\"" + config.datadir + "\" ";
|
|
}
|
|
|
|
if (config.light) {
|
|
cmd += "--light ";
|
|
}
|
|
|
|
if (config.fast) {
|
|
cmd += "--fast ";
|
|
}
|
|
|
|
if (config.account && config.account.password) {
|
|
cmd += "--password " + config.account.password + " ";
|
|
}
|
|
|
|
return cmd;
|
|
}
|
|
|
|
determineVersion() {
|
|
return this.geth_bin + " version";
|
|
}
|
|
|
|
determineNetworkType(config) {
|
|
let cmd = "";
|
|
if (config.networkType === 'testnet') {
|
|
cmd += "--testnet ";
|
|
} else if (config.networkType === 'olympic') {
|
|
cmd += "--olympic ";
|
|
} else if (config.networkType === 'custom') {
|
|
cmd += "--networkid " + config.networkId + " ";
|
|
}
|
|
return cmd;
|
|
}
|
|
|
|
initGenesisCommmand() {
|
|
let config = this.config;
|
|
let cmd = this.geth_bin + " " + this.commonOptions();
|
|
|
|
if (config.genesisBlock) {
|
|
cmd += "init \"" + config.genesisBlock + "\" ";
|
|
}
|
|
|
|
return cmd;
|
|
}
|
|
|
|
newAccountCommand() {
|
|
return this.geth_bin + " " + this.commonOptions() + "account new ";
|
|
}
|
|
|
|
listAccountsCommand() {
|
|
return this.geth_bin + " " + this.commonOptions() + "account list ";
|
|
}
|
|
|
|
determineRpcOptions(config) {
|
|
let cmd = "";
|
|
|
|
cmd += "--port " + config.port + " ";
|
|
cmd += "--rpc ";
|
|
cmd += "--rpcport " + config.rpcPort + " ";
|
|
cmd += "--rpcaddr " + config.rpcHost + " ";
|
|
if (config.rpcCorsDomain) {
|
|
if (config.rpcCorsDomain === '*') {
|
|
console.log('==================================');
|
|
console.log('rpcCorsDomain set to *');
|
|
console.log('make sure you know what you are doing');
|
|
console.log('==================================');
|
|
}
|
|
cmd += "--rpccorsdomain=\"" + config.rpcCorsDomain + "\" ";
|
|
} else {
|
|
console.log('==================================');
|
|
console.log('warning: cors is not set');
|
|
console.log('==================================');
|
|
}
|
|
|
|
return cmd;
|
|
}
|
|
|
|
determineWsOptions(config) {
|
|
let cmd = "";
|
|
|
|
if (config.wsRPC) {
|
|
cmd += "--ws ";
|
|
cmd += "--wsport " + config.wsPort + " ";
|
|
cmd += "--wsaddr " + config.wsHost + " ";
|
|
if (config.wsOrigins) {
|
|
if (config.wsOrigins === '*') {
|
|
console.log('==================================');
|
|
console.log('wsOrigins set to *');
|
|
console.log('make sure you know what you are doing');
|
|
console.log('==================================');
|
|
}
|
|
cmd += "--wsorigins \"" + config.wsOrigins + "\" ";
|
|
} else {
|
|
console.log('==================================');
|
|
console.log('warning: wsOrigins is not set');
|
|
console.log('==================================');
|
|
}
|
|
}
|
|
|
|
return cmd;
|
|
}
|
|
|
|
mainCommand(address, done) {
|
|
let self = this;
|
|
let config = this.config;
|
|
let rpc_api = (this.config.rpcApi || ['eth', 'web3', 'net']);
|
|
let ws_api = (this.config.wsApi || ['eth', 'web3', 'net']);
|
|
|
|
async.series([
|
|
function commonOptions(callback) {
|
|
let cmd = self.commonOptions();
|
|
callback(null, cmd);
|
|
},
|
|
function rpcOptions(callback) {
|
|
let cmd = self.determineRpcOptions(self.config);
|
|
callback(null, cmd);
|
|
},
|
|
function wsOptions(callback) {
|
|
let cmd = self.determineWsOptions(self.config);
|
|
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) {
|
|
let cmd = "--maxpeers " + config.maxpeers;
|
|
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');
|
|
if (ws_api.indexOf('shh') === -1) {
|
|
ws_api.push('shh');
|
|
}
|
|
return callback(null, "--shh ");
|
|
}
|
|
callback("");
|
|
},
|
|
function rpcApi(callback) {
|
|
callback(null, '--rpcapi "' + rpc_api.join(',') + '"');
|
|
},
|
|
function wsApi(callback) {
|
|
callback(null, '--wsapi "' + ws_api.join(',') + '"');
|
|
},
|
|
function accountToUnlock(callback) {
|
|
let accountAddress = "";
|
|
if(config.hasOwnProperty('address') && config.account.hasOwnProperty('address')) {
|
|
accountAddress = config.account.address;
|
|
} else {
|
|
accountAddress = address;
|
|
}
|
|
if (accountAddress) {
|
|
return callback(null, "--unlock=" + accountAddress);
|
|
}
|
|
callback(null, "");
|
|
},
|
|
function gasLimit(callback) {
|
|
if (config.targetGasLimit) {
|
|
return callback(null, "--targetgaslimit " + config.targetGasLimit);
|
|
}
|
|
callback(null, "");
|
|
},
|
|
function mineWhenNeeded(callback) {
|
|
if (config.mineWhenNeeded) {
|
|
return callback(null, "js .embark/" + self.env + "/js/mine.js");
|
|
}
|
|
callback(null, "");
|
|
}
|
|
], function (err, results) {
|
|
if (err) {
|
|
throw new Error(err.message);
|
|
}
|
|
done(self.geth_bin + " " + results.join(" "));
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = GethCommands;
|