summary refs log tree commit diff
path: root/src/gateway/opcodes/instanceOf.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 18:24:21 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 23:35:18 +1000
commitf44f5d7ac2d24ff836c2e1d4b2fa58da04b13052 (patch)
treea6655c41bb3db79c30fd876b06ee60fe9cf70c9b /src/gateway/opcodes/instanceOf.ts
parentAllow edited_timestamp to passthrough in handleMessage (diff)
downloadserver-ts-f44f5d7ac2d24ff836c2e1d4b2fa58da04b13052.tar.xz
Refactor to mono-repo + upgrade packages
Diffstat (limited to 'src/gateway/opcodes/instanceOf.ts')
-rw-r--r--src/gateway/opcodes/instanceOf.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gateway/opcodes/instanceOf.ts b/src/gateway/opcodes/instanceOf.ts
new file mode 100644

index 00000000..6fd50852 --- /dev/null +++ b/src/gateway/opcodes/instanceOf.ts
@@ -0,0 +1,18 @@ +import { instanceOf } from "lambert-server"; +import { WebSocket } from "@fosscord/gateway"; +import { CLOSECODES } from "../util/Constants"; + +export function check(this: WebSocket, schema: any, data: any) { + try { + const error = instanceOf(schema, data, { path: "body" }); + if (error !== true) { + throw error; + } + return true; + } catch (error) { + console.error(error); + // invalid payload + this.close(CLOSECODES.Decode_error); + throw error; + } +}