From 4cb6c2639ff59f46de6cfc6ee73341a0b50254d2 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Mon, 31 Oct 2022 20:49:32 +1100 Subject: Rewrite gateway message decoding --- src/gateway/events/Message.ts | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'src/gateway') diff --git a/src/gateway/events/Message.ts b/src/gateway/events/Message.ts index 204f0025..b112fba0 100644 --- a/src/gateway/events/Message.ts +++ b/src/gateway/events/Message.ts @@ -16,20 +16,24 @@ export async function Message(this: WebSocket, buffer: WS.Data) { // TODO: compression var data: Payload; - if (this.encoding === "etf" && buffer instanceof Buffer) - data = erlpack.unpack(buffer); - else if (this.encoding === "json" && buffer instanceof Buffer && buffer[0] !== 123) { // bad check for "{" + if ( + (buffer instanceof Buffer && buffer[0] === 123) || + (typeof buffer === "string") + ) { + data = bigIntJson.parse(buffer.toString()); + } + else if (this.encoding === "json" && buffer instanceof Buffer) { if (this.inflate) { - try { - buffer = this.inflate.process(buffer) as any; - } catch { - buffer = buffer.toString() as any; - } + try { buffer = this.inflate.process(buffer) as any; } + catch { buffer = buffer.toString() as any; } } data = bigIntJson.parse(buffer as string); - } else if (typeof buffer == "string" || (buffer instanceof Buffer && buffer[0] == 123)) { - data = bigIntJson.parse(buffer as string); - } else return; + } + else if (this.encoding === "etf" && buffer instanceof Buffer) { + try { data = erlpack.unpack(buffer); } + catch { return this.close(CLOSECODES.Decode_error); } + } + else return this.close(CLOSECODES.Decode_error); check.call(this, PayloadSchema, data); -- cgit 1.4.1