Refactor openid cookie options

This commit is contained in:
Chocobozzz 2020-12-29 15:23:16 +01:00
parent b606abcfa2
commit 2dbeb03aed
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -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) {