Files
NightSpire/frontend/src/components/LoginForm.tsx
T
Inna cac0d28aa9 Añade Cloudflare Turnstile (captcha) a login, registro y recuperación
- Backend: helper verify_turnstile en _base (verifica el token contra
  challenges.cloudflare.com/siteverify; fail-closed ante error de red; si no hay
  secreto configurado, no bloquea). Se exige en el POST de login_view,
  register_view y recover_account_view -> rechazo con mensaje si falla.
- settings: TURNSTILE_SITE_KEY / TURNSTILE_SECRET_KEY desde .env (el secreto NO
  se commitea). La clave de sitio se expone a las plantillas por el context
  processor (TURNSTILE_SITE_KEY).
- Frontend: hook useTurnstile (carga el script de Cloudflare una vez y renderiza
  el widget, devuelve el token). LoginForm/RegisterForm/RecoverForm incluyen el
  widget, mandan cf-turnstile-response y deshabilitan el submit hasta tener token.
  El sitekey llega por data-sitekey en el div de montaje.

Verificado: sin token los 3 POST se rechazan; siteverify acepta la clave secreta
(error invalid-input-response con token falso, no invalid-input-secret).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-12 21:15:27 +00:00

159 lines
4.6 KiB
TypeScript

import { useState } from 'react'
import { useTurnstile } from '../turnstile'
interface Props {
loginUrl: string
successUrl: string
csrfToken: string
siteKey: string
}
type LoginResponse = {
success?: boolean
alert?: boolean
locked?: boolean
error?: string
}
export function LoginForm({ loginUrl, successUrl, csrfToken, siteKey }: Props) {
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [showPassword, setShowPassword] = useState(false)
const [buttonText, setButtonText] = useState('Conectar')
const [busy, setBusy] = useState(false)
const [message, setMessage] = useState<{ kind: 'ok' | 'err'; text: string } | null>(null)
const { ref: turnstileRef, token: captchaToken } = useTurnstile(siteKey)
function transientError(text: string) {
setMessage({ kind: 'err', text })
setBusy(false)
setButtonText('Conectar')
setTimeout(() => setMessage(null), 5000)
}
async function handleSubmit(e: React.FormEvent) {
e.preventDefault()
if (busy) return
if (email.trim() === '' || password.trim() === '') {
transientError('Por favor rellene todos los campos.')
return
}
setBusy(true)
setButtonText('Conectando')
setMessage(null)
const body = new URLSearchParams()
body.set('email', email.trim())
body.set('password', password.trim())
body.set('csrfmiddlewaretoken', csrfToken)
body.set('cf-turnstile-response', captchaToken)
try {
const resp = await fetch(loginUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'X-CSRFToken': csrfToken,
Accept: 'application/json',
},
credentials: 'same-origin',
body: body.toString(),
})
if (!resp.ok) throw new Error(`HTTP ${resp.status}`)
const data: LoginResponse = await resp.json()
if (data.success === true) {
setButtonText('Conectado')
setMessage({ kind: 'ok', text: 'Conexión exitosa. Redirigiendo…' })
setTimeout(() => {
window.location.href = successUrl
}, 3000)
} else if (data.alert === true) {
setButtonText('Sancionado')
setBusy(false)
} else if (data.locked === true) {
setButtonText('Seguridad')
setBusy(false)
} else {
transientError(data.error || 'Nombre de usuario / Contraseña incorrectos.')
}
} catch {
setTimeout(() => {
alert('Algo ha salido mal. Por favor intente más tarde')
window.location.reload()
}, 2000)
}
}
return (
<>
<form id="nw-login-form" onSubmit={handleSubmit} acceptCharset="utf-8">
<table className="middle-center-table">
<tbody>
<tr>
<td>
<input
type="email"
maxLength={320}
name="email"
id="username"
placeholder="Correo electrónico"
autoFocus
required
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
</td>
</tr>
<tr>
<td>
<input
type={showPassword ? 'text' : 'password'}
maxLength={16}
name="password"
id="password"
placeholder="Contraseña"
required
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
<span
className={`far toggle-password ${showPassword ? 'fa-eye-slash' : 'fa-eye'}`}
onClick={() => setShowPassword((v) => !v)}
/>
</td>
</tr>
<tr>
<td>
<div ref={turnstileRef} className="cf-turnstile" style={{ display: 'inline-block' }} />
</td>
</tr>
<tr>
<td>
<button
type="submit"
className="login-button"
id="login-button"
disabled={busy || (!!siteKey && !captchaToken)}
>
{buttonText}
</button>
</td>
</tr>
</tbody>
</table>
</form>
<hr />
<div className="alert-message" id="login-response">
{message && (
<span className={message.kind === 'ok' ? 'ok-form-response' : 'red-form-response'}>
{message.text}
</span>
)}
</div>
</>
)
}