2017-12-13 21:28:23 +00:00
|
|
|
/*jshint esversion: 6 */
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
var EmbarkJS = {};
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
EmbarkJS.isNewWeb3 = function() {
|
2017-12-13 22:10:33 +00:00
|
|
|
var _web3 = new Web3();
|
|
|
|
if (typeof(_web3.version) === "string") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parseInt(_web3.version.api.split('.')[0], 10) >= 1;
|
2017-10-07 19:20:51 +00:00
|
|
|
};
|
|
|
|
|
2016-08-18 11:45:08 +00:00
|
|
|
EmbarkJS.Contract = function(options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var self = this;
|
|
|
|
var i, abiElement;
|
2017-10-09 13:11:37 +00:00
|
|
|
var ContractClass;
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
this.abi = options.abi;
|
|
|
|
this.address = options.address;
|
|
|
|
this.code = '0x' + options.code;
|
2017-12-12 17:20:57 +00:00
|
|
|
//this.web3 = options.web3 || web3;
|
|
|
|
this.web3 = options.web3 || window.web3;
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
if (EmbarkJS.isNewWeb3()) {
|
|
|
|
// TODO:
|
|
|
|
// add default **from** address
|
|
|
|
// add gasPrice
|
2017-10-09 13:11:37 +00:00
|
|
|
ContractClass = new this.web3.eth.Contract(this.abi, this.address);
|
2017-10-07 19:20:51 +00:00
|
|
|
ContractClass.setProvider(this.web3.currentProvider);
|
|
|
|
|
|
|
|
return ContractClass;
|
|
|
|
} else {
|
2017-10-09 13:11:37 +00:00
|
|
|
ContractClass = this.web3.eth.contract(this.abi);
|
2016-10-30 12:40:37 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
this.eventList = [];
|
|
|
|
|
|
|
|
if (this.abi) {
|
2017-03-17 14:02:26 +00:00
|
|
|
for (i = 0; i < this.abi.length; i++) {
|
2017-10-07 19:20:51 +00:00
|
|
|
abiElement = this.abi[i];
|
|
|
|
if (abiElement.type === 'event') {
|
|
|
|
this.eventList.push(abiElement.name);
|
|
|
|
}
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
2017-10-07 19:20:51 +00:00
|
|
|
}
|
2016-10-30 12:40:37 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
var messageEvents = function() {
|
2017-03-17 14:02:26 +00:00
|
|
|
this.cb = function() {};
|
2017-10-07 19:20:51 +00:00
|
|
|
};
|
2017-02-28 01:32:26 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
messageEvents.prototype.then = function(cb) {
|
2017-03-17 14:02:26 +00:00
|
|
|
this.cb = cb;
|
2017-10-07 19:20:51 +00:00
|
|
|
};
|
2017-02-28 01:32:26 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
messageEvents.prototype.error = function(err) {
|
2017-03-17 14:02:26 +00:00
|
|
|
return err;
|
2017-10-07 19:20:51 +00:00
|
|
|
};
|
2017-02-28 01:32:26 +00:00
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
this._originalContractObject = ContractClass.at(this.address);
|
|
|
|
this._methods = Object.getOwnPropertyNames(this._originalContractObject).filter(function(p) {
|
2017-03-17 14:02:26 +00:00
|
|
|
// TODO: check for forbidden properties
|
|
|
|
if (self.eventList.indexOf(p) >= 0) {
|
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
self[p] = function() {
|
|
|
|
var promise = new messageEvents();
|
|
|
|
var args = Array.prototype.slice.call(arguments);
|
|
|
|
args.push(function(err, result) {
|
|
|
|
if (err) {
|
|
|
|
promise.error(err);
|
|
|
|
} else {
|
|
|
|
promise.cb(result);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self._originalContractObject[p].apply(self._originalContractObject[p], args);
|
|
|
|
return promise;
|
|
|
|
};
|
|
|
|
return true;
|
|
|
|
} else if (typeof self._originalContractObject[p] === 'function') {
|
|
|
|
self[p] = function(_args) {
|
|
|
|
var args = Array.prototype.slice.call(arguments);
|
|
|
|
var fn = self._originalContractObject[p];
|
|
|
|
var props = self.abi.find((x) => x.name == p);
|
|
|
|
|
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
args.push(function(err, transaction) {
|
|
|
|
promise.tx = transaction;
|
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
var getConfirmation = function() {
|
|
|
|
self.web3.eth.getTransactionReceipt(transaction, function(err, receipt) {
|
2017-03-17 14:02:26 +00:00
|
|
|
if (err) {
|
2017-10-07 19:20:51 +00:00
|
|
|
return reject(err);
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 19:20:51 +00:00
|
|
|
if (receipt !== null) {
|
|
|
|
return resolve(receipt);
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(getConfirmation, 1000);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
if (typeof(transaction) !== "string" || props.constant) {
|
|
|
|
resolve(transaction);
|
|
|
|
} else {
|
|
|
|
getConfirmation();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
fn.apply(fn, args);
|
|
|
|
});
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
};
|
|
|
|
return true;
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
|
|
|
return false;
|
2017-10-07 19:20:51 +00:00
|
|
|
});
|
|
|
|
}
|
2016-08-18 11:45:08 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 11:51:02 +00:00
|
|
|
EmbarkJS.Contract.prototype.deploy = function(args, _options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var self = this;
|
|
|
|
var contractParams;
|
|
|
|
var options = _options || {};
|
|
|
|
|
|
|
|
contractParams = args || [];
|
|
|
|
|
|
|
|
contractParams.push({
|
|
|
|
from: this.web3.eth.accounts[0],
|
|
|
|
data: this.code,
|
|
|
|
gas: options.gas || 800000
|
2016-08-18 11:45:08 +00:00
|
|
|
});
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
var contractObject = this.web3.eth.contract(this.abi);
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
contractParams.push(function(err, transaction) {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
} else if (transaction.address !== undefined) {
|
|
|
|
resolve(new EmbarkJS.Contract({
|
|
|
|
abi: self.abi,
|
|
|
|
code: self.code,
|
|
|
|
address: transaction.address
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
});
|
2017-03-12 21:59:21 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
// returns promise
|
|
|
|
// deploys contract
|
|
|
|
// wraps it around EmbarkJS.Contract
|
|
|
|
contractObject["new"].apply(contractObject, contractParams);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
return promise;
|
2016-08-18 11:45:08 +00:00
|
|
|
};
|
|
|
|
|
2017-04-02 18:12:12 +00:00
|
|
|
EmbarkJS.Contract.prototype.new = EmbarkJS.Contract.prototype.deploy;
|
|
|
|
|
|
|
|
EmbarkJS.Contract.prototype.at = function(address) {
|
|
|
|
return new EmbarkJS.Contract({ abi: this.abi, code: this.code, address: address });
|
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Contract.prototype.send = function(value, unit, _options) {
|
|
|
|
var options, wei;
|
|
|
|
if (typeof unit === 'object') {
|
|
|
|
options = unit;
|
|
|
|
wei = value;
|
|
|
|
} else {
|
|
|
|
options = _options || {};
|
|
|
|
wei = this.web3.toWei(value, unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
options.to = this.address;
|
|
|
|
options.value = wei;
|
|
|
|
console.log(options);
|
|
|
|
|
|
|
|
this.web3.eth.sendTransaction(options);
|
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
//=========================================================
|
|
|
|
// Embark Storage
|
|
|
|
//=========================================================
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Storage = {};
|
2017-03-13 13:38:30 +00:00
|
|
|
|
|
|
|
EmbarkJS.Storage.Providers = {
|
2017-03-17 14:02:26 +00:00
|
|
|
IPFS: 'ipfs',
|
|
|
|
SWARM: 'swarm'
|
2017-03-13 13:38:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Storage.IPFS = {};
|
2017-03-13 13:38:30 +00:00
|
|
|
|
|
|
|
EmbarkJS.Storage.saveText = function(text) {
|
2017-03-17 14:02:26 +00:00
|
|
|
return this.currentStorage.saveText(text);
|
2016-08-26 11:01:22 +00:00
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
EmbarkJS.Storage.get = function(hash) {
|
2017-03-17 14:02:26 +00:00
|
|
|
return this.currentStorage.get(hash);
|
2017-03-14 15:39:09 +00:00
|
|
|
};
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Storage.uploadFile = function(inputSelector) {
|
|
|
|
return this.currentStorage.uploadFile(inputSelector);
|
2017-03-18 14:14:19 +00:00
|
|
|
};
|
2017-03-14 15:39:09 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Storage.getUrl = function(hash) {
|
|
|
|
return this.currentStorage.getUrl(hash);
|
2017-03-18 14:14:19 +00:00
|
|
|
};
|
2017-03-14 15:39:09 +00:00
|
|
|
|
2016-08-26 11:01:22 +00:00
|
|
|
EmbarkJS.Storage.setProvider = function(provider, options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var self = this;
|
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
if (provider.toLowerCase() === EmbarkJS.Storage.Providers.IPFS) {
|
|
|
|
//I don't think currentStorage is used anywhere, this might not be needed
|
|
|
|
//for now until additional storage providers are supported. But keeping it
|
|
|
|
//anyways
|
|
|
|
self.currentStorage = EmbarkJS.Storage.IPFS;
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (options === undefined) {
|
|
|
|
self.ipfsConnection = IpfsApi('localhost', '5001');
|
2017-12-06 16:42:13 +00:00
|
|
|
self._getUrl = "http://localhost:8080/ipfs/";
|
2017-03-17 14:02:26 +00:00
|
|
|
} else {
|
|
|
|
self.ipfsConnection = IpfsApi(options.server, options.port);
|
2017-12-06 16:42:13 +00:00
|
|
|
self._getUrl = options.getUrl || "http://localhost:8080/ipfs/";
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
|
|
|
resolve(self);
|
|
|
|
} catch (err) {
|
2017-12-13 14:01:53 +00:00
|
|
|
console.log(err);
|
2017-03-17 14:02:26 +00:00
|
|
|
self.ipfsConnection = null;
|
|
|
|
reject(new Error('Failed to connect to IPFS'));
|
|
|
|
}
|
|
|
|
} else if (provider.toLowerCase() === EmbarkJS.Storage.SWARM) {
|
|
|
|
reject('Swarm not implemented');
|
|
|
|
// TODO Implement Swarm
|
|
|
|
// this.currentStorage = EmbarkJS.Storage.SWARM;
|
|
|
|
// if (options === undefined) {
|
|
|
|
// //Connect to default Swarm node
|
|
|
|
// } else {
|
|
|
|
// //Connect using options
|
|
|
|
// }
|
|
|
|
} else {
|
|
|
|
reject('Unknown storage provider');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return promise;
|
2016-08-26 11:01:22 +00:00
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
EmbarkJS.Storage.IPFS.saveText = function(text) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
if (!EmbarkJS.Storage.ipfsConnection) {
|
|
|
|
var connectionError = new Error('No IPFS connection. Please ensure to call Embark.Storage.setProvider()');
|
|
|
|
reject(connectionError);
|
|
|
|
}
|
|
|
|
EmbarkJS.Storage.ipfsConnection.add((new EmbarkJS.Storage.ipfsConnection.Buffer(text)), function(err, result) {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
} else {
|
|
|
|
resolve(result[0].path);
|
|
|
|
}
|
|
|
|
});
|
2016-08-26 11:01:22 +00:00
|
|
|
});
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
return promise;
|
2016-08-26 11:01:22 +00:00
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
EmbarkJS.Storage.IPFS.get = function(hash) {
|
2017-03-17 14:02:26 +00:00
|
|
|
// TODO: detect type, then convert if needed
|
|
|
|
//var ipfsHash = web3.toAscii(hash);
|
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
if (!EmbarkJS.Storage.ipfsConnection) {
|
|
|
|
var connectionError = new Error('No IPFS connection. Please ensure to call Embark.Storage.setProvider()');
|
|
|
|
reject(connectionError);
|
|
|
|
}
|
2017-12-13 15:59:53 +00:00
|
|
|
EmbarkJS.Storage.ipfsConnection.object.get(hash).then(function(node) {
|
|
|
|
resolve(node.data.toString());
|
2017-03-17 14:02:26 +00:00
|
|
|
}).catch(function(err) {
|
|
|
|
reject(err);
|
|
|
|
});
|
2017-03-14 15:39:09 +00:00
|
|
|
});
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
return promise;
|
2017-03-14 15:39:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Storage.IPFS.uploadFile = function(inputSelector) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var file = inputSelector[0].files[0];
|
2016-08-26 11:01:22 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
if (file === undefined) {
|
|
|
|
throw new Error('no file found');
|
2017-03-14 15:39:09 +00:00
|
|
|
}
|
2017-03-17 14:02:26 +00:00
|
|
|
|
|
|
|
var promise = new Promise(function(resolve, reject) {
|
|
|
|
if (!EmbarkJS.Storage.ipfsConnection) {
|
|
|
|
var connectionError = new Error('No IPFS connection. Please ensure to call Embark.Storage.setProvider()');
|
|
|
|
reject(connectionError);
|
2016-08-26 11:01:22 +00:00
|
|
|
}
|
2017-03-17 14:02:26 +00:00
|
|
|
var reader = new FileReader();
|
|
|
|
reader.onloadend = function() {
|
|
|
|
var fileContent = reader.result;
|
|
|
|
var buffer = EmbarkJS.Storage.ipfsConnection.Buffer.from(fileContent);
|
|
|
|
EmbarkJS.Storage.ipfsConnection.add(buffer, function(err, result) {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
} else {
|
|
|
|
resolve(result[0].path);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
reader.readAsArrayBuffer(file);
|
|
|
|
});
|
2016-08-26 11:01:22 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
return promise;
|
2016-08-26 11:01:22 +00:00
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
EmbarkJS.Storage.IPFS.getUrl = function(hash) {
|
2017-12-06 16:42:13 +00:00
|
|
|
return (self._getUrl || "http://localhost:8080/ipfs/") + hash;
|
2016-08-26 11:01:22 +00:00
|
|
|
};
|
|
|
|
|
2017-03-14 15:39:09 +00:00
|
|
|
//=========================================================
|
|
|
|
// Embark Messaging
|
|
|
|
//=========================================================
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Messages = {};
|
2016-08-21 14:42:42 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
EmbarkJS.Messages.web3CompatibleWithV5 = function() {
|
|
|
|
var _web3 = new Web3();
|
|
|
|
if (typeof(_web3.version) === "string") {
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-03 23:12:49 +00:00
|
|
|
return parseInt(_web3.version.api.split('.')[1], 10) >= 20;
|
2017-07-24 11:27:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.isNewWeb3 = function() {
|
|
|
|
var _web3 = new Web3();
|
|
|
|
if (typeof(_web3.version) === "string") {
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-03 23:12:49 +00:00
|
|
|
return parseInt(_web3.version.api.split('.')[0], 10) >= 1;
|
2017-07-24 11:27:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.getWhisperVersion = function(cb) {
|
|
|
|
if (this.isNewWeb3()) {
|
|
|
|
this.currentMessages.web3.shh.getVersion(function(err, version) {
|
|
|
|
cb(err, version);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.currentMessages.web3.version.getWhisper(function(err, res) {
|
|
|
|
cb(err, web3.version.whisper);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-07 05:03:03 +00:00
|
|
|
EmbarkJS.Messages.setProvider = function(provider, options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var self = this;
|
|
|
|
var ipfs;
|
|
|
|
if (provider === 'whisper') {
|
2017-10-09 13:11:37 +00:00
|
|
|
this.providerName = 'whisper';
|
2017-03-17 14:02:26 +00:00
|
|
|
this.currentMessages = EmbarkJS.Messages.Whisper;
|
2017-10-09 12:59:02 +00:00
|
|
|
let provider;
|
|
|
|
if (options === undefined) {
|
|
|
|
provider = "localhost:8546";
|
|
|
|
} else {
|
|
|
|
provider = options.server + ':' + options.port;
|
|
|
|
}
|
|
|
|
if (this.isNewWeb3()) {
|
|
|
|
self.currentMessages.web3 = new Web3(new Web3.providers.WebsocketProvider("ws://" + provider));
|
|
|
|
} else {
|
|
|
|
self.currentMessages.web3 = new Web3(new Web3.providers.HttpProvider("http://" + provider));
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
2017-07-24 11:27:52 +00:00
|
|
|
self.getWhisperVersion(function(err, version) {
|
2017-03-17 14:02:26 +00:00
|
|
|
if (err) {
|
|
|
|
console.log("whisper not available");
|
2017-07-24 11:27:52 +00:00
|
|
|
} else if (version >= 5) {
|
|
|
|
if (self.web3CompatibleWithV5()) {
|
|
|
|
self.currentMessages.web3.shh.newSymKey().then((id) => {self.currentMessages.symKeyID = id;});
|
|
|
|
self.currentMessages.web3.shh.newKeyPair().then((id) => {self.currentMessages.sig = id;});
|
|
|
|
} else {
|
2017-10-09 12:59:02 +00:00
|
|
|
console.log("this version of whisper in this node");
|
2017-07-24 11:27:52 +00:00
|
|
|
}
|
2017-03-17 14:02:26 +00:00
|
|
|
} else {
|
2017-07-24 11:27:52 +00:00
|
|
|
self.currentMessages.identity = self.currentMessages.web3.shh.newIdentity();
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
2017-07-24 11:27:52 +00:00
|
|
|
self.currentMessages.whisperVersion = self.currentMessages.web3.version.whisper;
|
2017-03-17 14:02:26 +00:00
|
|
|
});
|
|
|
|
} else if (provider === 'orbit') {
|
2017-10-09 13:11:37 +00:00
|
|
|
this.providerName = 'orbit';
|
2017-03-17 14:02:26 +00:00
|
|
|
this.currentMessages = EmbarkJS.Messages.Orbit;
|
|
|
|
if (options === undefined) {
|
|
|
|
ipfs = HaadIpfsApi('localhost', '5001');
|
|
|
|
} else {
|
2017-06-26 19:25:22 +00:00
|
|
|
ipfs = HaadIpfsApi(options.host, options.port);
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
|
|
|
this.currentMessages.orbit = new Orbit(ipfs);
|
2017-06-26 19:25:22 +00:00
|
|
|
if (typeof(web3) === "undefined") {
|
|
|
|
this.currentMessages.orbit.connect(Math.random().toString(36).substring(2));
|
|
|
|
} else {
|
|
|
|
this.currentMessages.orbit.connect(web3.eth.accounts[0]);
|
|
|
|
}
|
2017-01-07 05:03:03 +00:00
|
|
|
} else {
|
2017-03-17 14:02:26 +00:00
|
|
|
throw Error('Unknown message provider');
|
2017-01-07 05:03:03 +00:00
|
|
|
}
|
2016-08-21 14:42:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.sendMessage = function(options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
return this.currentMessages.sendMessage(options);
|
2016-08-21 14:42:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.listenTo = function(options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
return this.currentMessages.listenTo(options);
|
2016-08-21 14:42:42 +00:00
|
|
|
};
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Messages.Whisper = {};
|
2016-08-21 14:42:42 +00:00
|
|
|
|
|
|
|
EmbarkJS.Messages.Whisper.sendMessage = function(options) {
|
2017-10-09 13:11:37 +00:00
|
|
|
var topics, data, ttl, priority, payload;
|
2017-10-09 12:59:02 +00:00
|
|
|
if (EmbarkJS.Messages.isNewWeb3()) {
|
2017-10-09 13:11:37 +00:00
|
|
|
topics = options.topic || options.topics;
|
|
|
|
data = options.data || options.payload;
|
|
|
|
ttl = options.ttl || 100;
|
|
|
|
priority = options.priority || 1000;
|
2017-10-09 12:59:02 +00:00
|
|
|
var powTime = options.powTime || 3;
|
|
|
|
var powTarget = options.powTarget || 0.5;
|
|
|
|
|
|
|
|
if (topics === undefined) {
|
|
|
|
throw new Error("missing option: topic");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data === undefined) {
|
|
|
|
throw new Error("missing option: data");
|
2017-07-24 11:27:52 +00:00
|
|
|
}
|
2017-10-09 12:59:02 +00:00
|
|
|
|
|
|
|
topics = this.web3.utils.toHex(topics).slice(0, 10);
|
|
|
|
|
2017-10-09 13:11:37 +00:00
|
|
|
payload = JSON.stringify(data);
|
2017-10-09 12:59:02 +00:00
|
|
|
|
|
|
|
let message = {
|
|
|
|
symKeyID: this.symKeyID, // encrypts using the sym key ID
|
|
|
|
sig: this.sig, // signs the message using the keyPair ID
|
|
|
|
ttl: ttl,
|
|
|
|
topic: topics,
|
|
|
|
payload: EmbarkJS.Utils.fromAscii(payload),
|
|
|
|
powTime: powTime,
|
|
|
|
powTarget: powTarget
|
|
|
|
};
|
|
|
|
|
|
|
|
this.web3.shh.post(message, function() { });
|
|
|
|
} else {
|
2017-10-09 13:11:37 +00:00
|
|
|
topics = options.topic || options.topics;
|
|
|
|
data = options.data || options.payload;
|
|
|
|
ttl = options.ttl || 100;
|
|
|
|
priority = options.priority || 1000;
|
2017-10-09 12:59:02 +00:00
|
|
|
var identity = options.identity || this.identity || web3.shh.newIdentity();
|
2017-03-17 14:02:26 +00:00
|
|
|
var _topics;
|
|
|
|
|
|
|
|
if (topics === undefined) {
|
2017-10-09 12:59:02 +00:00
|
|
|
throw new Error("missing option: topic");
|
2016-10-12 11:54:40 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
if (data === undefined) {
|
2017-10-09 12:59:02 +00:00
|
|
|
throw new Error("missing option: data");
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
2016-10-12 11:54:40 +00:00
|
|
|
|
2017-10-09 12:59:02 +00:00
|
|
|
if (typeof topics === 'string') {
|
|
|
|
_topics = [EmbarkJS.Utils.fromAscii(topics)];
|
2017-03-17 14:02:26 +00:00
|
|
|
} else {
|
2017-10-09 12:59:02 +00:00
|
|
|
_topics = topics.map((t) => EmbarkJS.Utils.fromAscii(t));
|
2017-03-17 14:02:26 +00:00
|
|
|
}
|
2017-10-09 12:59:02 +00:00
|
|
|
topics = _topics;
|
2017-03-17 14:02:26 +00:00
|
|
|
|
2017-10-09 13:11:37 +00:00
|
|
|
payload = JSON.stringify(data);
|
2017-03-17 14:02:26 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
var message;
|
2017-10-09 12:59:02 +00:00
|
|
|
message = {
|
|
|
|
from: identity,
|
|
|
|
topics: topics,
|
|
|
|
payload: EmbarkJS.Utils.fromAscii(payload),
|
|
|
|
ttl: ttl,
|
|
|
|
priority: priority
|
|
|
|
};
|
2016-10-12 11:54:40 +00:00
|
|
|
|
2017-10-09 13:11:37 +00:00
|
|
|
return EmbarkJS.Messages.currentMessages.web3.shh.post(message, function() { });
|
2017-10-09 12:59:02 +00:00
|
|
|
}
|
2016-08-21 14:42:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.Whisper.listenTo = function(options) {
|
2017-10-09 13:11:37 +00:00
|
|
|
var topics, _topics, messageEvents;
|
2017-10-09 12:59:02 +00:00
|
|
|
if (EmbarkJS.Messages.isNewWeb3()) {
|
2017-10-09 13:11:37 +00:00
|
|
|
messageEvents = function() {
|
2017-10-09 12:59:02 +00:00
|
|
|
this.cb = function() {};
|
|
|
|
};
|
2017-03-17 14:02:26 +00:00
|
|
|
|
2017-10-09 12:59:02 +00:00
|
|
|
messageEvents.prototype.then = function(cb) {
|
|
|
|
this.cb = cb;
|
|
|
|
};
|
2017-07-24 11:27:52 +00:00
|
|
|
|
2017-10-09 12:59:02 +00:00
|
|
|
messageEvents.prototype.error = function(err) {
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.stop = function() {
|
|
|
|
this.filter.stopWatching();
|
|
|
|
};
|
2017-07-24 11:27:52 +00:00
|
|
|
|
2017-10-09 13:11:37 +00:00
|
|
|
topics = options.topic || options.topics;
|
|
|
|
_topics = [];
|
2017-07-24 11:27:52 +00:00
|
|
|
|
2017-10-09 12:59:02 +00:00
|
|
|
let promise = new messageEvents();
|
2017-07-24 11:27:52 +00:00
|
|
|
|
2017-10-09 12:59:02 +00:00
|
|
|
// listenTo
|
2017-03-17 14:02:26 +00:00
|
|
|
if (typeof topics === 'string') {
|
2017-10-09 12:59:02 +00:00
|
|
|
topics = [this.web3.utils.toHex(topics).slice(0, 10)];
|
2017-03-17 14:02:26 +00:00
|
|
|
} else {
|
2017-10-09 12:59:02 +00:00
|
|
|
topics = topics.map((t) => this.web3.utils.toHex(t).slice(0, 10));
|
2016-10-12 11:54:40 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
let filter = this.web3.shh.subscribe("messages", {
|
2017-10-09 12:59:02 +00:00
|
|
|
symKeyID: this.symKeyID,
|
|
|
|
topics: topics
|
2017-07-24 11:27:52 +00:00
|
|
|
}).on('data', function(result) {
|
|
|
|
var payload = JSON.parse(EmbarkJS.Utils.toAscii(result.payload));
|
|
|
|
var data;
|
|
|
|
data = {
|
|
|
|
topic: result.topic,
|
|
|
|
data: payload,
|
|
|
|
//from: result.from,
|
|
|
|
time: result.timestamp
|
|
|
|
};
|
2017-10-09 12:59:02 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
promise.cb(payload, data, result);
|
|
|
|
});
|
2016-10-12 11:54:40 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
promise.filter = filter;
|
2016-10-12 11:54:40 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
return promise;
|
|
|
|
} else {
|
2017-10-09 13:11:37 +00:00
|
|
|
topics = options.topic || options.topics;
|
|
|
|
_topics = [];
|
2017-10-09 12:59:02 +00:00
|
|
|
|
2017-10-09 13:11:37 +00:00
|
|
|
messageEvents = function() {
|
2017-10-09 12:59:02 +00:00
|
|
|
this.cb = function() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.then = function(cb) {
|
|
|
|
this.cb = cb;
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.error = function(err) {
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.stop = function() {
|
|
|
|
this.filter.stopWatching();
|
|
|
|
};
|
|
|
|
|
|
|
|
if (typeof topics === 'string') {
|
|
|
|
_topics = [topics];
|
|
|
|
} else {
|
|
|
|
_topics = topics.map((t) => EmbarkJS.Utils.fromAscii(t));
|
|
|
|
}
|
|
|
|
topics = _topics;
|
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
var filterOptions = {
|
|
|
|
topics: topics
|
2017-03-17 14:02:26 +00:00
|
|
|
};
|
2017-01-26 11:31:29 +00:00
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
let promise = new messageEvents();
|
|
|
|
|
|
|
|
let filter = this.web3.shh.filter(filterOptions, function(err, result) {
|
|
|
|
var payload = JSON.parse(EmbarkJS.Utils.toAscii(result.payload));
|
|
|
|
var data;
|
|
|
|
if (err) {
|
|
|
|
promise.error(err);
|
|
|
|
} else {
|
|
|
|
data = {
|
|
|
|
topic: topics,
|
|
|
|
data: payload,
|
|
|
|
from: result.from,
|
|
|
|
time: (new Date(result.sent * 1000))
|
|
|
|
};
|
|
|
|
promise.cb(payload, data, result);
|
|
|
|
}
|
2017-03-17 14:02:26 +00:00
|
|
|
});
|
2016-10-12 11:54:40 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
promise.filter = filter;
|
2017-01-26 11:31:29 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
return promise;
|
2017-07-24 11:27:52 +00:00
|
|
|
}
|
2017-10-09 13:11:37 +00:00
|
|
|
};
|
2016-08-21 14:42:42 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
EmbarkJS.Messages.Orbit = {};
|
2017-01-07 05:03:03 +00:00
|
|
|
|
|
|
|
EmbarkJS.Messages.Orbit.sendMessage = function(options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var topics = options.topic || options.topics;
|
|
|
|
var data = options.data || options.payload;
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
if (topics === undefined) {
|
|
|
|
throw new Error("missing option: topic");
|
|
|
|
}
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
if (data === undefined) {
|
|
|
|
throw new Error("missing option: data");
|
|
|
|
}
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
if (typeof topics === 'string') {
|
|
|
|
topics = topics;
|
|
|
|
} else {
|
|
|
|
// TODO: better to just send to different channels instead
|
|
|
|
topics = topics.join(',');
|
|
|
|
}
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
this.orbit.join(topics);
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
var payload = JSON.stringify(data);
|
2017-01-07 05:03:03 +00:00
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
this.orbit.send(topics, data);
|
2017-01-07 05:03:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmbarkJS.Messages.Orbit.listenTo = function(options) {
|
2017-03-17 14:02:26 +00:00
|
|
|
var self = this;
|
|
|
|
var topics = options.topic || options.topics;
|
|
|
|
|
|
|
|
if (typeof topics === 'string') {
|
|
|
|
topics = topics;
|
|
|
|
} else {
|
|
|
|
topics = topics.join(',');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.orbit.join(topics);
|
|
|
|
|
|
|
|
var messageEvents = function() {
|
|
|
|
this.cb = function() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.then = function(cb) {
|
|
|
|
this.cb = cb;
|
|
|
|
};
|
|
|
|
|
|
|
|
messageEvents.prototype.error = function(err) {
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
|
|
|
|
var promise = new messageEvents();
|
|
|
|
|
|
|
|
this.orbit.events.on('message', (channel, message) => {
|
|
|
|
// TODO: looks like sometimes it's receving messages from all topics
|
|
|
|
if (topics !== channel) return;
|
|
|
|
self.orbit.getPost(message.payload.value, true).then((post) => {
|
|
|
|
var data = {
|
|
|
|
topic: channel,
|
|
|
|
data: post.content,
|
|
|
|
from: post.meta.from.name,
|
|
|
|
time: (new Date(post.meta.ts))
|
|
|
|
};
|
|
|
|
promise.cb(post.content, data, post);
|
|
|
|
});
|
2017-01-07 05:03:03 +00:00
|
|
|
});
|
|
|
|
|
2017-03-17 14:02:26 +00:00
|
|
|
return promise;
|
2017-01-07 05:03:03 +00:00
|
|
|
};
|
|
|
|
|
2017-07-24 11:27:52 +00:00
|
|
|
EmbarkJS.Utils = {
|
|
|
|
fromAscii: function(str) {
|
|
|
|
var _web3 = new Web3();
|
|
|
|
return _web3.utils ? _web3.utils.fromAscii(str) : _web3.fromAscii(str);
|
2017-10-09 12:59:02 +00:00
|
|
|
},
|
|
|
|
toAscii: function(str) {
|
|
|
|
var _web3 = new Web3();
|
|
|
|
return _web3.utils.toAscii(str);
|
2017-07-24 11:27:52 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-13 14:01:53 +00:00
|
|
|
export default EmbarkJS;
|