Skip to content
Snippets Groups Projects
Commit 97731497 authored by Leander Tolksdorf's avatar Leander Tolksdorf
Browse files

create validatetoken middleware

parent 98197adc
No related branches found
No related tags found
No related merge requests found
import { NextFunction, Request, Response } from "express";
import * as jwt from "jsonwebtoken";
function validateToken(req: Request, res: Response, next: NextFunction) {
const token = req.cookies.token;
//Get the jwt token from the head
const jwtSecret = process.env.JWT_SECRET;
//Try to validate the token and get data
try {
const jwtPayload = <any>jwt.verify(token, jwtSecret);
console.log(jwtPayload);
res.locals.user = jwtPayload;
next();
} catch (error) {
//If token is not valid, respond with 401 (unauthorized)
res.status(401).json({ success: false, error: "InvalidToken" });
return;
}
// //The token is valid for 1 hour
// //We want to send a new token on every request
// const { email, role } = jwtPayload;
// const newToken = jwt.sign({ email, role }, jwtSecret, {
// expiresIn: "1h",
// });
// res.setHeader("token", newToken);
//Call the next middleware or controller
// next();
}
export default validateToken;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment