Only the OAuth2 auth strategy was using the state parameter, which should be used as described in the RFC. The other auth strategies such as GitHub, GitLab or Google were lacking the state parameter. This change adds the required state parameter as well as enabling PKCE support on providers where it's possible. Signed-off-by: Erik Michelson <github@erik.michelson.eu>
31 lines
900 B
JavaScript
31 lines
900 B
JavaScript
'use strict'
|
|
|
|
const Router = require('express').Router
|
|
const passport = require('passport')
|
|
const DropboxStrategy = require('passport-dropbox-oauth2').Strategy
|
|
const config = require('../../../config')
|
|
const { passportGeneralCallback } = require('../utils')
|
|
|
|
const dropboxAuth = module.exports = Router()
|
|
|
|
passport.use(new DropboxStrategy({
|
|
apiVersion: '2',
|
|
clientID: config.dropbox.clientID,
|
|
clientSecret: config.dropbox.clientSecret,
|
|
callbackURL: config.serverURL + '/auth/dropbox/callback',
|
|
state: true,
|
|
pkce: true
|
|
}, passportGeneralCallback))
|
|
|
|
dropboxAuth.get('/auth/dropbox', function (req, res, next) {
|
|
passport.authenticate('dropbox-oauth2')(req, res, next)
|
|
})
|
|
|
|
// dropbox auth callback
|
|
dropboxAuth.get('/auth/dropbox/callback',
|
|
passport.authenticate('dropbox-oauth2', {
|
|
successReturnToOrRedirect: config.serverURL + '/',
|
|
failureRedirect: config.serverURL + '/'
|
|
})
|
|
)
|