Ride-The-Lightning-RTL/routes/authCheck.js

16 lines
394 B
JavaScript
Raw Normal View History

2019-01-01 11:26:51 -05:00
const jwt = require("jsonwebtoken");
2019-02-24 12:00:39 -05:00
var common = require('../common');
2019-01-01 11:26:51 -05:00
module.exports = (req, res, next) => {
try {
const token = req.headers.authorization.split(" ")[1];
2019-02-24 12:00:39 -05:00
jwt.verify(token, common.secret_key);
2019-01-01 11:26:51 -05:00
next();
} catch (error) {
res.status(401).json({
message: "Authentication Failed!",
error: "Authentication Failed! Please Login First!"
});
}
};