File size: 1,063 Bytes
a6fbb8d
5a6eb7f
a6fbb8d
 
5a6eb7f
 
 
 
 
a6fbb8d
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
import jwt from "jsonwebtoken";
import { config } from "../configs/config";

export class jwtHelper {
  static generateToken(payload: any) {
    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) {
        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();
        });
      } else
        return res
          .status(401)
          .json({ success: false, code: 401, message: "Unauthorized" });
    };
  }
}