1 files changed, 13 insertions, 0 deletions
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);
+ });
+ });
+}
|