2017-12-28 17:40:11 +00:00
|
|
|
let utils = require('../../utils/utils.js');
|
|
|
|
let fs = require('../../core/fs.js');
|
|
|
|
|
|
|
|
class Whisper {
|
|
|
|
|
|
|
|
constructor(embark, options) {
|
|
|
|
this.logger = embark.logger;
|
|
|
|
this.events = embark.events;
|
2018-05-30 16:26:49 +00:00
|
|
|
this.communicationConfig = embark.config.communicationConfig;
|
2017-12-28 17:40:11 +00:00
|
|
|
this.addCheck = options.addCheck;
|
2018-05-19 00:32:40 +00:00
|
|
|
// TODO: this should not be needed and should be deducted from the config instead
|
2017-12-28 17:40:11 +00:00
|
|
|
this.web3 = options.web3;
|
|
|
|
this.embark = embark;
|
|
|
|
|
|
|
|
this.setServiceCheck();
|
|
|
|
this.addWhisperToEmbarkJS();
|
2017-12-28 23:10:43 +00:00
|
|
|
this.addSetProvider();
|
2017-12-28 17:40:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setServiceCheck() {
|
|
|
|
const self = this;
|
|
|
|
self.addCheck('Whisper', function (cb) {
|
2018-01-05 20:30:52 +00:00
|
|
|
self.web3.shh.getVersion(function (err, version) {
|
|
|
|
if (err || version == "2") {
|
2017-12-28 17:40:11 +00:00
|
|
|
return cb({name: 'Whisper', status: 'off'});
|
|
|
|
} else {
|
|
|
|
return cb({name: 'Whisper (version ' + version + ')', status: 'on'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
addWhisperToEmbarkJS() {
|
2017-12-31 01:42:52 +00:00
|
|
|
const self = this;
|
2017-12-28 23:10:43 +00:00
|
|
|
// TODO: make this a shouldAdd condition
|
2017-12-28 17:40:11 +00:00
|
|
|
if (this.communicationConfig === {}) {
|
|
|
|
return;
|
|
|
|
}
|
2017-12-29 21:11:45 +00:00
|
|
|
if ((this.communicationConfig.available_providers.indexOf('whisper') < 0) && (this.communicationConfig.provider !== 'whisper' || this.communicationConfig.enabled !== true)) {
|
2017-12-28 17:40:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-31 01:42:52 +00:00
|
|
|
// TODO: possible race condition could be a concern
|
|
|
|
this.events.request("version:get:web3", function(web3Version) {
|
|
|
|
let code = "";
|
2017-12-31 02:02:46 +00:00
|
|
|
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'message_events.js')).toString();
|
2017-12-28 17:40:11 +00:00
|
|
|
|
2017-12-31 01:42:52 +00:00
|
|
|
if (web3Version[0] === "0") {
|
2017-12-31 02:02:46 +00:00
|
|
|
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'embarkjs_old_web3.js')).toString();
|
2017-12-31 01:42:52 +00:00
|
|
|
code += "\nEmbarkJS.Messages.registerProvider('whisper', __embarkWhisperOld);";
|
|
|
|
} else {
|
2017-12-31 02:02:46 +00:00
|
|
|
code += "\n" + fs.readFileSync(utils.joinPath(__dirname, 'js', 'embarkjs.js')).toString();
|
2017-12-31 01:42:52 +00:00
|
|
|
code += "\nEmbarkJS.Messages.registerProvider('whisper', __embarkWhisperNewWeb3);";
|
|
|
|
}
|
|
|
|
self.embark.addCodeToEmbarkJS(code);
|
|
|
|
});
|
2017-12-28 17:40:11 +00:00
|
|
|
}
|
2017-12-28 23:10:43 +00:00
|
|
|
|
|
|
|
addSetProvider() {
|
|
|
|
let connection = this.communicationConfig.connection || {};
|
|
|
|
// todo: make the add code a function as well
|
|
|
|
let config = JSON.stringify({
|
|
|
|
server: connection.host || 'localhost',
|
|
|
|
port: connection.port || '8546',
|
|
|
|
type: connection.type || 'ws'
|
|
|
|
});
|
|
|
|
let code = "\nEmbarkJS.Messages.setProvider('whisper'," + config + ");";
|
|
|
|
|
|
|
|
let shouldInit = (communicationConfig) => {
|
|
|
|
return (communicationConfig.provider === 'whisper' && communicationConfig.enabled === true);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.embark.addProviderInit('communication', code, shouldInit);
|
|
|
|
}
|
|
|
|
|
2017-12-28 17:40:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Whisper;
|