Billetterie: - Partial refund support (STATUS_PARTIALLY_REFUNDED, refundedAmount field, migration) - Race condition fix: PESSIMISTIC_WRITE lock on stock decrement in transaction - Idempotency key on PaymentIntent::create, reuse existing PI if stripeSessionId set - Disable checkout when event ended (server 400 + template hide) - Webhook deduplication via cache (24h TTL on stripe event.id) - Email validation (filter_var) in OrderController guest flow - JSON cart validation (structure check before processing) - Invitation expiration after 7 days (isExpired method + landing page message) - Stripe Checkout fallback when JS fails to load (noscript + redirect) Config externalization: - Move Stripe fees (STRIPE_FEE_RATE, STRIPE_FEE_FIXED) and admin email (ADMIN_EMAIL) to .env/services.yaml - Replace all hardcoded contact@e-cosplay.fr across 13 files - MailerService: getAdminEmail()/getAdminFrom(), default $from=null resolves to admin UX & Accessibility: - ARIA tabs: role=tablist/tab/tabpanel, aria-selected, keyboard nav (arrows, Home, End) - aria-label on cart +/- buttons and editor toolbar buttons - tabindex=0 on editor toolbar buttons for keyboard access - data-confirm handler in app.js (was only in admin.js) - Cart error feedback on checkout failure - Billet designer save feedback (loading/success/error states) - Stock polling every 30s with rupture/low stock badges - Back to event link on payment page Security: - HTML sanitizer: BLOCKED_TAGS list (script, style, iframe, svg, etc.) - content fully removed - Stripe polling timeout (15s max) with fallback redirect - Rate limiting on public order access (20/5min) - .catch() on all fetch() calls (sortable, billet-designer) Tests (92% PHP, 100% JS lines): - PCOV added to dev Dockerfile - Test DB setup: .env.test with DATABASE_URL, Redis auth, Meilisearch key - Rate limiter disabled in test env - Makefile: test_db_setup, test_db_reset, run_test_php, run_test_coverage_php/js - New tests: InvitationFlowTest (21), AuditServiceTest (4), ExportServiceTest (9), InvoiceServiceTest (4) - New tests: SuspendedUserSubscriberTest, RateLimiterSubscriberTest, MeilisearchServiceTest - New tests: Stripe webhook payment_failed (6) + charge.refunded (6) - New tests: BilletBuyer refund, User suspended, OrganizerInvitation expiration - JS tests: stock polling (6), data-confirm (2), copy-url restore (1), editor ARIA (2), XSS (9), tabs keyboard (9) - ESLint + PHP CS Fixer: 0 errors - SonarQube exclusions aligned with vitest coverage config Infra: - Meilisearch consistency command (app:meilisearch:check-consistency --fix) + cron daily 3am - MeilisearchService: getAllDocumentIds(), listIndexes() Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
153 lines
5.5 KiB
JavaScript
153 lines
5.5 KiB
JavaScript
function formatEur(value) {
|
|
return value.toFixed(2).replace('.', ',') + ' \u20AC'
|
|
}
|
|
|
|
export function initCart() {
|
|
const billetterie = document.getElementById('billetterie')
|
|
if (!billetterie) return
|
|
|
|
const items = billetterie.querySelectorAll('[data-cart-item]')
|
|
const totalEl = document.getElementById('cart-total')
|
|
const countEl = document.getElementById('cart-count')
|
|
const checkoutBtn = document.getElementById('cart-checkout')
|
|
const errorEl = document.getElementById('cart-error')
|
|
const errorText = document.getElementById('cart-error-text')
|
|
if (!totalEl || !countEl) return
|
|
|
|
function updateTotals() {
|
|
let total = 0
|
|
let count = 0
|
|
|
|
for (const item of items) {
|
|
const price = Number.parseFloat(item.dataset.price) || 0
|
|
const qtyInput = item.querySelector('[data-cart-qty]')
|
|
const lineTotalEl = item.querySelector('[data-cart-line-total]')
|
|
const qty = Number.parseInt(qtyInput.value, 10) || 0
|
|
|
|
const lineTotal = price * qty
|
|
total += lineTotal
|
|
count += qty
|
|
|
|
lineTotalEl.textContent = formatEur(lineTotal)
|
|
}
|
|
|
|
totalEl.textContent = formatEur(total)
|
|
countEl.textContent = String(count)
|
|
|
|
if (checkoutBtn) {
|
|
checkoutBtn.disabled = count === 0
|
|
}
|
|
}
|
|
|
|
for (const item of items) {
|
|
const qtyInput = item.querySelector('[data-cart-qty]')
|
|
const minusBtn = item.querySelector('[data-cart-minus]')
|
|
const plusBtn = item.querySelector('[data-cart-plus]')
|
|
const max = Number.parseInt(item.dataset.max, 10) || 0
|
|
|
|
minusBtn.addEventListener('click', () => {
|
|
const current = Number.parseInt(qtyInput.value, 10) || 0
|
|
if (current > 0) {
|
|
qtyInput.value = current - 1
|
|
updateTotals()
|
|
}
|
|
})
|
|
|
|
plusBtn.addEventListener('click', () => {
|
|
const current = Number.parseInt(qtyInput.value, 10) || 0
|
|
if (max === 0 || current < max) {
|
|
qtyInput.value = current + 1
|
|
updateTotals()
|
|
}
|
|
})
|
|
}
|
|
|
|
if (checkoutBtn) {
|
|
checkoutBtn.addEventListener('click', () => {
|
|
const cart = []
|
|
for (const item of items) {
|
|
const qty = Number.parseInt(item.querySelector('[data-cart-qty]').value, 10) || 0
|
|
if (qty > 0) {
|
|
cart.push({ billetId: item.dataset.billetId, qty })
|
|
}
|
|
}
|
|
|
|
if (cart.length === 0) return
|
|
|
|
const orderUrl = checkoutBtn.dataset.orderUrl
|
|
if (!orderUrl) return
|
|
|
|
checkoutBtn.disabled = true
|
|
checkoutBtn.textContent = 'Chargement...'
|
|
if (errorEl) errorEl.classList.add('hidden')
|
|
|
|
globalThis.fetch(orderUrl, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(cart),
|
|
})
|
|
.then(r => {
|
|
if (!r.ok) throw new Error(r.status)
|
|
return r.json()
|
|
})
|
|
.then(data => {
|
|
if (data.redirect) {
|
|
globalThis.location.href = data.redirect
|
|
}
|
|
})
|
|
.catch(() => {
|
|
checkoutBtn.disabled = false
|
|
checkoutBtn.textContent = 'Commander'
|
|
if (errorEl && errorText) {
|
|
errorText.textContent = 'Une erreur est survenue. Veuillez reessayer.'
|
|
errorEl.classList.remove('hidden')
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
updateTotals()
|
|
|
|
const stockUrl = billetterie.dataset.stockUrl
|
|
if (stockUrl) {
|
|
setInterval(() => {
|
|
globalThis.fetch(stockUrl)
|
|
.then(r => r.json())
|
|
.then(stock => {
|
|
for (const item of items) {
|
|
const billetId = item.dataset.billetId
|
|
const qty = stock[billetId]
|
|
if (qty === undefined || qty === null) continue
|
|
|
|
const max = qty
|
|
item.dataset.max = String(max)
|
|
|
|
const qtyInput = item.querySelector('[data-cart-qty]')
|
|
qtyInput.max = max
|
|
|
|
const current = Number.parseInt(qtyInput.value, 10) || 0
|
|
if (max > 0 && current > max) {
|
|
qtyInput.value = max
|
|
}
|
|
|
|
const label = item.querySelector('[data-stock-label]')
|
|
if (label) {
|
|
if (max === 0) {
|
|
label.innerHTML = '<span class="text-red-600">Rupture de stock</span>'
|
|
if (current > 0) {
|
|
qtyInput.value = 0
|
|
}
|
|
} else if (max <= 10) {
|
|
label.innerHTML = '<span class="text-orange-500">Plus que ' + max + ' place' + (max > 1 ? 's' : '') + ' !</span>'
|
|
} else {
|
|
label.innerHTML = '<span class="text-gray-400">' + max + ' place' + (max > 1 ? 's' : '') + ' disponible' + (max > 1 ? 's' : '') + '</span>'
|
|
}
|
|
}
|
|
}
|
|
updateTotals()
|
|
})
|
|
.catch(() => {})
|
|
}, 30000)
|
|
}
|
|
}
|