f7a376bd7c
- /rename-character y /customize-character: renombrar/personalizar pagados por SumUp (getRenamePrice/getCustomizePrice). SumUp ahora es service-aware: columna home_stripelog.service; createSumUpCheckout guarda service+character; fulfillSumUpCheckout despacha a la acción del servicio (.char rename/customi) o, sin service, acredita PD. [service]/checkout acepta provider:'sumup'; PaidServiceForm acepta provider+confirmText; service-success maneja el return SumUp. Se eliminan las antiguas /rename y /customize (Stripe). - /revive-character (comparte ReviveServiceContent); se elimina /revive. - Renombres de ruta + todos sus enlaces: /account -> /my-account, /recruit -> /recruit-a-friend, /unstuck -> /unstuck-character. (/select-account y /api/account/* intactos.) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
55 lines
1.9 KiB
TypeScript
55 lines
1.9 KiB
TypeScript
import { setRequestLocale } from 'next-intl/server'
|
|
import { Link } from '@/i18n/navigation'
|
|
import { fulfillCheckoutSession } from '@/lib/fulfill'
|
|
import { isSessionPaid } from '@/lib/stripe'
|
|
import { fulfillSumUpCheckout } from '@/lib/sumup'
|
|
import { PageShell } from '@/components/PageShell'
|
|
|
|
export const dynamic = 'force-dynamic'
|
|
|
|
export default async function DPointsSuccessPage({
|
|
params,
|
|
searchParams,
|
|
}: {
|
|
params: Promise<{ locale: string }>
|
|
searchParams: Promise<{ provider?: string; session_id?: string; ref?: string }>
|
|
}) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const { provider, session_id, ref } = await searchParams
|
|
|
|
// Entrega compartida con el webhook/return (idempotente vía reclamo atómico).
|
|
let status: 'ok' | 'already' | 'error' = 'error'
|
|
|
|
if (provider === 'sumup' && ref) {
|
|
const r = await fulfillSumUpCheckout(ref)
|
|
if (r.ok) status = 'ok'
|
|
else if (r.paid) status = 'already'
|
|
} else if (session_id) {
|
|
const r = await fulfillCheckoutSession(session_id)
|
|
if (r.ok) status = 'ok'
|
|
else if (await isSessionPaid(session_id)) status = 'already'
|
|
}
|
|
|
|
return (
|
|
<PageShell title="Adquirir PD">
|
|
<div className="box-content">
|
|
<div className="body-box-content centered">
|
|
{status === 'ok' ? (
|
|
<span className="ok-form-response">¡Pago completado! Tus PD ya fueron acreditados a tu cuenta.</span>
|
|
) : status === 'already' ? (
|
|
<span className="ok-form-response">Este pago ya había sido procesado. Tus PD están acreditados.</span>
|
|
) : (
|
|
<span className="red-form-response">No pudimos confirmar tu pago. Si se realizó el cargo, contacta con soporte.</span>
|
|
)}
|
|
<br />
|
|
<br />
|
|
<p>
|
|
<Link href="/my-account">← Regresar a mi cuenta</Link>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</PageShell>
|
|
)
|
|
}
|