-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathauth.middleware.js
30 lines (26 loc) · 1001 Bytes
/
auth.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
const cacheUtil = require('../utils/cache.util');
const jwtUtil = require('../utils/jwt.util');
module.exports = async (req, res, next) => {
let token = req.headers.authorization;
if (token && token.startsWith('Bearer ')) {
token = token.slice(7, token.length);
}
if (token) {
try {
token = token.trim();
/* ---------------------- Check For Blacklisted Tokens ---------------------- */
const isBlackListed = await cacheUtil.get(token);
if (isBlackListed) {
return res.status(401).json({ message: 'Unauthorized' });
}
const decoded = await jwtUtil.verifyToken(token);
req.user = decoded;
req.token = token;
next();
} catch (error) {
return res.status(401).json({ message: 'Unauthorized' });
}
} else {
return res.status(400).json({ message: 'Authorization header is missing.' })
}
}