Phase 5.x payment revamp + Xendit Stage-8 prep

- Backend wraps idn-finlogos npm at /assets/payment-icons/<slug>.svg with
  1y immutable cache. Mobile drops bundled SVGs (only placeholder remains)
  and fetches via flutter_cache_manager. payment_methods.icon is now a
  CSV of slugs; catalog emits icon_urls[]. CARDS tile renders Visa + MC +
  JCB side by side.
- Per-method min/max amount bounds (BIGINT, nullable). Picker greys out
  out-of-range tiles with subtitle; backend gates with INVALID_PAYMENT_AMOUNT
  (422). Defense in depth against stale-catalog clients.
- Xendit channel codes corrected from authoritative docs
  (BCA_VA -> BCA_VIRTUAL_ACCOUNT, CREDIT_CARD -> CARDS, ovo -> ovo-new,
  shopeepay -> shopee-pay, ...). 18 methods x 5 groups seeded with
  Xendit-published per-channel min/max.
- Re-runnable seed (ON CONFLICT DO NOTHING on payment_code + new unique
  index on group name). Operator CC edits never clobbered across re-runs.
  One-shot reset + inspect scripts under backend/.dev/.
- Customer redirect HTML pages at /payment/return/{success,failure},
  brand-styled with "Buka HaloBestie" CTA firing halobestie:// deeplink.
  URL scheme registered on Android (intent-filter w/ BROWSABLE on
  MainActivity) and iOS (CFBundleURLTypes). Waiting-payment poller still
  owns confirmation; deeplink just brings the activity to foreground.
- Control center payment-catalog page: min/max inputs + columns. Other
  CC pages restyled with new theme tokens (separate work, bundled here).

169/169 backend tests pass. See requirement/phase5-payment-revamp-2026-05-27.md
for the full revamp doc. Stage 8 (E2E) still pending: webhook URL routing
decision + two client_app follow-ups (legacy /chat/request removal,
extension Custom Tab).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-27 21:33:51 +08:00
parent 1f6d8e09ae
commit 2c95fd040d
53 changed files with 2389 additions and 832 deletions

View File

@@ -0,0 +1,31 @@
// Dump the current payment catalog for a quick visual sanity check after a
// reset. Read-only.
import 'dotenv/config'
import { getDb } from '../src/db/client.js'
const sql = getDb()
const rows = await sql`
SELECT g.name AS grp, m.display_name, m.payment_code, m.icon,
m.min_amount, m.max_amount, m.is_active
FROM payment_methods m
JOIN payment_method_groups g ON m.group_id = g.id
ORDER BY g.display_order, m.display_order
`
console.log(`${rows.length} methods across ${new Set(rows.map(r => r.grp)).size} groups\n`)
const w = (s, n) => String(s).padEnd(n)
const r = (s, n) => String(s).padStart(n)
console.log(w('Group', 18), w('Display', 26), w('Code', 26), w('Icon', 26), r('Min', 10), r('Max', 16))
console.log('-'.repeat(124))
for (const row of rows) {
console.log(
w(row.grp, 18),
w(row.display_name, 26),
w(row.payment_code, 26),
w(row.icon ?? '—', 26),
r(row.min_amount ?? '—', 10),
r(row.max_amount ?? '—', 16),
row.is_active ? '' : '(inactive)',
)
}
await sql.end()

View File

@@ -0,0 +1,28 @@
// One-shot wipe of the payment_methods + payment_method_groups tables in the
// current DATABASE_URL. Use when you want the seed in migrate.js to repopulate
// from scratch on the next migration run.
//
// Safe against payment_requests because that table does NOT FK into
// payment_methods — `xendit_payment_method` and `product_metadata.preferred_payment_code`
// are free-text columns.
//
// Usage:
// cd backend && node .dev/reset-payment-catalog.js
// cd backend && node src/db/migrate.js
import 'dotenv/config'
import { getDb } from '../src/db/client.js'
const sql = getDb()
const [{ count: methodCount }] = await sql`SELECT COUNT(*)::int AS count FROM payment_methods`
const [{ count: groupCount }] = await sql`SELECT COUNT(*)::int AS count FROM payment_method_groups`
console.log(`Before: ${methodCount} methods, ${groupCount} groups`)
// FK is payment_methods.group_id → payment_method_groups (ON DELETE RESTRICT),
// so methods must go first.
await sql`DELETE FROM payment_methods`
await sql`DELETE FROM payment_method_groups`
console.log('Wiped. Now run: node src/db/migrate.js')
await sql.end()