embark-area-51/lib/abi.js

73 lines
2.5 KiB
JavaScript
Raw Normal View History

var Plugins = require('./plugins.js');
2016-08-14 12:04:34 +00:00
var ABIGenerator = function(options) {
this.blockchainConfig = options.blockchainConfig || {};
this.contractsManager = options.contractsManager;
2017-02-06 11:42:58 +00:00
this.rpcHost = options.blockchainConfig && options.blockchainConfig.rpcHost;
this.rpcPort = options.blockchainConfig && options.blockchainConfig.rpcPort;
this.plugins = options.plugins || new Plugins({});
2016-08-14 12:04:34 +00:00
};
ABIGenerator.prototype.generateProvider = function() {
var self = this;
2016-08-14 12:04:34 +00:00
var result = "";
var providerPlugins = this.plugins.getPluginsFor('clientWeb3Provider');
if (providerPlugins.length > 0) {
providerPlugins.forEach(function(plugin) {
2017-01-16 10:27:25 +00:00
result += plugin.generateProvider(self) + "\n";
});
} else {
result += "\nif (typeof web3 !== 'undefined' && typeof Web3 !== 'undefined') {";
result += '\n\tweb3 = new Web3(web3.currentProvider);';
result += "\n} else if (typeof Web3 !== 'undefined') {";
result += '\n\tweb3 = new Web3(new Web3.providers.HttpProvider("http://' + this.rpcHost + ':' + this.rpcPort + '"));';
result += '\n}';
result += "\nweb3.eth.defaultAccount = web3.eth.accounts[0];";
}
2016-08-14 12:04:34 +00:00
return result;
};
2016-09-23 04:31:09 +00:00
ABIGenerator.prototype.generateContracts = function(useEmbarkJS) {
var self = this;
2016-08-14 12:04:34 +00:00
var result = "\n";
var contractsPlugins = this.plugins.getPluginsFor('contractGeneration');
if (contractsPlugins.length > 0) {
contractsPlugins.forEach(function(plugin) {
result += plugin.generateContracts({contracts: self.contractsManager.contracts});
});
} else {
for(var className in this.contractsManager.contracts) {
var contract = this.contractsManager.contracts[className];
2016-08-14 12:04:34 +00:00
var abi = JSON.stringify(contract.abiDefinition);
var gasEstimates = JSON.stringify(contract.gasEstimates);
2016-08-14 12:04:34 +00:00
if (useEmbarkJS) {
result += "\n" + className + " = new EmbarkJS.Contract({abi: " + abi + ", address: '" + contract.deployedAddress + "', code: '" + contract.code + "', gasEstimates: " + gasEstimates + "});";
} else {
result += "\n" + className + "Abi = " + abi + ";";
result += "\n" + className + "Contract = web3.eth.contract(" + className + "Abi);";
result += "\n" + className + " = " + className + "Contract.at('" + contract.deployedAddress + "');";
}
2016-09-23 04:31:09 +00:00
}
2016-08-14 12:04:34 +00:00
}
return result;
};
2016-09-23 04:31:09 +00:00
ABIGenerator.prototype.generateABI = function(options) {
2016-08-18 00:29:41 +00:00
var result = "";
result += this.generateProvider();
2016-09-23 04:31:09 +00:00
result += this.generateContracts(options.useEmbarkJS);
2016-08-18 00:29:41 +00:00
return result;
};
2016-08-14 12:04:34 +00:00
module.exports = ABIGenerator;