-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathjwt.js
37 lines (33 loc) · 901 Bytes
/
jwt.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
'use strict';
const Bounce = require('@hapi/bounce');
const { NotFoundError } = require('objection');
module.exports = (server, options) => ({
scheme: 'jwt',
options: {
keys: {
key: options.jwtKey,
algorithms: ['HS256']
},
verify: {
aud: false,
iss: false,
sub: false
},
httpAuthScheme: 'Token',
validate: async ({ decoded }, request) => {
const { userService } = request.services();
try {
return {
isValid: true,
credentials: await userService.findById(decoded.payload.id)
};
}
catch (error) {
Bounce.ignore(error, NotFoundError);
return {
isValid: false
};
}
}
}
});