|
|
|
@ -3,10 +3,6 @@
|
|
|
|
|
|
|
|
|
|
const fetch = require('node-fetch');
|
|
|
|
|
|
|
|
|
|
// eslint-disable-next-line
|
|
|
|
|
const invert = p => new Promise((res, rej) => p.then(rej, res));
|
|
|
|
|
const firstOf = ps => invert(Promise.all(ps.map(invert)));
|
|
|
|
|
|
|
|
|
|
// Will be raised (to 3?) when we get more nodes
|
|
|
|
|
const MINIMUM_SUCCESSFUL_REQUESTS = 2;
|
|
|
|
|
class LokiMessageAPI {
|
|
|
|
@ -15,11 +11,6 @@ class LokiMessageAPI {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async sendMessage(pubKey, data, messageTimeStamp, ttl) {
|
|
|
|
|
const swarmNodes = await window.LokiSnodeAPI.getSwarmNodesByPubkey(pubKey);
|
|
|
|
|
if (!swarmNodes || swarmNodes.size === 0) {
|
|
|
|
|
throw Error('No swarm nodes to query!');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const data64 = dcodeIO.ByteBuffer.wrap(data).toString('base64');
|
|
|
|
|
const timestamp = Math.floor(Date.now() / 1000);
|
|
|
|
|
// Nonce is returned as a base64 string to include in header
|
|
|
|
@ -42,11 +33,12 @@ class LokiMessageAPI {
|
|
|
|
|
// Something went horribly wrong
|
|
|
|
|
throw err;
|
|
|
|
|
}
|
|
|
|
|
let completedRequests = 0;
|
|
|
|
|
|
|
|
|
|
const requests = Array.from(swarmNodes).map(async node => {
|
|
|
|
|
const doRequest = async nodeUrl => {
|
|
|
|
|
// TODO: Confirm sensible timeout
|
|
|
|
|
const options = {
|
|
|
|
|
url: `${node}${this.messageServerPort}/store`,
|
|
|
|
|
url: `${nodeUrl}${this.messageServerPort}/store`,
|
|
|
|
|
type: 'POST',
|
|
|
|
|
responseType: undefined,
|
|
|
|
|
timeout: 5000,
|
|
|
|
@ -69,8 +61,8 @@ class LokiMessageAPI {
|
|
|
|
|
response = await fetch(options.url, fetchOptions);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
log.error(options.type, options.url, 0, 'Error sending message');
|
|
|
|
|
window.LokiSnodeAPI.unreachableNode(pubKey, node);
|
|
|
|
|
throw HTTPError('fetch error', 0, e.toString());
|
|
|
|
|
window.LokiSnodeAPI.unreachableNode(pubKey, nodeUrl);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let result;
|
|
|
|
@ -86,7 +78,8 @@ class LokiMessageAPI {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (response.status >= 0 && response.status < 400) {
|
|
|
|
|
return result;
|
|
|
|
|
completedRequests += 1;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
log.error(
|
|
|
|
|
options.type,
|
|
|
|
@ -95,13 +88,32 @@ class LokiMessageAPI {
|
|
|
|
|
'Error sending message'
|
|
|
|
|
);
|
|
|
|
|
throw HTTPError('sendMessage: error response', response.status, result);
|
|
|
|
|
});
|
|
|
|
|
try {
|
|
|
|
|
// TODO: Possibly change this to require more than a single response?
|
|
|
|
|
const result = await firstOf(requests);
|
|
|
|
|
return result;
|
|
|
|
|
} catch (err) {
|
|
|
|
|
throw err;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let swarmNodes;
|
|
|
|
|
while (completedRequests < MINIMUM_SUCCESSFUL_REQUESTS) {
|
|
|
|
|
try {
|
|
|
|
|
swarmNodes = await window.LokiSnodeAPI.getSwarmNodesByPubkey(pubKey);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw new window.textsecure.EmptySwarmError(pubKey, e);
|
|
|
|
|
}
|
|
|
|
|
if (!swarmNodes || swarmNodes.size === 0) {
|
|
|
|
|
if (completedRequests !== 0) {
|
|
|
|
|
// TODO: Decide how to handle some completed requests but not enough
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
throw new window.textsecure.EmptySwarmError(
|
|
|
|
|
pubKey,
|
|
|
|
|
new Error('Ran out of swarm nodes to query')
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const remainingRequests = MINIMUM_SUCCESSFUL_REQUESTS - completedRequests;
|
|
|
|
|
await Promise.all(
|
|
|
|
|
Array.from(swarmNodes)
|
|
|
|
|
.splice(0, remainingRequests)
|
|
|
|
|
.map(nodeUrl => doRequest(nodeUrl))
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -172,15 +184,27 @@ class LokiMessageAPI {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
while (completedRequests < MINIMUM_SUCCESSFUL_REQUESTS) {
|
|
|
|
|
const remainingRequests = MINIMUM_SUCCESSFUL_REQUESTS - completedRequests;
|
|
|
|
|
const ourSwarmNodes = await window.LokiSnodeAPI.getOurSwarmNodes();
|
|
|
|
|
if (Object.keys(ourSwarmNodes).length < remainingRequests) {
|
|
|
|
|
// This means we don't have enough swarm nodes to meet the minimum threshold
|
|
|
|
|
let ourSwarmNodes;
|
|
|
|
|
try {
|
|
|
|
|
ourSwarmNodes = await window.LokiSnodeAPI.getOurSwarmNodes();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
throw window.textsecure.EmptySwarmError(
|
|
|
|
|
window.textsecure.storage.user.getNumber(),
|
|
|
|
|
e
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (!ourSwarmNodes || Object.keys(ourSwarmNodes).length === 0) {
|
|
|
|
|
if (completedRequests !== 0) {
|
|
|
|
|
// TODO: Decide how to handle some completed requests but not enough
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
throw window.textsecure.EmptySwarmError(
|
|
|
|
|
window.textsecure.storage.user.getNumber(),
|
|
|
|
|
new Error('Ran out of swarm nodes to query')
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const remainingRequests = MINIMUM_SUCCESSFUL_REQUESTS - completedRequests;
|
|
|
|
|
await Promise.all(
|
|
|
|
|
Object.entries(ourSwarmNodes)
|
|
|
|
|
.splice(0, remainingRequests)
|
|
|
|
|