1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-26 04:03:03 +01:00

checkToken

This commit is contained in:
Flam3rboy 2021-02-05 15:19:24 +01:00
parent 7e76a787c9
commit 9b3209efd5

13
src/checkToken.ts Normal file
View File

@ -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);
});
});
}