return general and original message object in listenTo callback
This commit is contained in:
parent
61ae426781
commit
8f434df926
|
@ -250,6 +250,7 @@ var EmbarkJS =
|
|||
var ipfs;
|
||||
if (provider === 'whisper') {
|
||||
this.currentMessages = EmbarkJS.Messages.Whisper;
|
||||
this.currentMessages.identity = web3.shh.newIdentity();
|
||||
} else if (provider === 'orbit') {
|
||||
this.currentMessages = EmbarkJS.Messages.Orbit;
|
||||
if (options === undefined) {
|
||||
|
@ -278,7 +279,7 @@ var EmbarkJS =
|
|||
EmbarkJS.Messages.Whisper.sendMessage = function(options) {
|
||||
var topics = options.topic || options.topics;
|
||||
var data = options.data || options.payload;
|
||||
var identity = options.identity || web3.shh.newIdentity();
|
||||
var identity = options.identity || this.identity || web3.shh.newIdentity();
|
||||
var ttl = options.ttl || 100;
|
||||
var priority = options.priority || 1000;
|
||||
|
||||
|
@ -319,7 +320,7 @@ var EmbarkJS =
|
|||
var topics = options.topic || options.topics;
|
||||
|
||||
if (typeof topics === 'string') {
|
||||
topics = [topics];
|
||||
topics = [web3.fromAscii(topics)];
|
||||
} else {
|
||||
// TODO: replace with es6 + babel;
|
||||
var _topics = [];
|
||||
|
@ -349,10 +350,17 @@ var EmbarkJS =
|
|||
|
||||
var filter = web3.shh.filter(filterOptions, function(err, result) {
|
||||
var payload = JSON.parse(web3.toAscii(result.payload));
|
||||
var data;
|
||||
if (err) {
|
||||
promise.error(err);
|
||||
} else {
|
||||
promise.cb(payload);
|
||||
data = {
|
||||
topic: topics.map((t) => web3.toAscii(t)),
|
||||
data: payload,
|
||||
from: result.from,
|
||||
time: (new Date(result.sent * 1000))
|
||||
};
|
||||
promise.cb(payload, data, result);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -418,9 +426,14 @@ var EmbarkJS =
|
|||
var promise = new messageEvents();
|
||||
|
||||
this.orbit.events.on('message', (topics, message) => {
|
||||
// Get the actual content of the message
|
||||
self.orbit.getPost(message.payload.value, true).then((post) => {
|
||||
promise.cb(post);
|
||||
var data = {
|
||||
topic: topics,
|
||||
data: post.content,
|
||||
from: post.meta.from.name,
|
||||
time: (new Date(post.meta.ts))
|
||||
};
|
||||
promise.cb(post.content, data, post);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
23
js/embark.js
23
js/embark.js
|
@ -203,6 +203,7 @@ EmbarkJS.Messages.setProvider = function(provider, options) {
|
|||
var ipfs;
|
||||
if (provider === 'whisper') {
|
||||
this.currentMessages = EmbarkJS.Messages.Whisper;
|
||||
this.currentMessages.identity = web3.shh.newIdentity();
|
||||
} else if (provider === 'orbit') {
|
||||
this.currentMessages = EmbarkJS.Messages.Orbit;
|
||||
if (options === undefined) {
|
||||
|
@ -231,7 +232,7 @@ EmbarkJS.Messages.Whisper = {
|
|||
EmbarkJS.Messages.Whisper.sendMessage = function(options) {
|
||||
var topics = options.topic || options.topics;
|
||||
var data = options.data || options.payload;
|
||||
var identity = options.identity || web3.shh.newIdentity();
|
||||
var identity = options.identity || this.identity || web3.shh.newIdentity();
|
||||
var ttl = options.ttl || 100;
|
||||
var priority = options.priority || 1000;
|
||||
|
||||
|
@ -272,7 +273,7 @@ EmbarkJS.Messages.Whisper.listenTo = function(options) {
|
|||
var topics = options.topic || options.topics;
|
||||
|
||||
if (typeof topics === 'string') {
|
||||
topics = [topics];
|
||||
topics = [web3.fromAscii(topics)];
|
||||
} else {
|
||||
// TODO: replace with es6 + babel;
|
||||
var _topics = [];
|
||||
|
@ -302,10 +303,17 @@ EmbarkJS.Messages.Whisper.listenTo = function(options) {
|
|||
|
||||
var filter = web3.shh.filter(filterOptions, function(err, result) {
|
||||
var payload = JSON.parse(web3.toAscii(result.payload));
|
||||
var data;
|
||||
if (err) {
|
||||
promise.error(err);
|
||||
} else {
|
||||
promise.cb(payload);
|
||||
data = {
|
||||
topic: topics.map((t) => web3.toAscii(t)),
|
||||
data: payload,
|
||||
from: result.from,
|
||||
time: (new Date(result.sent * 1000))
|
||||
};
|
||||
promise.cb(payload, data, result);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -371,9 +379,14 @@ EmbarkJS.Messages.Orbit.listenTo = function(options) {
|
|||
var promise = new messageEvents();
|
||||
|
||||
this.orbit.events.on('message', (topics, message) => {
|
||||
// Get the actual content of the message
|
||||
self.orbit.getPost(message.payload.value, true).then((post) => {
|
||||
promise.cb(post.content);
|
||||
var data = {
|
||||
topic: topics,
|
||||
data: post.content,
|
||||
from: post.meta.from.name,
|
||||
time: (new Date(post.meta.ts))
|
||||
};
|
||||
promise.cb(post.content, data, post);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue