Now reading messages and adding them to conversations. Some cleaning of unreachable code. Modified the message data to be encoded as base64 string before sending to server
Sending our public key in header of message Now attaching our key to the source field when sending messages, allows messages to be decrypted with the fallback cypher Now polling the server for messages every 5 seconds Sending the source device with messages Added mock respond function to request to leave it that same as the websocket stuff. RetrieveMessages now just returns the result Polling now continues if the server responds with an error. Returning only the result from sendMessage and retrieveMessages Revert commenting of unreachable code Refactored http logic into own file Revert a change to websocket-resourcespull/29/head
parent
1ccf3b6b95
commit
c59b196487
@ -0,0 +1,83 @@
|
||||
/* global window, dcodeIO, textsecure, StringView */
|
||||
|
||||
// eslint-disable-next-line func-names
|
||||
(function() {
|
||||
let server;
|
||||
|
||||
function stringToArrayBufferBase64(string) {
|
||||
return dcodeIO.ByteBuffer.wrap(string, 'base64').toArrayBuffer();
|
||||
}
|
||||
|
||||
const Response = function Response(options) {
|
||||
this.verb = options.verb || options.type;
|
||||
this.path = options.path || options.url;
|
||||
this.body = options.body || options.data;
|
||||
this.success = options.success;
|
||||
this.error = options.error;
|
||||
this.id = options.id;
|
||||
|
||||
if (this.id === undefined) {
|
||||
const bits = new Uint32Array(2);
|
||||
window.crypto.getRandomValues(bits);
|
||||
this.id = dcodeIO.Long.fromBits(bits[0], bits[1], true);
|
||||
}
|
||||
|
||||
if (this.body === undefined) {
|
||||
this.body = null;
|
||||
}
|
||||
};
|
||||
|
||||
const IncomingHttpResponse = function IncomingHttpResponse(options) {
|
||||
const request = new Response(options);
|
||||
|
||||
this.verb = request.verb;
|
||||
this.path = request.path;
|
||||
this.body = request.body;
|
||||
|
||||
this.respond = (status, message) => {
|
||||
// Mock websocket response
|
||||
window.log.info(status, message);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
window.HttpResource = function HttpResource(_server, opts = {}) {
|
||||
server = _server;
|
||||
let { handleRequest } = opts;
|
||||
if (typeof handleRequest !== 'function') {
|
||||
handleRequest = request => request.respond(404, 'Not found');
|
||||
};
|
||||
|
||||
this.startPolling = async function pollServer() {
|
||||
const myKeys = await textsecure.storage.protocol.getIdentityKeyPair();
|
||||
const pubKey = StringView.arrayBufferToHex(myKeys.pubKey)
|
||||
let result;
|
||||
try {
|
||||
result = await server.retrieveMessages(pubKey);
|
||||
} catch(err) {
|
||||
setTimeout(() => { pollServer(); }, 5000);
|
||||
return;
|
||||
}
|
||||
if (!result.messages) {
|
||||
setTimeout(() => { pollServer(); }, 5000);
|
||||
return;
|
||||
}
|
||||
result.messages.forEach(async message => {
|
||||
const { data } = message;
|
||||
const dataPlaintext = stringToArrayBufferBase64(data);
|
||||
const messageBuf = textsecure.protobuf.WebSocketMessage.decode(dataPlaintext);
|
||||
if (messageBuf.type === textsecure.protobuf.WebSocketMessage.Type.REQUEST) {
|
||||
handleRequest(
|
||||
new IncomingHttpResponse({
|
||||
verb: messageBuf.request.verb,
|
||||
path: messageBuf.request.path,
|
||||
body: messageBuf.request.body,
|
||||
id: messageBuf.request.id,
|
||||
})
|
||||
);
|
||||
}
|
||||
});
|
||||
setTimeout(() => { pollServer(); }, 5000);
|
||||
};
|
||||
};
|
||||
})();
|
Loading…
Reference in New Issue