Spaces:
Running
Running
File size: 1,125 Bytes
a6fbb8d 5a6eb7f a27d3dd a6fbb8d 677259a a27d3dd 5a6eb7f a6fbb8d 5a6eb7f 484fdbc 5a6eb7f 484fdbc 5a6eb7f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import jwt from "jsonwebtoken";
import { config } from "../configs/config";
import { IJwtLoginPayload } from "@common/interfaces/jwt-payload.interface";
export class JwtHelper {
static generateToken(payload: IJwtLoginPayload) {
return jwt.sign(payload, config.jwt.secret, {
expiresIn: config.jwt.expiresIn,
});
}
static verifyToken(role: any) {
return (req: any, res: any, next: any) => {
let authHeader = req.headers["authorization"];
const token = authHeader && authHeader.split(" ")[1];
if (!token) {
return res
.status(401)
.json({ success: false, code: 401, message: "Unauthorized" });
}
jwt.verify(token, config.jwt.secret, (err: any, tokenData: any) => {
if (err)
return res
.status(403)
.json({ success: false, code: 403, message: "Invalid Token!" });
if (!role.includes(tokenData.role))
return res
.status(401)
.json({ success: false, code: 401, message: "Unauthorized" });
req.tokenData = tokenData;
next();
});
};
}
}
|