mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-26 12:36:06 +02:00
90c2e90e2c
- Parallelized startup (60s → 15s) via ThreadPoolExecutor - Adaptive polling engine with ETag caching (no more bbox interrupts) - useCallback optimization for interpolation functions - Sliding LAYERS/INTEL edge panels replace bulky Record Panel - Modular fetcher architecture (flights, geo, infrastructure, financial, earth_observation) - Stable entity IDs for GDELT & News popups (PR #63, credit @csysp) - Admin auth (X-Admin-Key), rate limiting (slowapi), auto-updater - Docker Swarm secrets support, env_check.py validation - 85+ vitest tests, CI pipeline, geoJSON builder extraction - Server-side viewport bbox filtering reduces payloads 80%+ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Former-commit-id: f2883150b5bc78ebc139d89cc966a76f7d7c0408
34 lines
2.7 KiB
Python
34 lines
2.7 KiB
Python
# ─── ShadowBroker Backend Constants ──────────────────────────────────────────
|
|
# Centralized magic numbers. Import from here instead of hardcoding.
|
|
|
|
# ─── Flight Trails ──────────────────────────────────────────────────────────
|
|
FLIGHT_TRAIL_MAX_TRACKED = 2000 # Max concurrent tracked trails before LRU eviction
|
|
FLIGHT_TRAIL_POINTS_PER_FLIGHT = 200 # Max trail points kept per aircraft
|
|
TRACKED_TRAIL_TTL_S = 1800 # 30 min - trail TTL for tracked flights
|
|
DEFAULT_TRAIL_TTL_S = 300 # 5 min - trail TTL for non-tracked flights
|
|
|
|
# ─── Detection Thresholds ──────────────────────────────────────────────────
|
|
HOLD_PATTERN_DEGREES = 300 # Total heading change to flag holding pattern
|
|
GPS_JAMMING_NACP_THRESHOLD = 8 # NACp below this = degraded GPS signal
|
|
GPS_JAMMING_GRID_SIZE = 1.0 # 1 degree grid for aggregation
|
|
GPS_JAMMING_MIN_RATIO = 0.25 # 25% degraded aircraft to flag zone
|
|
|
|
# ─── Network & Circuit Breaker ──────────────────────────────────────────────
|
|
CIRCUIT_BREAKER_TTL_S = 120 # Skip domain for 2 min after total failure
|
|
DOMAIN_FAIL_TTL_S = 300 # Skip requests.get for 5 min, go straight to curl
|
|
CONNECT_TIMEOUT_S = 3 # Short connect timeout for fast firewall-block detection
|
|
|
|
# ─── Data Fetcher Intervals ────────────────────────────────────────────────
|
|
FAST_FETCH_INTERVAL_S = 60 # Flights, ships, satellites, military
|
|
SLOW_FETCH_INTERVAL_MIN = 30 # News, markets, space weather
|
|
CCTV_FETCH_INTERVAL_MIN = 1 # CCTV camera pipeline
|
|
LIVEUAMAP_FETCH_INTERVAL_HR = 12 # LiveUAMap scraper
|
|
|
|
# ─── External API ──────────────────────────────────────────────────────────
|
|
OPENSKY_RATE_LIMIT_S = 300 # Only re-fetch OpenSky every 5 minutes
|
|
OPENSKY_REQUEST_TIMEOUT_S = 15 # Timeout for OpenSky API calls
|
|
ROUTE_FETCH_TIMEOUT_S = 15 # Timeout for adsb.lol route lookups
|
|
|
|
# ─── Internet Outage Detection ─────────────────────────────────────────────
|
|
INTERNET_OUTAGE_MIN_SEVERITY = 0.10 # 10% drop minimum to show
|