
* Re-introduce outgoing message logging Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Websocket dumping * Sentry user count on API * Generate session ID upon opening websocket, fix gateway dumps * Async file io in src/gateway/events/Message.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Async file io in src/util/util/Config.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Make pre-commit hook executable Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Fixed sync file io in src/util/util/Config.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Fixed missing await call in src/util/util/AutoUpdate.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Add comment to src/gateway/events/Connection.ts Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> * Clean up gateway dumping code Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com> Co-authored-by: Madeline <46743919+MaddyUnderStars@users.noreply.github.com>
104 lines
2.8 KiB
TypeScript
104 lines
2.8 KiB
TypeScript
import { WebSocket, Payload, CLOSECODES, OPCODES } from "@fosscord/gateway";
|
|
import OPCodeHandlers from "../opcodes";
|
|
import { check } from "../opcodes/instanceOf";
|
|
import WS from "ws";
|
|
import { PayloadSchema } from "@fosscord/util";
|
|
import * as Sentry from "@sentry/node";
|
|
import BigIntJson from "json-bigint";
|
|
import path from "path";
|
|
import fs from "fs/promises";
|
|
const bigIntJson = BigIntJson({ storeAsString: true });
|
|
|
|
var erlpack: any;
|
|
try {
|
|
erlpack = require("@yukikaze-bot/erlpack");
|
|
} catch (error) {}
|
|
|
|
export async function Message(this: WebSocket, buffer: WS.Data) {
|
|
// TODO: compression
|
|
var data: Payload;
|
|
|
|
if (
|
|
(buffer instanceof Buffer && buffer[0] === 123) || // ASCII 123 = `{`. Bad check for JSON
|
|
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;
|
|
}
|
|
}
|
|
data = bigIntJson.parse(buffer as string);
|
|
} 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);
|
|
|
|
if (process.env.WS_VERBOSE)
|
|
console.log(`[Websocket] Incomming message: ${JSON.stringify(data)}`);
|
|
|
|
if (process.env.WS_DUMP) {
|
|
const id = this.session_id || "unknown";
|
|
|
|
await fs.mkdir(path.join("dump", this.session_id), { recursive: true });
|
|
await fs.writeFile(
|
|
path.join("dump", this.session_id, `${Date.now()}.in.json`),
|
|
JSON.stringify(data, null, 2),
|
|
);
|
|
|
|
if (!this.session_id)
|
|
console.log(
|
|
"[Gateway] Unknown session id, dumping to unknown folder",
|
|
);
|
|
}
|
|
|
|
check.call(this, PayloadSchema, data);
|
|
|
|
// @ts-ignore
|
|
const OPCodeHandler = OPCodeHandlers[data.op];
|
|
if (!OPCodeHandler) {
|
|
console.error("[Gateway] Unkown opcode " + data.op);
|
|
// TODO: if all opcodes are implemented comment this out:
|
|
// this.close(CLOSECODES.Unknown_opcode);
|
|
return;
|
|
}
|
|
|
|
const transaction =
|
|
data.op != 1
|
|
? Sentry.startTransaction({
|
|
op: OPCODES[data.op],
|
|
name: `GATEWAY ${OPCODES[data.op]}`,
|
|
data: {
|
|
...data.d,
|
|
token: data?.d?.token ? "[Redacted]" : undefined,
|
|
},
|
|
})
|
|
: undefined;
|
|
|
|
try {
|
|
var ret = await OPCodeHandler.call(this, data);
|
|
Sentry.withScope((scope) => {
|
|
scope.setSpan(transaction);
|
|
scope.setUser({ id: this.user_id });
|
|
transaction?.finish();
|
|
});
|
|
return ret;
|
|
} catch (error) {
|
|
Sentry.withScope((scope) => {
|
|
scope.setSpan(transaction);
|
|
if (this.user_id) scope.setUser({ id: this.user_id });
|
|
Sentry.captureException(error);
|
|
});
|
|
transaction?.finish();
|
|
console.error(`Error: Op ${data.op}`, error);
|
|
// if (!this.CLOSED && this.CLOSING)
|
|
return this.close(CLOSECODES.Unknown_error);
|
|
}
|
|
}
|