mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-23 08:21:43 +00:00
Moving the storage of referrer information to main authorization check instead of doing it in the authentication source
Signed-off-by: Ralph Krimmel <rkrimme1@gwdg.de>
This commit is contained in:
parent
3e8cf5778f
commit
e0a8872742
2 changed files with 5 additions and 5 deletions
|
@ -6,6 +6,8 @@ module.exports = {
|
|||
if (req.user) {
|
||||
responseError(res, '403', 'Forbidden', 'oh no.')
|
||||
} else {
|
||||
if (!req.session) req.session = {}
|
||||
req.session.returnTo = req.originalUrl || config.serverUrl + '/';
|
||||
req.flash('error', 'You are not allowed to access this page. Maybe try logging in?')
|
||||
res.redirect(config.serverURL + '/')
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@ const config = require('../../../config')
|
|||
const models = require('../../../models')
|
||||
const logger = require('../../../logger')
|
||||
const { urlencodedParser } = require('../../utils')
|
||||
const { setReturnToFromReferer } = require('../utils')
|
||||
const fs = require('fs')
|
||||
const intersection = function (array1, array2) { return array1.filter((n) => array2.includes(n)) }
|
||||
|
||||
|
@ -77,13 +76,12 @@ passport.use(new SamlStrategy({
|
|||
})
|
||||
}))
|
||||
|
||||
samlAuth.get('/auth/saml', function (req, res, next) {
|
||||
setReturnToFromReferer(req)
|
||||
samlAuth.get('/auth/saml',
|
||||
passport.authenticate('saml', {
|
||||
successReturnToOrRedirect: config.serverURL + '/',
|
||||
failureRedirect: config.serverURL + '/'
|
||||
})(req, res, next)
|
||||
})
|
||||
)
|
||||
|
||||
samlAuth.post('/auth/saml/callback', urlencodedParser,
|
||||
passport.authenticate('saml', {
|
||||
|
|
Loading…
Reference in a new issue