forked from CodeChefVIT/webinar-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.js
45 lines (41 loc) · 1.17 KB
/
middleware.js
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
37
38
39
40
41
42
43
44
45
const jwt = require('jsonwebtoken'),
config = require('./config.js');
let checkToken = (req, res, next) => {
let token = req.headers['authorization']; // express headers
if(!token){
console.log('token not found');
res.json({
success: false,
message: 'No token found in header'
})
}
else{
if(token.startsWith('Bearer')){
// remove bearer from string
token = token.slice(7,token.length);
}
if(token){
jwt.verify(token, config.secret, (err, decoded) => {
if(err){
return res.json({
success: false,
message: 'Token is not valid'
});
}
else{
req.decoded = decoded;
next();
}
})
}
else{
return res.json({
success: false,
message: 'Auth token is not supplied'
});
}
}
}
module.exports = {
checkToken: checkToken
}