From ea41892fef208b10c1bb322de7683c39ebab3dd5 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 5 Feb 2021 22:01:01 +0100 Subject: :wrench: build --- src/util/checkToken.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/util/checkToken.ts (limited to 'src/util/checkToken.ts') diff --git a/src/util/checkToken.ts b/src/util/checkToken.ts new file mode 100644 index 00000000..96c7806a --- /dev/null +++ b/src/util/checkToken.ts @@ -0,0 +1,13 @@ +import { JWTOptions } from "./Constants"; +import jwt from "jsonwebtoken"; +import Config from "./Config"; + +export function checkToken(token: string) { + return new Promise((res, rej) => { + jwt.verify(token, Config.getAll().api.security.jwtSecret, JWTOptions, (err, decoded: any) => { + if (err || !decoded) return rej("Invalid Token"); + + return res(decoded); + }); + }); +} -- cgit 1.5.1