import express from 'express' import cors from 'cors' import dotenv from 'dotenv' import { pool } from './db.js' import { sendPostalEmail } from './postal.js' dotenv.config() const app = express() app.use(cors()) app.use(express.json()) // Helper: normalize booking row fields to stable strings (avoid timezone surprises) function sanitizeBooking(row) { const normDate = (v) => { if (!v) return v if (typeof v === 'string') { // If it's a plain ISO date (no time), keep as-is const exact = /^(\d{4})-(\d{2})-(\d{2})$/.exec(v) if (exact) return `${exact[1]}-${exact[2]}-${exact[3]}` // If string contains time part, parse and convert to local date components if (v.includes('T')) { const d = new Date(v) if (!isNaN(d.getTime())) { const yyyy = d.getFullYear() const mm = String(d.getMonth() + 1).padStart(2, '0') const dd = String(d.getDate()).padStart(2, '0') return `${yyyy}-${mm}-${dd}` } } // Try generic parse fallback const d = new Date(v) if (!isNaN(d.getTime())) { const yyyy = d.getFullYear() const mm = String(d.getMonth() + 1).padStart(2, '0') const dd = String(d.getDate()).padStart(2, '0') return `${yyyy}-${mm}-${dd}` } return v } if (v instanceof Date) { const yyyy = v.getFullYear() const mm = String(v.getMonth() + 1).padStart(2, '0') const dd = String(v.getDate()).padStart(2, '0') return `${yyyy}-${mm}-${dd}` } return v } const normTime = (v) => { if (!v) return v if (typeof v === 'string') { // Expect 'HH:MM:SS' or 'HH:MM' const parts = v.split(':') if (parts.length >= 2) return `${parts[0].padStart(2,'0')}:${parts[1].padStart(2,'0')}` return v } return v } return { ...row, start_date: normDate(row.start_date), end_date: normDate(row.end_date), start_time: normTime(row.start_time), end_time: normTime(row.end_time), } } // Simple health app.get('/api/health', (req, res) => res.json({ ok: true })) // List available cargobikes app.get('/api/bikes', async (req, res) => { // fixed bike types const bikes = [1000, 2000, 3000, 4000, 5000] res.json({ bikes }) }) // Create a booking (supports single bike_type or multiple bike_types) app.post('/api/bookings', async (req, res) => { try { const { bike_type, bike_types, start_date, end_date, start_time, end_time, name, email } = req.body const multi = Array.isArray(bike_types) ? bike_types.filter((v) => Number.isFinite(Number(v))).map(Number) : [] const single = Number.isFinite(Number(bike_type)) ? Number(bike_type) : null if ((!single && multi.length === 0) || !start_date || !end_date || !name || !email) { return res.status(400).json({ error: 'Missing fields' }) } // Explicitly set status to 'pending' to avoid relying solely on DB defaults const text = `INSERT INTO bookings(bike_type, bike_types, start_date, start_time, end_date, end_time, name, email, status) VALUES($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING *` const values = [single, multi.length ? multi.join(',') : null, start_date, start_time || null, end_date, end_time || null, name, email, 'pending'] const result = await pool.query(text, values) res.status(201).json({ booking: sanitizeBooking(result.rows[0]) }) } catch (err) { console.error(err) res.status(500).json({ error: 'Server error' }) } }) // List bookings (simple) app.get('/api/bookings', async (req, res) => { try { const result = await pool.query('SELECT * FROM bookings ORDER BY created_at DESC LIMIT 100') res.json({ bookings: result.rows.map(sanitizeBooking) }) } catch (err) { console.error(err) res.status(500).json({ error: 'Server error' }) } }) // Update booking status app.patch('/api/bookings/:id/status', async (req, res) => { try { const id = Number(req.params.id) if (!Number.isFinite(id)) return res.status(400).json({ error: 'Invalid id' }) const { status } = req.body || {} const allowed = ['pending', 'accepted', 'refused'] if (!allowed.includes(status)) return res.status(400).json({ error: 'Invalid status' }) // Read current status to enforce immutability once accepted const current = await pool.query('SELECT * FROM bookings WHERE id = $1', [id]) if (current.rowCount === 0) return res.status(404).json({ error: 'Booking not found' }) const prev = current.rows[0] const currStatus = prev.status if (currStatus === 'accepted' && status !== 'accepted') { return res.status(400).json({ error: 'Accepted bookings cannot change status' }) } const result = await pool.query('UPDATE bookings SET status = $1 WHERE id = $2 RETURNING *', [status, id]) if (result.rowCount === 0) return res.status(404).json({ error: 'Booking not found' }) const updated = result.rows[0] // Respond immediately res.json({ booking: sanitizeBooking(updated) }) // Fire-and-forget: if newly accepted, send confirmation email (do not block response) if (status === 'accepted' && currStatus !== 'accepted') { try { await sendAcceptanceEmail(updated) } catch (e) { console.warn(`Postal email send failed for booking #${id}:`, e?.message || e) } } } catch (err) { console.error(err) res.status(500).json({ error: 'Server error' }) } }) // Compose and send acceptance email via Postal async function sendAcceptanceEmail(bookingRow) { const postalEnabled = process.env.POSTAL_URL && process.env.POSTAL_API_KEY && process.env.POSTAL_FROM if (!postalEnabled) { console.warn('Postal not configured (POSTAL_URL/POSTAL_API_KEY/POSTAL_FROM). Skipping email send.') return } const b = sanitizeBooking(bookingRow) // recipients: allow comma or semicolon separated values const recipients = String(b.email || '') .split(/[;,]/) .map(s => s.trim()) .filter(s => s.length > 0) if (recipients.length === 0) { console.warn(`Booking #${b.id} has no recipient email; skipping send.`) return } // bikes list from single or multi const bikeList = (() => { const parts = [] if (Number.isFinite(b.bike_type)) parts.push(String(b.bike_type)) if (typeof b.bike_types === 'string' && b.bike_types.trim()) { parts.push(...b.bike_types.split(',').map(s => s.trim()).filter(Boolean)) } return parts.join(', ') })() const rangeLabel = (() => { const sDate = b.start_date const eDate = b.end_date const st = (b.start_time && b.start_time.length) ? b.start_time : '00:00' const et = (b.end_time && b.end_time.length) ? b.end_time : '23:59' if (sDate && eDate && sDate === eDate) return `${toFR(sDate)} ${st} → ${et}` return `${toFR(sDate)} ${st} → ${toFR(eDate)} ${et}` })() const subject = 'AGEP – Confirmation de réservation de cargobike' const greeting = b.name ? `Bonjour ${b.name},` : 'Bonjour,' const text = `${greeting} Votre réservation de cargobike a été validée. Détails de la réservation: - Période: ${rangeLabel} - Cargobike(s): ${bikeList || '—'} Vous recevrez prochainement des informations complémentaires si nécessaire. Cordialement, Association AGEP` const html = `
${escapeHtml(greeting)}
Votre réservation de cargobike a été validée.
Détails de la réservation
• Période: ${escapeHtml(rangeLabel)}
• Cargobike(s): ${escapeHtml(bikeList || '—')}
Vous recevrez prochainement des informations complémentaires si nécessaire.
Cordialement,
Association AGEP