mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-01 04:55:42 +00:00
checkToken
This commit is contained in:
13
src/checkToken.ts
Normal file
13
src/checkToken.ts
Normal 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);
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user