4da68597f7
Since we are about to release it's time to finally fix our linting. This patch basically runs eslint --fix and does some further manual fixes. Also it sets up eslint to fail on every warning on order to make warnings visable in the CI process. There should no functional change be introduced. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
29 lines
923 B
JavaScript
29 lines
923 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 { setReturnToFromReferer, passportGeneralCallback } = require('../utils')
|
|
|
|
let dropboxAuth = module.exports = Router()
|
|
|
|
passport.use(new DropboxStrategy({
|
|
apiVersion: '2',
|
|
clientID: config.dropbox.clientID,
|
|
clientSecret: config.dropbox.clientSecret,
|
|
callbackURL: config.serverURL + '/auth/dropbox/callback'
|
|
}, passportGeneralCallback))
|
|
|
|
dropboxAuth.get('/auth/dropbox', function (req, res, next) {
|
|
setReturnToFromReferer(req)
|
|
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 + '/'
|
|
})
|
|
)
|