Handle unknown request types
// FREEBIE
This commit is contained in:
parent
3684001695
commit
a72c2968f2
2 changed files with 14 additions and 4 deletions
|
@ -38253,8 +38253,13 @@ MessageReceiver.prototype.extend({
|
||||||
// We do the message decryption here, instead of in the ordered pending queue,
|
// We do the message decryption here, instead of in the ordered pending queue,
|
||||||
// to avoid exposing the time it took us to process messages through the time-to-ack.
|
// to avoid exposing the time it took us to process messages through the time-to-ack.
|
||||||
|
|
||||||
// TODO: handle different types of requests. for now we blindly assume
|
// TODO: handle different types of requests.
|
||||||
// PUT /messages <encrypted Envelope>
|
if (request.path !== '/api/v1/message') {
|
||||||
|
console.log('got request', request.verb, request.path);
|
||||||
|
request.respond(200, 'OK');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) {
|
textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) {
|
||||||
var envelope = textsecure.protobuf.Envelope.decode(plaintext);
|
var envelope = textsecure.protobuf.Envelope.decode(plaintext);
|
||||||
// After this point, decoding errors are not the server's
|
// After this point, decoding errors are not the server's
|
||||||
|
|
|
@ -62,8 +62,13 @@ MessageReceiver.prototype.extend({
|
||||||
// We do the message decryption here, instead of in the ordered pending queue,
|
// We do the message decryption here, instead of in the ordered pending queue,
|
||||||
// to avoid exposing the time it took us to process messages through the time-to-ack.
|
// to avoid exposing the time it took us to process messages through the time-to-ack.
|
||||||
|
|
||||||
// TODO: handle different types of requests. for now we blindly assume
|
// TODO: handle different types of requests.
|
||||||
// PUT /messages <encrypted Envelope>
|
if (request.path !== '/api/v1/message') {
|
||||||
|
console.log('got request', request.verb, request.path);
|
||||||
|
request.respond(200, 'OK');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) {
|
textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) {
|
||||||
var envelope = textsecure.protobuf.Envelope.decode(plaintext);
|
var envelope = textsecure.protobuf.Envelope.decode(plaintext);
|
||||||
// After this point, decoding errors are not the server's
|
// After this point, decoding errors are not the server's
|
||||||
|
|
Loading…
Add table
Reference in a new issue