- Backend: payment_sessions + pairing_failures tables; payment.service.js and pairing-failure.service.js (new); rewritten pairing.service.js (payment-gated blast + targeted "Curhat lagi" + cancel + fallback); rewritten extension.service.js (data-driven auto-approve with offline safeguard, charge-at-approval); pricing.service.js (extension tiers without free trial); mitra-status.service.js (countAvailableMitras cached path); 60s sweeper for stale payment sessions - Backend routes: client.payment.routes, client.mitra-availability.routes, internal/failed-pairings.routes; client.chat.routes rewritten for payment-gated start + /returning + /cancel + /fallback-to-blast; internal/config.routes adds 4 new keys with Valkey invalidate publish - client_app: mitra-availability poll, payment screen + notifier, pairing notifier rewrite (PairingTargetedWaiting + PairingFailed states), targeted-waiting overlay + bestie-unavailable dialog, "Curhat lagi" CTA, failed-pairing terminal, extension via payment-session - mitra_app: PairingRequestType enum, returning-chat 20s countdown auto-dismiss, extension card "otomatis disetujui" copy - control_center: 4 new config rows in Settings, Failed Pairings page (filter + paginate + action menu), sidebar + route registered - Test infrastructure: Vitest backend (7/7 pass), Playwright CC (4/4 pass), Maestro mobile scaffold (CLI install pending) - Bugs found via Playwright + fixed: LoginPage labels not associated with inputs (a11y); backend internal CORS missing PATCH/PUT/DELETE in allow-methods (silent settings breakage in browsers since Stage 4) - Docs: phase3.7.md PRD, phase3.7-plan.md, phase3.7-questions.md (Q&A), phase3.7-testing.md (E2E checklist), phase3.7-test-run-2026-05-03.md (today's run results) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
76 lines
2.3 KiB
JavaScript
76 lines
2.3 KiB
JavaScript
import { getDb } from '../db/client.js'
|
|
|
|
const sql = getDb()
|
|
|
|
// Default tiers as fallback
|
|
const DEFAULT_TIERS = [
|
|
{ duration_minutes: 1, price: 5000, label: '1 Menit (Test)' },
|
|
{ duration_minutes: 15, price: 30000, label: '15 Menit' },
|
|
{ duration_minutes: 30, price: 60000, label: '30 Menit' },
|
|
{ duration_minutes: 45, price: 100000, label: '45 Menit' },
|
|
{ duration_minutes: 60, price: 150000, label: '60 Menit' },
|
|
{ duration_minutes: 1440, price: 250000, label: '24 Jam' },
|
|
]
|
|
|
|
export const getPriceTiers = async () => {
|
|
const [row] = await sql`SELECT value FROM app_config WHERE key = 'price_tiers'`
|
|
return row?.value?.tiers ?? DEFAULT_TIERS
|
|
}
|
|
|
|
export const isValidTier = async (durationMinutes, price) => {
|
|
const tiers = await getPriceTiers()
|
|
return tiers.some(
|
|
(t) => t.duration_minutes === durationMinutes && t.price === price
|
|
)
|
|
}
|
|
|
|
export const getFreeTrial = async () => {
|
|
const [enabledRow] = await sql`SELECT value FROM app_config WHERE key = 'free_trial_enabled'`
|
|
const [durationRow] = await sql`SELECT value FROM app_config WHERE key = 'free_trial_duration_minutes'`
|
|
return {
|
|
enabled: enabledRow?.value?.value ?? false,
|
|
duration_minutes: durationRow?.value?.value ?? 5,
|
|
}
|
|
}
|
|
|
|
export const isCustomerEligibleForFreeTrial = async (customerId) => {
|
|
const freeTrial = await getFreeTrial()
|
|
if (!freeTrial.enabled) return false
|
|
|
|
const [tx] = await sql`
|
|
SELECT id FROM customer_transactions
|
|
WHERE customer_id = ${customerId}
|
|
LIMIT 1
|
|
`
|
|
return !tx // Eligible only if no transactions at all
|
|
}
|
|
|
|
export const getPricingForCustomer = async (customerId) => {
|
|
const tiers = await getPriceTiers()
|
|
const freeTrialEligible = await isCustomerEligibleForFreeTrial(customerId)
|
|
const freeTrial = await getFreeTrial()
|
|
|
|
return {
|
|
tiers,
|
|
free_trial: freeTrialEligible
|
|
? { eligible: true, duration_minutes: freeTrial.duration_minutes }
|
|
: { eligible: false },
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Extension pricing tiers.
|
|
*
|
|
* Same shape as `getPricingForCustomer`, but free trial is NEVER eligible for extensions.
|
|
* The customerId is accepted for API symmetry/future tier personalization.
|
|
*/
|
|
// eslint-disable-next-line no-unused-vars
|
|
export const getExtensionPriceTiers = async (customerId) => {
|
|
const tiers = await getPriceTiers()
|
|
return {
|
|
tiers,
|
|
free_trial: { eligible: false },
|
|
is_free_trial: false,
|
|
}
|
|
}
|