summary refs log tree commit diff
path: root/src/opcodes/Identify.ts
diff options
context:
space:
mode:
authorDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-22 22:30:36 -0500
committerDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-22 22:30:36 -0500
commit7d795903ef9264d4febb89c62bf4abb269ab8851 (patch)
treeba63b45ac0fd6258382045c6bc45d1435739fb66 /src/opcodes/Identify.ts
parentMerge branch 'master' of github.com:DiegoMagdaleno/fosscord-gateway (diff)
downloadserver-7d795903ef9264d4febb89c62bf4abb269ab8851.tar.xz
Config: Implement new configuration options
Diffstat (limited to '')
-rw-r--r--src/opcodes/Identify.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/opcodes/Identify.ts b/src/opcodes/Identify.ts

index f31eebfe..be805eda 100644 --- a/src/opcodes/Identify.ts +++ b/src/opcodes/Identify.ts
@@ -17,6 +17,7 @@ import { IdentifySchema } from "../schema/Identify"; import { Send } from "../util/Send"; import experiments from "./experiments.json"; import { check } from "./instanceOf"; +import { DefaultOptions, gatewayConfig } from "../util/Config"; // TODO: bot sharding // TODO: check priviliged intents @@ -29,7 +30,8 @@ export async function onIdentify(this: WebSocket, data: Payload) { const identify: IdentifySchema = data.d; try { - var decoded = await checkToken(identify.token); // will throw an error if invalid + const { jwtSecret } = (gatewayConfig.getAll() as DefaultOptions).security; + var decoded = await checkToken(identify.token, jwtSecret); // will throw an error if invalid } catch (error) { console.error("invalid token", error); return this.close(CLOSECODES.Authentication_failed);