2018-05-10 18:52:30 +00:00
|
|
|
const ProviderEngine = require('web3-provider-engine');
|
|
|
|
const RpcSubprovider = require('web3-provider-engine/subproviders/rpc.js');
|
2018-05-17 17:48:39 +00:00
|
|
|
const AccountParser = require('./accountParser');
|
2018-05-10 18:52:30 +00:00
|
|
|
|
|
|
|
class Provider {
|
2018-05-10 18:52:51 +00:00
|
|
|
constructor(options) {
|
2018-05-11 15:41:54 +00:00
|
|
|
const self = this;
|
2018-05-10 18:52:51 +00:00
|
|
|
this.web3 = options.web3;
|
|
|
|
this.accountsConfig = options.accountsConfig;
|
|
|
|
this.logger = options.logger;
|
2018-05-10 18:52:30 +00:00
|
|
|
this.engine = new ProviderEngine();
|
2018-05-14 16:08:03 +00:00
|
|
|
this.asyncMethods = {};
|
2018-05-10 18:52:30 +00:00
|
|
|
|
|
|
|
this.engine.addProvider(new RpcSubprovider({
|
2018-05-10 18:52:51 +00:00
|
|
|
rpcUrl: options.web3Endpoint
|
2018-05-10 18:52:30 +00:00
|
|
|
}));
|
|
|
|
|
2018-05-17 17:48:39 +00:00
|
|
|
this.accounts = AccountParser.parseAccountsConfig(this.accountsConfig, this.web3, this.logger);
|
|
|
|
this.addresses = [];
|
|
|
|
if (this.accounts.length) {
|
|
|
|
this.accounts.forEach(account => {
|
2018-05-11 15:41:54 +00:00
|
|
|
this.addresses.push(account.address);
|
2018-05-17 17:48:39 +00:00
|
|
|
this.web3.eth.accounts.wallet.add(account);
|
2018-05-10 18:52:51 +00:00
|
|
|
});
|
2018-05-17 17:48:39 +00:00
|
|
|
this.asyncMethods = {
|
|
|
|
eth_accounts: self.eth_accounts.bind(this)
|
|
|
|
};
|
2018-05-10 18:52:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 18:52:30 +00:00
|
|
|
// network connectivity error
|
2018-05-14 16:08:03 +00:00
|
|
|
this.engine.on('error', (err) => {
|
2018-05-10 18:52:30 +00:00
|
|
|
// report connectivity errors
|
2018-05-14 16:08:03 +00:00
|
|
|
this.logger.error(err.stack);
|
2018-05-10 18:52:30 +00:00
|
|
|
});
|
|
|
|
this.engine.start();
|
|
|
|
}
|
|
|
|
|
2018-05-11 15:41:54 +00:00
|
|
|
eth_accounts(payload, cb) {
|
|
|
|
return cb(null, this.addresses);
|
|
|
|
}
|
|
|
|
|
|
|
|
sendAsync(payload, callback) {
|
|
|
|
let method = this.asyncMethods[payload.method];
|
|
|
|
if (method) {
|
|
|
|
return method.call(method, payload, (err, result) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
let response = {'id': payload.id, 'jsonrpc': '2.0', 'result': result};
|
|
|
|
callback(null, response);
|
|
|
|
});
|
|
|
|
}
|
2018-05-10 18:52:30 +00:00
|
|
|
this.engine.sendAsync.apply(this.engine, arguments);
|
|
|
|
}
|
|
|
|
|
2018-05-14 16:12:14 +00:00
|
|
|
send() {
|
2018-05-10 18:52:30 +00:00
|
|
|
return this.engine.send.apply(this.engine, arguments);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Provider;
|