-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.js
733 lines (638 loc) · 23.7 KB
/
index.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
'use strict'
const url = require('url')
const http = require('http')
const https = require('https')
const { randomBytes, createHash } = require('node:crypto')
const fp = require('fastify-plugin')
const { AuthorizationCode } = require('simple-oauth2')
const kGenerateCallbackUriParams = Symbol.for('fastify-oauth2.generate-callback-uri-params')
const { promisify, callbackify } = require('node:util')
const DEFAULT_VERIFIER_COOKIE_NAME = 'oauth2-code-verifier'
const DEFAULT_REDIRECT_STATE_COOKIE_NAME = 'oauth2-redirect-state'
const USER_AGENT = 'fastify-oauth2'
const PKCE_METHODS = ['S256', 'plain']
const random = (bytes = 32) => randomBytes(bytes).toString('base64url')
const codeVerifier = random
const codeChallenge = verifier => createHash('sha256').update(verifier).digest('base64url')
function defaultGenerateStateFunction (request, callback) {
callback(null, random(16))
}
function defaultCheckStateFunction (request, callback) {
const state = request.query.state
const stateCookie =
request.cookies[
this.redirectStateCookieName
]
if (stateCookie && state === stateCookie) {
callback()
return
}
callback(new Error('Invalid state'))
}
function defaultGenerateCallbackUriParams (callbackUriParams) {
return callbackUriParams
}
/**
* @param {FastifyInstance} fastify
* @param {Partial<FastifyOAuth2Options>} options
* @param {Function} next
* @return {*}
*/
function fastifyOauth2 (fastify, options, next) {
if (typeof options.name !== 'string') {
return next(new Error('options.name should be a string'))
}
if (typeof options.credentials !== 'object') {
return next(new Error('options.credentials should be an object'))
}
if (typeof options.callbackUri !== 'string' && typeof options.callbackUri !== 'function') {
return next(new Error('options.callbackUri should be a string or a function'))
}
if (options.callbackUriParams && typeof options.callbackUriParams !== 'object') {
return next(new Error('options.callbackUriParams should be a object'))
}
if (options.tokenRequestParams && typeof options.tokenRequestParams !== 'object') {
return next(new Error('options.tokenRequestParams should be a object'))
}
if (options.generateStateFunction && typeof options.generateStateFunction !== 'function') {
return next(new Error('options.generateStateFunction should be a function'))
}
if (options.checkStateFunction && typeof options.checkStateFunction !== 'function') {
return next(new Error('options.checkStateFunction should be a function'))
}
if (options.startRedirectPath && typeof options.startRedirectPath !== 'string') {
return next(new Error('options.startRedirectPath should be a string'))
}
if (!options.generateStateFunction ^ !options.checkStateFunction) {
return next(new Error('options.checkStateFunction and options.generateStateFunction have to be given'))
}
if (options.tags && !Array.isArray(options.tags)) {
return next(new Error('options.tags should be a array'))
}
if (options.schema && typeof options.schema !== 'object') {
return next(new Error('options.schema should be a object'))
}
if (options.cookie && typeof options.cookie !== 'object') {
return next(new Error('options.cookie should be an object'))
}
if (options.userAgent && typeof options.userAgent !== 'string') {
return next(new Error('options.userAgent should be a string'))
}
if (options.pkce && (typeof options.pkce !== 'string' || !PKCE_METHODS.includes(options.pkce))) {
return next(new Error('options.pkce should be one of "S256" | "plain" when used'))
}
if (options.discovery && (typeof options.discovery !== 'object')) {
return next(new Error('options.discovery should be an object'))
}
if (options.discovery && (typeof options.discovery.issuer !== 'string')) {
return next(new Error('options.discovery.issuer should be a URL in string format'))
}
if (options.discovery && options.credentials.auth) {
return next(new Error('when options.discovery.issuer is configured, credentials.auth should not be used'))
}
if (!options.discovery && !options.credentials.auth) {
return next(new Error('options.discovery.issuer or credentials.auth have to be given'))
}
if (
options.verifierCookieName &&
typeof options.verifierCookieName !== 'string'
) {
return next(new Error('options.verifierCookieName should be a string'))
}
if (
options.redirectStateCookieName &&
typeof options.redirectStateCookieName !== 'string'
) {
return next(
new Error('options.redirectStateCookieName should be a string')
)
}
if (!fastify.hasReplyDecorator('cookie')) {
fastify.register(require('@fastify/cookie'))
}
const omitUserAgent = options.userAgent === false
const discovery = options.discovery
const userAgent = options.userAgent === false
? undefined
: (options.userAgent || USER_AGENT)
const configure = (configured, fetchedMetadata) => {
const {
name,
callbackUri,
callbackUriParams = {},
credentials,
tokenRequestParams = {},
scope,
generateStateFunction = defaultGenerateStateFunction,
checkStateFunction = defaultCheckStateFunction.bind({
redirectStateCookieName:
configured.redirectStateCookieName ||
DEFAULT_REDIRECT_STATE_COOKIE_NAME
}),
startRedirectPath,
tags = [],
schema = { tags },
redirectStateCookieName = DEFAULT_REDIRECT_STATE_COOKIE_NAME,
verifierCookieName = DEFAULT_VERIFIER_COOKIE_NAME
} = configured
if (userAgent) {
configured.credentials.http = {
...configured.credentials.http,
headers: {
'User-Agent': userAgent,
...configured.credentials.http?.headers
}
}
}
const generateCallbackUriParams = (credentials.auth && credentials.auth[kGenerateCallbackUriParams]) || defaultGenerateCallbackUriParams
const cookieOpts = Object.assign({ httpOnly: true, sameSite: 'lax' }, options.cookie)
const generateStateFunctionCallbacked = function (request, callback) {
const boundGenerateStateFunction = generateStateFunction.bind(fastify)
if (generateStateFunction.length <= 1) {
callbackify(function (request) {
return Promise.resolve(boundGenerateStateFunction(request))
})(request, callback)
} else {
boundGenerateStateFunction(request, callback)
}
}
function generateAuthorizationUriCallbacked (request, reply, callback) {
generateStateFunctionCallbacked(request, function (err, state) {
if (err) {
callback(err, null)
return
}
reply.setCookie(redirectStateCookieName, state, cookieOpts)
// when PKCE extension is used
let pkceParams = {}
if (configured.pkce) {
const verifier = codeVerifier()
const challenge = configured.pkce === 'S256' ? codeChallenge(verifier) : verifier
pkceParams = {
code_challenge: challenge,
code_challenge_method: configured.pkce
}
reply.setCookie(verifierCookieName, verifier, cookieOpts)
}
const urlOptions = Object.assign({}, generateCallbackUriParams(callbackUriParams, request, scope, state), {
redirect_uri: typeof callbackUri === 'function' ? callbackUri(request) : callbackUri,
scope,
state
}, pkceParams)
callback(null, oauth2.authorizeURL(urlOptions))
})
}
const generateAuthorizationUriPromisified = promisify(generateAuthorizationUriCallbacked)
function generateAuthorizationUri (request, reply, callback) {
if (!callback) {
return generateAuthorizationUriPromisified(request, reply)
}
generateAuthorizationUriCallbacked(request, reply, callback)
}
function startRedirectHandler (request, reply) {
generateAuthorizationUriCallbacked(request, reply, function (err, authorizationUri) {
if (err) {
reply.code(500).send(err.message)
return
}
reply.redirect(authorizationUri)
})
}
const cbk = function (o, request, code, pkceParams, callback) {
const body = Object.assign({}, tokenRequestParams, {
code,
redirect_uri: typeof callbackUri === 'function' ? callbackUri(request) : callbackUri
}, pkceParams)
return callbackify(o.oauth2.getToken.bind(o.oauth2, body))(callback)
}
function checkStateFunctionCallbacked (request, callback) {
const boundCheckStateFunction = checkStateFunction.bind(fastify)
if (checkStateFunction.length <= 1) {
Promise.resolve(boundCheckStateFunction(request))
.then(function (result) {
if (result) {
callback()
} else {
callback(new Error('Invalid state'))
}
})
.catch(function (err) { callback(err) })
} else {
boundCheckStateFunction(request, callback)
}
}
function getAccessTokenFromAuthorizationCodeFlowCallbacked (request, reply, callback) {
const code = request.query.code
const pkceParams = configured.pkce ? { code_verifier: request.cookies[verifierCookieName] } : {}
const _callback = typeof reply === 'function' ? reply : callback
if (reply && typeof reply !== 'function') {
// cleanup a cookie if plugin user uses (req, res, cb) signature variant of getAccessToken fn
clearCodeVerifierCookie(reply)
}
checkStateFunctionCallbacked(request, function (err) {
if (err) {
callback(err)
return
}
cbk(fastify[name], request, code, pkceParams, _callback)
})
}
const getAccessTokenFromAuthorizationCodeFlowPromisified = promisify(getAccessTokenFromAuthorizationCodeFlowCallbacked)
function getAccessTokenFromAuthorizationCodeFlow (request, reply, callback) {
const _callback = typeof reply === 'function' ? reply : callback
if (!_callback) {
return getAccessTokenFromAuthorizationCodeFlowPromisified(request, reply)
}
getAccessTokenFromAuthorizationCodeFlowCallbacked(request, reply, _callback)
}
function getNewAccessTokenUsingRefreshTokenCallbacked (refreshToken, params, callback) {
const accessToken = fastify[name].oauth2.createToken(refreshToken)
callbackify(accessToken.refresh.bind(accessToken, params))(callback)
}
const getNewAccessTokenUsingRefreshTokenPromisified = promisify(getNewAccessTokenUsingRefreshTokenCallbacked)
function getNewAccessTokenUsingRefreshToken (refreshToken, params, callback) {
if (!callback) {
return getNewAccessTokenUsingRefreshTokenPromisified(refreshToken, params)
}
getNewAccessTokenUsingRefreshTokenCallbacked(refreshToken, params, callback)
}
function revokeTokenCallbacked (token, tokenType, params, callback) {
const accessToken = fastify[name].oauth2.createToken(token)
callbackify(accessToken.revoke.bind(accessToken, tokenType, params))(callback)
}
const revokeTokenPromisified = promisify(revokeTokenCallbacked)
function revokeToken (token, tokenType, params, callback) {
if (!callback) {
return revokeTokenPromisified(token, tokenType, params)
}
revokeTokenCallbacked(token, tokenType, params, callback)
}
function revokeAllTokenCallbacked (token, params, callback) {
const accessToken = fastify[name].oauth2.createToken(token)
callbackify(accessToken.revokeAll.bind(accessToken, token, params))(callback)
}
const revokeAllTokenPromisified = promisify(revokeAllTokenCallbacked)
function revokeAllToken (token, params, callback) {
if (!callback) {
return revokeAllTokenPromisified(token, params)
}
revokeAllTokenCallbacked(token, params, callback)
}
function clearCodeVerifierCookie (reply) {
reply.clearCookie(verifierCookieName, cookieOpts)
}
const pUserInfo = promisify(userInfoCallbacked)
function userinfo (tokenSetOrToken, options, callback) {
const _callback = typeof options === 'function' ? options : callback
if (!_callback) {
return pUserInfo(tokenSetOrToken, options)
}
return userInfoCallbacked(tokenSetOrToken, options, _callback)
}
function userInfoCallbacked (tokenSetOrToken, { method = 'GET', via = 'header', params = {} } = {}, callback) {
if (!configured.discovery) {
callback(new Error('userinfo can not be used without discovery'))
return
}
const _method = method.toUpperCase()
if (!['GET', 'POST'].includes(_method)) {
callback(new Error('userinfo methods supported are only GET and POST'))
return
}
if (method === 'GET' && via === 'body') {
callback(new Error('body is supported only with POST'))
return
}
let token
if (typeof tokenSetOrToken !== 'object' && typeof tokenSetOrToken !== 'string') {
callback(new Error('you should provide token object containing access_token or access_token as string directly'))
return
}
if (typeof tokenSetOrToken === 'object') {
if (typeof tokenSetOrToken.access_token !== 'string') {
callback(new Error('access_token should be string'))
return
}
token = tokenSetOrToken.access_token
} else {
token = tokenSetOrToken
}
fetchUserInfo(fetchedMetadata.userinfo_endpoint, token, { method: _method, params, via }, callback)
}
const oauth2 = new AuthorizationCode(configured.credentials)
if (startRedirectPath) {
fastify.get(startRedirectPath, { schema }, startRedirectHandler)
}
const decoration = {
oauth2,
getAccessTokenFromAuthorizationCodeFlow,
getNewAccessTokenUsingRefreshToken,
generateAuthorizationUri,
revokeToken,
revokeAllToken,
userinfo
}
try {
fastify.decorate(name, decoration)
fastify.decorate(`oauth2${name.slice(0, 1).toUpperCase()}${name.slice(1)}`, decoration)
} catch (e) {
next(e)
}
}
if (discovery) {
discoverMetadata(discovery.issuer, (err, fetchedMetadata) => {
if (err) {
next(err)
return
}
const authFromMetadata = getAuthFromMetadata(fetchedMetadata)
const discoveredOptions = {
...options,
credentials: {
...options.credentials,
auth: authFromMetadata
}
}
// respect users choice if they provided PKCE method explicitly
// even with usage of discovery
if (!options.pkce) {
// otherwise select optimal pkce method for them,
discoveredOptions.pkce = selectPkceFromMetadata(fetchedMetadata)
}
configure(discoveredOptions, fetchedMetadata)
next()
})
} else {
configure(options)
next()
}
function discoverMetadata (issuer, cb) {
const discoveryUri = getDiscoveryUri(issuer)
const httpOpts = {
headers: {
/* c8 ignore next */
...options.credentials.http?.headers,
'User-Agent': userAgent
}
}
if (omitUserAgent) {
delete httpOpts.headers['User-Agent']
}
const req = (discoveryUri.startsWith('https://') ? https : http).get(discoveryUri, httpOpts, onDiscoveryResponse)
req.on('error', (e) => {
const err = new Error('Problem calling discovery endpoint. See innerError for details.')
err.innerError = e
cb(err)
})
function onDiscoveryResponse (res) {
let rawData = ''
res.on('data', (chunk) => { rawData += chunk })
res.on('end', () => {
try {
cb(null, JSON.parse(rawData))
} catch (err) {
cb(err)
}
})
}
}
function fetchUserInfo (userinfoEndpoint, token, { method, via, params }, cb) {
const httpOpts = {
method,
headers: {
/* c8 ignore next */
...options.credentials.http?.headers,
'User-Agent': userAgent,
Authorization: `Bearer ${token}`
}
}
if (omitUserAgent) {
delete httpOpts.headers['User-Agent']
}
const infoUrl = new URL(userinfoEndpoint)
let body
if (method === 'GET') {
Object.entries(params).forEach(([k, v]) => {
infoUrl.searchParams.append(k, v)
})
} else {
httpOpts.headers['Content-Type'] = 'application/x-www-form-urlencoded'
body = new URLSearchParams()
if (via === 'body') {
delete httpOpts.headers.Authorization
body.append('access_token', token)
}
Object.entries(params).forEach(([k, v]) => {
body.append(k, v)
})
}
const aClient = (userinfoEndpoint.startsWith('https://') ? https : http)
if (method === 'GET') {
aClient.get(infoUrl, httpOpts, onUserinfoResponse)
.on('error', errHandler)
return
}
const req = aClient.request(infoUrl, httpOpts, onUserinfoResponse)
.on('error', errHandler)
req.write(body.toString())
req.end()
function onUserinfoResponse (res) {
let rawData = ''
res.on('data', (chunk) => { rawData = chunk })
res.on('end', () => {
try {
cb(null, JSON.parse(rawData)) // should always be JSON since we don't do jwt auth response
} catch (err) {
cb(err)
}
})
}
function errHandler (e) {
const err = new Error('Problem calling userinfo endpoint. See innerError for details.')
err.innerError = e
cb(err)
}
}
}
function getDiscoveryUri (issuer) {
// eslint-disable-next-line
const parsed = url.parse(issuer)
if (parsed.pathname.includes('/.well-known/')) {
return issuer
} else {
let pathname
if (parsed.pathname.endsWith('/')) {
pathname = `${parsed.pathname}.well-known/openid-configuration`
} else {
pathname = `${parsed.pathname}/.well-known/openid-configuration`
}
return url.format({ ...parsed, pathname })
}
}
function selectPkceFromMetadata (metadata) {
const methodsSupported = metadata.code_challenge_methods_supported
if (methodsSupported && methodsSupported.length === 1 && methodsSupported.includes('plain')) {
return 'plain'
}
return 'S256'
}
function getAuthFromMetadata (metadata) {
/* bellow comments are from RFC 8414 (https://www.rfc-editor.org/rfc/rfc8414.html#section-2) documentation */
const processedResponse = {}
/*
authorization_endpoint
URL of the authorization server's authorization endpoint
[RFC6749]. This is REQUIRED unless no grant types are supported
that use the authorization endpoint.
*/
if (metadata.authorization_endpoint) {
const { path, host } = formatEndpoint(metadata.authorization_endpoint)
processedResponse.authorizePath = path
processedResponse.authorizeHost = host
}
/*
token_endpoint
URL of the authorization server's token endpoint [RFC6749]. This
is REQUIRED unless only the implicit grant type is supported.
*/
if (metadata.token_endpoint) {
const { path, host } = formatEndpoint(metadata.token_endpoint)
processedResponse.tokenPath = path
processedResponse.tokenHost = host
}
/*
revocation_endpoint
OPTIONAL. URL of the authorization server's OAuth 2.0 revocation
endpoint [RFC7009].
*/
if (metadata.revocation_endpoint) {
const { path } = formatEndpoint(metadata.revocation_endpoint)
processedResponse.revokePath = path
}
return processedResponse
}
function formatEndpoint (ep) {
const { host, protocol, pathname } = new URL(ep)
return { host: `${protocol}//${host}`, path: pathname }
}
fastifyOauth2.APPLE_CONFIGURATION = {
authorizeHost: 'https://appleid.apple.com',
authorizePath: '/auth/authorize',
tokenHost: 'https://appleid.apple.com',
tokenPath: '/auth/token',
revokePath: '/auth/revoke',
// kGenerateCallbackUriParams is used for dedicated behavior for each OAuth2.0 provider
// It can update the callbackUriParams based on requestObject, scope and state
//
// Symbol used in here because we would not like the user to modify this behavior and
// do not want to mess up with property name collision
[kGenerateCallbackUriParams]: function (callbackUriParams, requestObject, scope, state) {
const stringifyScope = Array.isArray(scope) ? scope.join(' ') : scope
// This behavior is not documented on Apple Developer Docs, but it displays through runtime error.
// Related Docs: https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_js/incorporating_sign_in_with_apple_into_other_platforms
// Related Issue: https://github.com/fastify/fastify-oauth2/issues/116
//
// `response_mode` must be `form_post` when scope include `email` or `name`
if (stringifyScope.includes('email') || stringifyScope.includes('name')) {
callbackUriParams.response_mode = 'form_post'
}
return callbackUriParams
}
}
fastifyOauth2.FACEBOOK_CONFIGURATION = {
authorizeHost: 'https://facebook.com',
authorizePath: '/v6.0/dialog/oauth',
tokenHost: 'https://graph.facebook.com',
tokenPath: '/v6.0/oauth/access_token'
}
fastifyOauth2.GITHUB_CONFIGURATION = {
tokenHost: 'https://github.com',
tokenPath: '/login/oauth/access_token',
authorizePath: '/login/oauth/authorize'
}
fastifyOauth2.GITLAB_CONFIGURATION = {
authorizeHost: 'https://gitlab.com',
authorizePath: '/oauth/authorize',
tokenHost: 'https://gitlab.com',
tokenPath: '/oauth/token',
revokePath: '/oauth/revoke'
}
fastifyOauth2.LINKEDIN_CONFIGURATION = {
authorizeHost: 'https://www.linkedin.com',
authorizePath: '/oauth/v2/authorization',
tokenHost: 'https://www.linkedin.com',
tokenPath: '/oauth/v2/accessToken',
revokePath: '/oauth/v2/revoke'
}
fastifyOauth2.GOOGLE_CONFIGURATION = {
authorizeHost: 'https://accounts.google.com',
authorizePath: '/o/oauth2/v2/auth',
tokenHost: 'https://www.googleapis.com',
tokenPath: '/oauth2/v4/token'
}
fastifyOauth2.MICROSOFT_CONFIGURATION = {
authorizeHost: 'https://login.microsoftonline.com',
authorizePath: '/common/oauth2/v2.0/authorize',
tokenHost: 'https://login.microsoftonline.com',
tokenPath: '/common/oauth2/v2.0/token'
}
fastifyOauth2.VKONTAKTE_CONFIGURATION = {
authorizeHost: 'https://oauth.vk.com',
authorizePath: '/authorize',
tokenHost: 'https://oauth.vk.com',
tokenPath: '/access_token'
}
fastifyOauth2.SPOTIFY_CONFIGURATION = {
authorizeHost: 'https://accounts.spotify.com',
authorizePath: '/authorize',
tokenHost: 'https://accounts.spotify.com',
tokenPath: '/api/token'
}
fastifyOauth2.DISCORD_CONFIGURATION = {
authorizeHost: 'https://discord.com',
authorizePath: '/api/oauth2/authorize',
tokenHost: 'https://discord.com',
tokenPath: '/api/oauth2/token',
revokePath: '/api/oauth2/token/revoke'
}
fastifyOauth2.TWITCH_CONFIGURATION = {
authorizeHost: 'https://id.twitch.tv',
authorizePath: '/oauth2/authorize',
tokenHost: 'https://id.twitch.tv',
tokenPath: '/oauth2/token',
revokePath: '/oauth2/revoke'
}
fastifyOauth2.VATSIM_CONFIGURATION = {
authorizeHost: 'https://auth.vatsim.net',
authorizePath: '/oauth/authorize',
tokenHost: 'https://auth.vatsim.net',
tokenPath: '/oauth/token'
}
fastifyOauth2.VATSIM_DEV_CONFIGURATION = {
authorizeHost: 'https://auth-dev.vatsim.net',
authorizePath: '/oauth/authorize',
tokenHost: 'https://auth-dev.vatsim.net',
tokenPath: '/oauth/token'
}
fastifyOauth2.EPIC_GAMES_CONFIGURATION = {
authorizeHost: 'https://www.epicgames.com',
authorizePath: '/id/authorize',
tokenHost: 'https://api.epicgames.dev',
tokenPath: '/epic/oauth/v1/token'
}
/**
* Yandex ID docs https://yandex.ru/dev/id/doc/en/
*/
fastifyOauth2.YANDEX_CONFIGURATION = {
authorizeHost: 'https://oauth.yandex.com',
authorizePath: '/authorize',
tokenHost: 'https://oauth.yandex.com',
tokenPath: '/token',
revokePath: '/revoke_token'
}
module.exports = fp(fastifyOauth2, {
fastify: '5.x',
name: '@fastify/oauth2'
})
module.exports.default = fastifyOauth2
module.exports.fastifyOauth2 = fastifyOauth2