File size: 2,470 Bytes
22d3c93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ed949d9
 
 
 
 
 
 
 
 
67ba593
 
 
 
 
 
 
 
 
22d3c93
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
# AmanPay container entrypoint β€” opt-in one-shot D1 runtime diagnostic, then exec the app.
#
# Default behavior (flag absent/0): immediately exec the app command UNCHANGED β€” zero overhead,
# no diagnostic, D1 fully dormant.
#
# When AMANPAY_D1_RUNTIME_DIAGNOSTIC=1: run scripts/d1_space_diagnostic.py ONCE (best-effort),
# then continue into ordinary startup. The diagnostic enables no storage, creates no database,
# restores/creates no snapshot, enables no WAL, exposes no endpoint, and must never block startup.
#
# Signal forwarding + clean shutdown are preserved by `exec`-ing the final app process (it becomes
# PID 1's replacement / receives SIGTERM directly).
set -eu

if [ "${AMANPAY_D1_RUNTIME_DIAGNOSTIC:-0}" = "1" ]; then
    echo "[d1-entrypoint] AMANPAY_D1_RUNTIME_DIAGNOSTIC=1 β†’ running one-shot runtime diagnostic (dormant probe)"
    # Never fatal: a failing/absent diagnostic must not prevent the application from starting.
    python scripts/d1_space_diagnostic.py \
        || echo "[d1-entrypoint] diagnostic exited non-zero (non-fatal); continuing to app startup"
else
    : # diagnostic disabled by default β€” no-op
fi

# D1.2 in-Space synthetic rollback-journal recovery proof (opt-in, isolated, fail-safe). Runs a
# single stage (create|restore|negatives) only when AMANPAY_D1_SPACE_PROOF=1, then continues into
# ordinary startup. It never enables customer storage/WAL, exposes no endpoint, and is never fatal.
if [ "${AMANPAY_D1_SPACE_PROOF:-0}" = "1" ]; then
    echo "[d1-entrypoint] AMANPAY_D1_SPACE_PROOF=1 β†’ running in-Space proof (stage=${AMANPAY_D1_SPACE_PROOF_STAGE:-create})"
    python scripts/d1_space_proof.py \
        || echo "[d1-entrypoint] space-proof exited non-zero (non-fatal); continuing to app startup"
fi

# D2 in-Space synthetic identity/lifecycle + recovery proof (opt-in, isolated, fail-safe). Runs a
# single stage (full|verify|negatives) only when AMANPAY_D2_SPACE_PROOF=1, then continues into
# ordinary startup. Strictly synthetic, no WAL, no participant data, never fatal.
if [ "${AMANPAY_D2_SPACE_PROOF:-0}" = "1" ]; then
    echo "[d1-entrypoint] AMANPAY_D2_SPACE_PROOF=1 β†’ running D2 in-Space proof (stage=${AMANPAY_D2_SPACE_PROOF_STAGE:-full})"
    python scripts/d2_space_proof.py \
        || echo "[d1-entrypoint] d2-space-proof exited non-zero (non-fatal); continuing to app startup"
fi

# Hand off to the application as PID-equivalent so SIGTERM/SIGINT reach it directly.
exec "$@"