mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 06:54:25 -05:00
3fb3ca54e9
Signed-off-by: Ralph Krimmel <rkrimme1@gwdg.de>
28 lines
869 B
JavaScript
28 lines
869 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')
|
|
|
|
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) {
|
|
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 + '/'
|
|
})
|
|
)
|