-
Notifications
You must be signed in to change notification settings - Fork 25
/
plugin.js
executable file
·284 lines (215 loc) · 8.41 KB
/
plugin.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
'use strict';
const Boom = require('@hapi/boom');
const CatboxObject = require('@hapi/catbox-object');
const Hoek = require('@hapi/hoek');
const Joi = require('joi');
const Crypto = require('./crypto');
const Keys = require('./keys');
const Token = require('./token');
const Utils = require('./utils');
const internals = {};
exports.plugin = {
pkg: require('../package.json'),
requirements: {
hapi: '>=20.0.0'
},
register: function (server) {
server.expose('_providers', []);
server.expose('_caching', false);
server.expose('_cacheName', '@hapi/jwt');
server.ext('onPreStart', internals.onPreStart);
server.auth.scheme('jwt', internals.implementation);
}
};
internals.onPreStart = function (server) {
const providers = server.plugins.jwt._providers;
const pendings = [];
for (let i = 0; i < providers.length; ++i) {
const provider = providers[i];
pendings.push(provider.initialize(`s${i}`));
}
return Promise.all(pendings);
};
internals.schema = {
algorithms: Joi.array()
.items(Joi.string().valid(...Keys.supportedAlgorithms))
.min(1)
.single()
};
internals.schema.strategy = Joi.object({
cache: Joi.object({
segment: Joi.forbidden(),
generateFunc: Joi.forbidden(),
cache: Joi.forbidden(),
shared: Joi.forbidden()
})
.unknown()
.default({
expiresIn: 7 * 24 * 60 * 60 * 1000, // 1 weeks
staleIn: 60 * 60 * 1000, // 1 hour
staleTimeout: 500, // 500 milliseconds
generateTimeout: 2 * 60 * 1000 // 2 minutes
}),
cookieName: Utils.validHttpTokenSchema
.optional()
.messages({
'string.pattern.base':
'Cookie name cannot start or end with special characters. Valid characters in cookie name are _, -, numbers and alphabets'
}),
headerName: Joi.any().when('cookieName', {
is: Joi.exist(),
then: Joi.string().forbidden().messages({ 'any.unknown': 'headerName not allowed when cookieName is specified' }),
otherwise: Utils.validHttpTokenSchema.optional()
.default('authorization')
.messages({
'string.pattern.base': 'Header name must be a valid header name following https://tools.ietf.org/html/rfc7230#section-3.2.6'
})
}),
headless: [Joi.string(), Joi.object({ alg: Joi.string().valid(...Keys.supportedAlgorithms).required(), typ: Joi.valid('JWT') }).unknown()],
httpAuthScheme: Joi.string().default('Bearer'),
keys: Joi.array().
items(
Joi.string(),
Joi.binary(),
Joi.func(),
{
key: Joi.valid('').default(''),
algorithms: Joi.array().items(Joi.valid('none')).length(1).single().required(),
kid: Joi.string()
},
{
key: Joi.alternatives([Joi.string(), Joi.binary()]).required(),
algorithms: internals.schema.algorithms,
kid: Joi.string()
},
{
uri: Joi.string().uri().required(),
rejectUnauthorized: Joi.boolean().default(true),
headers: Joi.object().pattern(/.+/, Joi.string()),
algorithms: internals.schema.algorithms
}
)
.min(1)
.single()
.when('verify', { is: false, otherwise: Joi.required() }),
unauthorizedAttributes: Joi.object().pattern(/.+/, Joi.string().allow(null, '')),
validate: Joi.func().allow(false).required(),
verify: Joi.object({
aud: Joi.array().items(Joi.string(), Joi.object().instance(RegExp)).min(1).single().allow(false).required(),
exp: Joi.boolean().default(true),
iss: Joi.array().items(Joi.string()).min(1).single().allow(false).required(),
nbf: Joi.boolean().default(true),
sub: Joi.array().items(Joi.string()).min(1).single().allow(false).required(),
maxAgeSec: Joi.number().integer().min(0).default(0),
timeSkewSec: Joi.number().integer().min(0).default(0)
})
.when('.validate', { is: Joi.not(false), then: Joi.allow(false) })
.required()
});
internals.implementation = function (server, options) {
Hoek.assert(options, 'JWT authentication options missing');
const settings = Joi.attempt(Hoek.clone(options), internals.schema.strategy);
settings.headless = Token.headless(settings);
const unauthorized = (message = null) => Boom.unauthorized(message, settings.httpAuthScheme, settings.unauthorizedAttributes);
const missing = unauthorized();
const provider = new Keys(server, settings);
if (provider.hasJwks &&
!server.plugins.jwt._caching) {
server.plugins.jwt._caching = true;
server.cache.provision({ provider: CatboxObject.Engine, name: server.plugins.jwt._cacheName });
}
return {
authenticate: async function (request, h) {
const result = { credentials: {} };
// Extract token
const token = internals.token(request, settings, missing, unauthorized);
// Decode token
try {
result.artifacts = Token.decode(token, settings);
}
catch (err) {
result.artifacts = err.artifacts;
return h.unauthenticated(unauthorized(err.message), result);
}
// Obtain keys
await provider.assign(result.artifacts, request);
if (!result.artifacts.keys) {
return h.unauthenticated(unauthorized(''), result);
}
// Verify token
if (settings.verify) {
try {
Token.verifyPayload(result.artifacts, settings.verify);
}
catch (err) {
return h.unauthenticated(unauthorized(err.message), result);
}
let valid = false;
for (const key of result.artifacts.keys) {
if (Crypto.verify(result.artifacts.raw, key.algorithm, key.key)) {
valid = true;
break;
}
}
if (!valid) {
return h.unauthenticated(unauthorized('Invalid token signature'), result);
}
}
result.credentials = result.artifacts.decoded.payload;
// Validate token
if (settings.validate) {
try {
var { isValid, credentials, response } = await settings.validate(result.artifacts, request, h);
}
catch (err) {
result.error = err;
return h.unauthenticated(unauthorized(err.message), result);
}
if (response !== undefined) {
return h.response(response).takeover();
}
if (credentials) {
result.credentials = credentials;
}
if (!isValid) {
return h.unauthenticated(unauthorized('Invalid credentials'), result);
}
}
return h.authenticated(result);
},
verify: function (auth) {
if (settings.verify) {
Token.verifyTime(auth.artifacts, settings.verify);
}
}
};
};
internals.token = function (request, settings, missing, unauthorized) {
// Read the authentication token from the source depending upon the setting
let authorization = null;
if (settings.headerName) {
authorization = request.headers[settings.headerName];
}
else {
authorization = request.state[settings.cookieName];
}
if (!authorization) {
throw missing;
}
// Authorization header will be like <Scheme> <Token>
if (settings.headerName) {
const parts = authorization.split(/\s+/);
if (parts[0].toLowerCase() !== settings.httpAuthScheme.toLowerCase()) {
throw missing;
}
if (parts.length !== 2) {
throw unauthorized('Bad HTTP authentication header format');
}
const token = parts[1];
if (!token) {
throw missing;
}
return token;
}
return authorization;
};