Redirect on openid error
This commit is contained in:
parent
abcface9b5
commit
3640cc3363
@ -192,13 +192,13 @@ async function handleCb (peertubeHelpers, settingsManager, req, res) {
|
|||||||
|
|
||||||
if (!store.userAuthenticated) {
|
if (!store.userAuthenticated) {
|
||||||
logger.info('Received callback but cannot userAuthenticated function does not exist.')
|
logger.info('Received callback but cannot userAuthenticated function does not exist.')
|
||||||
return res.sendStatus(400)
|
return onCBError(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
const encryptedCodeVerifier = req.cookies[cookieName]
|
const encryptedCodeVerifier = req.cookies[cookieName]
|
||||||
if (!encryptedCodeVerifier) {
|
if (!encryptedCodeVerifier) {
|
||||||
logger.error('Received callback but code verifier not found in request cookie.')
|
logger.error('Received callback but code verifier not found in request cookie.')
|
||||||
return res.sendStatus(400)
|
return onCBError(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -242,10 +242,14 @@ async function handleCb (peertubeHelpers, settingsManager, req, res) {
|
|||||||
})
|
})
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error('Error in handle callback.', { err })
|
logger.error('Error in handle callback.', { err })
|
||||||
res.sendStatus(400)
|
onCBError(res)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onCBError (res) {
|
||||||
|
res.redirect('/login?externalAuthError=true')
|
||||||
|
}
|
||||||
|
|
||||||
async function encrypt (data) {
|
async function encrypt (data) {
|
||||||
const { algorithm, inputEncoding, outputEncoding } = encryptionOptions
|
const { algorithm, inputEncoding, outputEncoding } = encryptionOptions
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user