1b0920d11f
Los 9 servicios con precio en euros (rename, customize, change-race, change-faction, level-up, gold, transfer, restore-item, send-gift) ahora ofrecen un selector de forma de pago con las 3 opciones: saldo PD, tarjeta (Stripe) o tarjeta (SumUp). - lib/dpoints: spendDPoints() descuenta PD de forma atómica (FOR UPDATE). - lib/pay-with-dpoints: paga con saldo PD, ejecuta la acción al momento y reembolsa si la ejecución falla; 100 PD = 1 €. - rutas checkout (character/[service] y gift): rama provider='pd' que valida saldo, descuenta, ejecuta fulfill y devuelve la URL de éxito (sin pasarela). - service-success: rama provider='pd' (la entrega ya se hizo en el checkout). - PaymentMethodSelect: componente compartido con coste por método y saldo; desactiva PD si no hay saldo suficiente. - Formularios (PaidServiceForm, Gold, Transfer, RestoreItems, SendGift) y sus páginas pasan el saldo PD y envían el método elegido + locale. - i18n: namespace Pay (es/en); añadidas claves Paid.restore-item que faltaban. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
63 lines
2.3 KiB
TypeScript
63 lines
2.3 KiB
TypeScript
import { getTranslations, setRequestLocale } from 'next-intl/server'
|
|
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 ServiceSuccessPage({
|
|
params,
|
|
searchParams,
|
|
}: {
|
|
params: Promise<{ locale: string }>
|
|
searchParams: Promise<{ service?: string; session_id?: string; provider?: string; ref?: string; name?: string }>
|
|
}) {
|
|
const { locale } = await params
|
|
setRequestLocale(locale)
|
|
const { service: urlService, session_id, provider, ref, name } = await searchParams
|
|
const t = await getTranslations('Paid')
|
|
|
|
// Entrega compartida con el webhook/reconciliación (idempotente vía reclamo atómico).
|
|
let status: 'delivered' | 'already' | 'error' = 'error'
|
|
let okName: string | null = null
|
|
let service = urlService ?? null
|
|
if (provider === 'pd') {
|
|
// Pago con saldo PD: la entrega ya se ejecutó en el checkout; aquí solo se muestra.
|
|
status = 'delivered'
|
|
okName = name ?? null
|
|
} else if (provider === 'sumup' && ref) {
|
|
const r = await fulfillSumUpCheckout(ref)
|
|
service = r.service ?? urlService ?? null
|
|
okName = r.character ?? null
|
|
if (r.ok) status = 'delivered'
|
|
else if (r.paid) status = 'already'
|
|
} else if (session_id) {
|
|
const r = await fulfillCheckoutSession(session_id, urlService)
|
|
service = r.service ?? urlService ?? null
|
|
if (r.ok) {
|
|
status = 'delivered'
|
|
okName = r.character
|
|
} else if (await isSessionPaid(session_id)) {
|
|
// Pago confirmado pero ya reclamado antes (webhook o recarga de la página).
|
|
status = 'already'
|
|
}
|
|
}
|
|
|
|
return (
|
|
<PageShell title={service ? t(`${service}.title`) : ''}>
|
|
<div className="box-content">
|
|
<div className="body-box-content centered">
|
|
{status === 'delivered' ? (
|
|
<span className="ok-form-response">{t(`${service}.success`, { name: okName ?? '' })}</span>
|
|
) : status === 'already' ? (
|
|
<span className="ok-form-response">{t('alreadyProcessed')}</span>
|
|
) : (
|
|
<span className="red-form-response">{t('error')}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</PageShell>
|
|
)
|
|
}
|