forked from fastify/fastify-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjwt.js
238 lines (200 loc) · 6.29 KB
/
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
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
'use strict'
const fp = require('fastify-plugin')
const jwt = require('jsonwebtoken')
const assert = require('assert')
const steed = require('steed')
const {
BadRequest,
Unauthorized
} = require('http-errors')
const badRequestErrorMessage = 'Format is Authorization: Bearer [token]'
function wrapStaticSecretInCallback (secret) {
return function (request, payload, cb) {
return cb(null, secret)
}
}
function fastifyJwt (fastify, options, next) {
if (!options.secret) {
return next(new Error('missing secret'))
}
if (options.options) {
return next(new Error('options prefix is deprecated'))
}
const secret = options.secret
let secretOrPrivateKey
let secretOrPublicKey
if (typeof secret === 'object' && !Buffer.isBuffer(secret)) {
if (!secret.private || !secret.public) {
return next(new Error('missing private key and/or public key'))
}
secretOrPrivateKey = secret.private
secretOrPublicKey = secret.public
} else {
secretOrPrivateKey = secretOrPublicKey = secret
}
let secretCallbackSign = secretOrPrivateKey
let secretCallbackVerify = secretOrPublicKey
if (typeof secretCallbackSign !== 'function') { secretCallbackSign = wrapStaticSecretInCallback(secretCallbackSign) }
if (typeof secretCallbackVerify !== 'function') { secretCallbackVerify = wrapStaticSecretInCallback(secretCallbackVerify) }
const decodeOptions = options.decode || {}
const signOptions = options.sign || {}
const verifyOptions = options.verify || {}
if (
signOptions &&
signOptions.algorithm &&
signOptions.algorithm.includes('RS') &&
(typeof secret === 'string' ||
secret instanceof Buffer)
) {
return next(new Error(`RSA Signatures set as Algorithm in the options require a private and public key to be set as the secret`))
}
if (
signOptions &&
signOptions.algorithm &&
signOptions.algorithm.includes('ES') &&
(typeof secret === 'string' ||
secret instanceof Buffer)
) {
return next(new Error(`ECDSA Signatures set as Algorithm in the options require a private and public key to be set as the secret`))
}
fastify.decorate('jwt', {
decode: decode,
options: {
decode: decodeOptions,
sign: signOptions,
verify: verifyOptions
},
secret: secret,
sign: sign,
verify: verify
})
fastify.decorateRequest('jwtVerify', requestVerify)
fastify.decorateReply('jwtSign', replySign)
next()
function decode (token, options) {
assert(token, 'missing token')
if (!options) {
options = Object.assign({}, decodeOptions)
}
return jwt.decode(token, options)
}
function sign (payload, options, callback) {
assert(payload, 'missing payload')
if (typeof options === 'function') {
callback = options
options = Object.assign({}, signOptions)
}
if (!options) {
options = Object.assign({}, signOptions)
}
if (typeof callback === 'function') {
jwt.sign(payload, secretOrPrivateKey, options, callback)
} else {
return jwt.sign(payload, secretOrPrivateKey, options)
}
}
function verify (token, options, callback) {
assert(token, 'missing token')
assert(secretOrPublicKey, 'missing secret')
if ((typeof options === 'function') && !callback) {
callback = options
options = Object.assign({}, verifyOptions)
}
if (!options) {
options = Object.assign({}, verifyOptions)
}
if (typeof callback === 'function') {
jwt.verify(token, secretOrPublicKey, options, callback)
} else {
return jwt.verify(token, secretOrPublicKey, options)
}
}
function replySign (payload, options, next) {
if (typeof options === 'function') {
next = options
options = Object.assign({}, signOptions)
} // support no options
if (!options) {
options = Object.assign({}, signOptions)
}
const reply = this
if (next === undefined) {
return new Promise(function (resolve, reject) {
reply.jwtSign(payload, options, function (err, val) {
err ? reject(err) : resolve(val)
})
})
}
if (!payload) {
return next(new Error('jwtSign requires a payload'))
}
steed.waterfall([
function getSecret (callback) {
secretCallbackSign(reply.request, payload, callback)
},
function sign (secretOrPrivateKey, callback) {
jwt.sign(payload, secretOrPrivateKey, options, callback)
}
], next)
}
function requestVerify (options, next) {
if (typeof options === 'function' && !next) {
next = options
options = Object.assign({}, verifyOptions)
} // support no options
if (!options) {
options = Object.assign({}, verifyOptions)
}
const request = this
if (next === undefined) {
return new Promise(function (resolve, reject) {
request.jwtVerify(options, function (err, val) {
err ? reject(err) : resolve(val)
})
})
}
let token
if (request.headers && request.headers.authorization) {
let parts = request.headers.authorization.split(' ')
if (parts.length === 2) {
let scheme = parts[0]
token = parts[1]
if (!/^Bearer$/i.test(scheme)) {
return next(new BadRequest(badRequestErrorMessage))
}
} else {
return next(new BadRequest(badRequestErrorMessage))
}
} else {
return next(new Unauthorized('No Authorization was found in request.headers'))
}
let decodedToken = jwt.decode(token, decodeOptions)
steed.waterfall([
function getSecret (callback) {
secretCallbackVerify(request, decodedToken, callback)
},
function verify (secretOrPublicKey, callback) {
jwt.verify(token, secretOrPublicKey, options, (err, result) => {
if (err instanceof jwt.TokenExpiredError) {
return callback(new Unauthorized('Authorization token expired'))
}
if (err instanceof jwt.JsonWebTokenError) {
return callback(new Unauthorized('Authorization token is invalid: ' + err.message))
}
callback(err, result)
})
}
], function (err, result) {
if (err) {
next(err)
} else {
request.user = result
next(null, result)
}
})
}
}
module.exports = fp(fastifyJwt, {
fastify: '>=1.0.0',
name: 'fastify-jwt'
})