Refactor openid cookie options
This commit is contained in:
parent
b606abcfa2
commit
2dbeb03aed
@ -189,21 +189,18 @@ async function loadSettingsAndCreateClient (registerExternalAuth, unregisterExte
|
|||||||
state,
|
state,
|
||||||
})
|
})
|
||||||
|
|
||||||
const encryptedCodeVerifier = await encrypt(codeVerifier)
|
const cookieOptions = {
|
||||||
res.cookie(cookieNamePrefix + 'code-verifier', encryptedCodeVerifier, {
|
|
||||||
secure: webserverUrl.startsWith('https://'),
|
secure: webserverUrl.startsWith('https://'),
|
||||||
httpOnly: true,
|
httpOnly: true,
|
||||||
sameSite: 'none',
|
sameSite: 'none',
|
||||||
maxAge: 1000 * 60 * 10 // 10 minutes
|
maxAge: 1000 * 60 * 10 // 10 minutes
|
||||||
})
|
}
|
||||||
|
|
||||||
|
const encryptedCodeVerifier = await encrypt(codeVerifier)
|
||||||
|
res.cookie(cookieNamePrefix + 'code-verifier', encryptedCodeVerifier, cookieOptions)
|
||||||
|
|
||||||
const encryptedState = await encrypt(state)
|
const encryptedState = await encrypt(state)
|
||||||
res.cookie(cookieNamePrefix + 'state', encryptedState, {
|
res.cookie(cookieNamePrefix + 'state', encryptedState, cookieOptions)
|
||||||
secure: webserverUrl.startsWith('https://'),
|
|
||||||
httpOnly: true,
|
|
||||||
sameSite: 'none',
|
|
||||||
maxAge: 1000 * 60 * 10 // 10 minutes
|
|
||||||
})
|
|
||||||
|
|
||||||
return res.redirect(redirectUrl)
|
return res.redirect(redirectUrl)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user