Refactor login cookie with cookieOptions function (#2003)

This commit is contained in:
ekzyis 2025-03-22 19:36:04 -05:00 committed by GitHub
parent b54268a88f
commit 9b08988402
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,6 +9,9 @@ import { NostrAuthWithExplainer } from './nostr-auth'
import LoginButton from './login-button' import LoginButton from './login-button'
import { emailSchema } from '@/lib/validate' import { emailSchema } from '@/lib/validate'
import { OverlayTrigger, Tooltip } from 'react-bootstrap' import { OverlayTrigger, Tooltip } from 'react-bootstrap'
import { datePivot } from '@/lib/time'
import * as cookie from 'cookie'
import { cookieOptions } from '@/lib/auth'
export function EmailLoginForm ({ text, callbackUrl, multiAuth }) { export function EmailLoginForm ({ text, callbackUrl, multiAuth }) {
const disabled = multiAuth const disabled = multiAuth
@ -59,15 +62,14 @@ export default function Login ({ providers, callbackUrl, multiAuth, error, text,
// signup/signin awareness cookie // signup/signin awareness cookie
useEffect(() => { useEffect(() => {
const cookieOptions = [ // expire cookie if we're on /signup instead of /login
`signin=${!!signin}`, // since the server will only check if the cookie is set, not its value
'path=/', const options = cookieOptions({
'max-age=' + (signin ? 60 * 60 * 24 : 0), // 24 hours if signin is true, expire the cookie otherwise expires: signin ? datePivot(new Date(), { hours: 24 }) : 0,
'SameSite=Lax', maxAge: signin ? 86400 : 0,
process.env.NODE_ENV === 'production' ? 'Secure' : '' httpOnly: false
].filter(Boolean).join(';') })
document.cookie = cookie.serialize('signin', signin, options)
document.cookie = cookieOptions
}, [signin]) }, [signin])
if (router.query.type === 'lightning') { if (router.query.type === 'lightning') {