mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-24 12:07:08 -04:00
Refactored dropbox to typescript
Signed-off-by: Yannick Bungers <git@innay.de> Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
parent
f628b85c05
commit
aaca777467
1 changed files with 21 additions and 16 deletions
|
@ -3,24 +3,29 @@ import { config } from '../../../config'
|
||||||
import { passportGeneralCallback } from '../utils'
|
import { passportGeneralCallback } from '../utils'
|
||||||
import { Router, Response, NextFunction, Request } from 'express'
|
import { Router, Response, NextFunction, Request } from 'express'
|
||||||
import * as DropboxStrategy from 'passport-dropbox-oauth2'
|
import * as DropboxStrategy from 'passport-dropbox-oauth2'
|
||||||
|
import { AuthMiddleware } from '../interface'
|
||||||
|
|
||||||
export const dropboxAuth = Router()
|
export const dropboxAuth = Router()
|
||||||
|
|
||||||
passport.use(new DropboxStrategy({
|
export const EmailMiddleware: AuthMiddleware = {
|
||||||
|
getMiddleware (): Router {
|
||||||
|
passport.use(new DropboxStrategy({
|
||||||
apiVersion: '2',
|
apiVersion: '2',
|
||||||
clientID: config.dropbox.clientID,
|
clientID: config.dropbox.clientID,
|
||||||
clientSecret: config.dropbox.clientSecret,
|
clientSecret: config.dropbox.clientSecret,
|
||||||
callbackURL: config.serverURL + '/auth/dropbox/callback'
|
callbackURL: config.serverURL + '/auth/dropbox/callback'
|
||||||
}, passportGeneralCallback))
|
}, passportGeneralCallback))
|
||||||
|
|
||||||
dropboxAuth.get('/auth/dropbox', function (req: Request, res: Response, next: NextFunction) {
|
dropboxAuth.get('/auth/dropbox', function (req: Request, res: Response, next: NextFunction) {
|
||||||
passport.authenticate('dropbox-oauth2')(req, res, next)
|
passport.authenticate('dropbox-oauth2')(req, res, next)
|
||||||
})
|
})
|
||||||
|
dropboxAuth.get('/auth/dropbox/callback',
|
||||||
// dropbox auth callback
|
|
||||||
dropboxAuth.get('/auth/dropbox/callback',
|
|
||||||
passport.authenticate('dropbox-oauth2', {
|
passport.authenticate('dropbox-oauth2', {
|
||||||
successReturnToOrRedirect: config.serverURL + '/',
|
successReturnToOrRedirect: config.serverURL + '/',
|
||||||
failureRedirect: config.serverURL + '/'
|
failureRedirect: config.serverURL + '/'
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
return dropboxAuth
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue