Compare commits
8
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d2b722c64 | ||
|
|
5537b095df | ||
|
|
8892e824fc | ||
|
|
3f69879437 | ||
|
|
fb0bb15c22 | ||
|
|
a9197709f8 | ||
|
|
8dd636af8f | ||
|
|
e27f8f6636 |
@@ -1452,6 +1452,8 @@ async def _apply_and_log(decision: dict, ctx: dict) -> Optional[str]:
|
|||||||
equivalent to reading the flat fields today.
|
equivalent to reading the flat fields today.
|
||||||
"""
|
"""
|
||||||
incident_id = await _apply_decision(decision, ctx)
|
incident_id = await _apply_decision(decision, ctx)
|
||||||
|
if ctx.get("reassignment"):
|
||||||
|
await _release_reassigned_units(ctx, incident_id)
|
||||||
corr_debug = decision.get("corr_debug") or {}
|
corr_debug = decision.get("corr_debug") or {}
|
||||||
if corr_debug:
|
if corr_debug:
|
||||||
scene_index = ctx.get("scene_index", 0)
|
scene_index = ctx.get("scene_index", 0)
|
||||||
@@ -1861,6 +1863,71 @@ def _call_fits_incident(
|
|||||||
return False, "no_signal"
|
return False, "no_signal"
|
||||||
|
|
||||||
|
|
||||||
|
def _apply_unit_clearance(inc: dict, cleared: list[str]) -> tuple[list[str], list[str], bool]:
|
||||||
|
"""
|
||||||
|
Merge `cleared` into inc's units_active/units_cleared. Shared by
|
||||||
|
_update_incident (explicit 10-8/back-in-service extraction) and
|
||||||
|
_release_reassigned_units (server-26#<pending> pattern B: a unit accepting
|
||||||
|
a new dispatch, reassignment=True, is real-world evidence they're off
|
||||||
|
their prior call even without an explicit clearance phrase).
|
||||||
|
|
||||||
|
Returns (units_active, units_cleared, auto_resolved) — auto_resolved is
|
||||||
|
True when every tracked unit has now cleared, matching the resolve gate
|
||||||
|
at the bottom of _update_incident.
|
||||||
|
"""
|
||||||
|
units_active = list(inc.get("units_active") or [])
|
||||||
|
units_cleared = list(inc.get("units_cleared") or [])
|
||||||
|
for u in cleared:
|
||||||
|
if u in units_active:
|
||||||
|
units_active.remove(u)
|
||||||
|
if u not in units_cleared:
|
||||||
|
units_cleared.append(u)
|
||||||
|
auto_resolved = bool(units_cleared) and not units_active
|
||||||
|
return units_active, units_cleared, auto_resolved
|
||||||
|
|
||||||
|
|
||||||
|
async def _release_reassigned_units(ctx: dict, exclude_incident_id: Optional[str]) -> None:
|
||||||
|
"""
|
||||||
|
server-26#<pending>: reassignment=True means a unit is accepting a NEW
|
||||||
|
dispatch — real-world evidence they're off whatever they were on before,
|
||||||
|
even when they never say an explicit 10-8/clear phrase (dispatch: "are
|
||||||
|
you able to clear and take a run at X" / unit: "10-4" carries no
|
||||||
|
self-reported clearance language intelligence.py's cleared_units
|
||||||
|
extraction looks for). Without this, that unit's prior incident is only
|
||||||
|
ever closed by the 90-minute idle sweep, not a real clear.
|
||||||
|
|
||||||
|
Scoped to OTHER active incidents (exclude_incident_id keeps this call's
|
||||||
|
own outcome untouched) with unit overlap in units_active — mirrors the
|
||||||
|
unit-continuity candidate scan at :1142 but releases instead of links.
|
||||||
|
"""
|
||||||
|
call_units = ctx.get("call_units")
|
||||||
|
if not call_units:
|
||||||
|
return
|
||||||
|
system_id = ctx.get("system_id")
|
||||||
|
now = ctx["now"]
|
||||||
|
unit_set = _unit_keys(call_units)
|
||||||
|
for inc in ctx.get("all_active") or []:
|
||||||
|
if inc.get("incident_id") == exclude_incident_id:
|
||||||
|
continue
|
||||||
|
if system_id and system_id not in (inc.get("system_ids") or []):
|
||||||
|
continue
|
||||||
|
matched = [u for u in (inc.get("units_active") or []) if _normalize_unit(u) in unit_set]
|
||||||
|
if not matched:
|
||||||
|
continue
|
||||||
|
units_active, units_cleared, auto_resolved = _apply_unit_clearance(inc, matched)
|
||||||
|
updates = {"units_active": units_active, "units_cleared": units_cleared}
|
||||||
|
if auto_resolved:
|
||||||
|
updates["status"] = "resolved"
|
||||||
|
updates["resolved_at"] = now.isoformat()
|
||||||
|
await fstore.doc_set("incidents", inc["incident_id"], updates)
|
||||||
|
logger.info(
|
||||||
|
f"Correlator: reassignment released unit(s) {matched} from incident "
|
||||||
|
f"{inc['incident_id']}" + (" (auto-resolved)" if auto_resolved else "")
|
||||||
|
)
|
||||||
|
if auto_resolved:
|
||||||
|
await maybe_resolve_parent(inc["incident_id"])
|
||||||
|
|
||||||
|
|
||||||
async def _update_incident(
|
async def _update_incident(
|
||||||
inc: dict,
|
inc: dict,
|
||||||
call_id: str,
|
call_id: str,
|
||||||
@@ -1904,11 +1971,8 @@ async def _update_incident(
|
|||||||
for u in call_units:
|
for u in call_units:
|
||||||
if u not in units_cleared and u not in units_active:
|
if u not in units_cleared and u not in units_active:
|
||||||
units_active.append(u)
|
units_active.append(u)
|
||||||
for u in (cleared_units or []):
|
inc_with_active_update = {**inc, "units_active": units_active, "units_cleared": units_cleared}
|
||||||
if u in units_active:
|
units_active, units_cleared, _ = _apply_unit_clearance(inc_with_active_update, cleared_units or [])
|
||||||
units_active.remove(u)
|
|
||||||
if u not in units_cleared:
|
|
||||||
units_cleared.append(u)
|
|
||||||
|
|
||||||
# The incident's label and its pin are resolved together, as one value.
|
# The incident's label and its pin are resolved together, as one value.
|
||||||
location = clean_location(location)
|
location = clean_location(location)
|
||||||
|
|||||||
@@ -64,9 +64,9 @@ Response format — a JSON object with a "scenes" array. Each scene:
|
|||||||
Rules:
|
Rules:
|
||||||
- location: prefer intersections > addresses > mile markers > route+town > route alone > town alone. Dispatch-provided addresses take priority over unit-reported positions. Empty string if none.
|
- location: prefer intersections > addresses > mile markers > route+town > route alone > town alone. Dispatch-provided addresses take priority over unit-reported positions. Empty string if none.
|
||||||
- tags: describe WHAT happened, not WHERE. Specific, lowercase, hyphenated. Do not use location names, road names, talkgroup names, or place names as tags (wrong: "lower-macy's", "canvas-route-6", "route-202"; right: "suspect-search", "shoplifting", "vehicle-pursuit"). Do not repeat incident_type as a tag.
|
- tags: describe WHAT happened, not WHERE. Specific, lowercase, hyphenated. Do not use location names, road names, talkgroup names, or place names as tags (wrong: "lower-macy's", "canvas-route-6", "route-202"; right: "suspect-search", "shoplifting", "vehicle-pursuit"). Do not repeat incident_type as a tag.
|
||||||
- units: ONLY identifiers that appear verbatim in the transcript. Use speaker role inference to distinguish units being dispatched from units acknowledging — both should be included. Never infer or guess unit IDs not present in the text.
|
- units: ONLY identifiers that appear verbatim in the transcript. Use speaker role inference to distinguish units being dispatched from units acknowledging — both should be included. Never infer or guess unit IDs not present in the text. If a unit ID format is given below, use it to recognise a unit spoken in a shortened or partial form (e.g. just the phonetic name alone) as the same unit — but still only extract what is actually said, never fabricate the full form.
|
||||||
- Do not invent details not present in the transcript.
|
- Do not invent details not present in the transcript.
|
||||||
- incident_type: let the talkgroup channel be your primary signal. Use "fire" ONLY if the talkgroup is clearly a fire/rescue channel OR the transcript explicitly describes active fire, smoke, flames, or structure fire activation. Police or EMS referencing a fire scene → use "police" or "ems". When the channel is a police channel and nothing in the transcript contradicts it, return "police" — do NOT fall back to "other" merely because the transmission is administrative. Reserve "other" for traffic that genuinely belongs to no emergency service (rail operations, public works, utility coordination). Reserve "unknown" for transcripts too garbled to place at all.
|
- incident_type: FIRST decide whether this transmission has any incident behind it at all, using the same bar as the "routine" severity rule below — pure administrative/status traffic with nothing describable happening: post/unit check-ins, roll call, bare acknowledgements ("10-4", "copy", "received"), records/report exchanges, "show me admin"/"show me available", a status ten-code with no event attached. If it is administrative/status-only, return "unknown" — this applies on EVERY channel, including a police channel; do not let the channel default override it (server-26#138: forcing a channel default onto content-free chatter is what let radio housekeeping open incidents). Only once real event content is present, let the talkgroup channel be your primary signal for WHICH type. Use "fire" ONLY if the talkgroup is clearly a fire/rescue channel OR the transcript explicitly describes active fire, smoke, flames, or structure fire activation. Police or EMS referencing a fire scene → use "police" or "ems". When the channel is a police channel, a real event is present, and nothing in the transcript contradicts it, return "police". Reserve "other" for a real event that genuinely belongs to no emergency service (rail operations, public works, utility coordination) — not for administrative chatter, which is "unknown" per above regardless of channel. Also reserve "unknown" for transcripts too garbled to place at all.
|
||||||
- severity: ALWAYS return one of the four values. Judge the underlying event, not how dramatic the words sound.
|
- severity: ALWAYS return one of the four values. Judge the underlying event, not how dramatic the words sound.
|
||||||
"routine" — administrative/status traffic with no incident behind it: mileage and transport logging, radio checks, acknowledgements, shift changes, track block/power requests, records lookups.
|
"routine" — administrative/status traffic with no incident behind it: mileage and transport logging, radio checks, acknowledgements, shift changes, track block/power requests, records lookups.
|
||||||
"minor" — a real but low-stakes call: lift assist, parking complaint, past-tense larceny report, noise complaint, welfare check.
|
"minor" — a real but low-stakes call: lift assist, parking complaint, past-tense larceny report, noise complaint, welfare check.
|
||||||
@@ -74,18 +74,15 @@ Rules:
|
|||||||
"major" — life safety or major property loss: structure fire, vehicle pursuit, shots fired, entrapment, cardiac arrest, officer needing assistance.
|
"major" — life safety or major property loss: structure fire, vehicle pursuit, shots fired, entrapment, cardiac arrest, officer needing assistance.
|
||||||
- ten_codes: interpret radio codes using the department reference provided below. Do not guess codes not listed.
|
- ten_codes: interpret radio codes using the department reference provided below. Do not guess codes not listed.
|
||||||
- resolved: true only when the scene explicitly signals "Code 4", "all clear", "10-42", "in custody", "patient transported", "fire out", "GOA", "negative contact", "scene clear".
|
- resolved: true only when the scene explicitly signals "Code 4", "all clear", "10-42", "in custody", "patient transported", "fire out", "GOA", "negative contact", "scene clear".
|
||||||
- cleared_units: only include units that explicitly stated their own back-in-service status in this recording (e.g. "Unit 7, 10-8", "Baker-1 available", "E-14 back in service", or the department ten-code for available/back-in-service listed above). Silence or absence of a unit is NOT clearance. A scene-wide Code 4 belongs in resolved=true, not here — cleared_units is for individual unit availability signals only.
|
- cleared_units: include a unit whose back-in-service/available status is stated in this recording — either the unit self-reporting (e.g. "Unit 7, 10-8", "Baker-1 available", "E-14 back in service", or the department ten-code for available/back-in-service listed above) OR dispatch confirming that SPECIFIC unit's status back to them (e.g. the unit asks "how do you show me" and dispatch replies "showing you available" / "in service"). The unit ID must be identifiable either way — a bare "clear" or "10-8" with no unit attached to it is NOT clearance; do not guess which unit said it. Silence or absence of a unit is NOT clearance. A scene-wide Code 4 belongs in resolved=true, not here — cleared_units is for individual unit availability signals only.
|
||||||
- reassignment: only true when a unit is explicitly being pulled to a completely new call or location. A unit going en route to their first dispatch is NOT a reassignment. Routine status updates, acknowledgements, and scene updates are NOT reassignments.
|
- reassignment: only true when a unit is explicitly being pulled to a completely new call or location. A unit going en route to their first dispatch is NOT a reassignment. Routine status updates, acknowledgements, and scene updates are NOT reassignments.
|
||||||
|
|
||||||
System: {system_id}
|
System: {system_id}
|
||||||
Talkgroup: {talkgroup_name}
|
Talkgroup: {talkgroup_name}
|
||||||
{ten_codes_block}{vocabulary_block}{transcript_block}"""
|
{ten_codes_block}{vocabulary_block}{unit_format_block}{transcript_block}"""
|
||||||
|
|
||||||
# The incident_type enum offered to the model in EXTRACTION_PROMPT. Kept here
|
# "unknown" is deliberately absent — normalises to None, which is what lets
|
||||||
# rather than only in the prompt so a model that invents a value cannot write it
|
# the creation gate veto a content-free call (server-26#138).
|
||||||
# into incident.type. "unknown" is deliberately absent — it is a real answer
|
|
||||||
# from the model but not a usable type, and is normalised to None alongside
|
|
||||||
# anything unrecognised.
|
|
||||||
_VALID_INCIDENT_TYPES = frozenset({"fire", "ems", "police", "accident", "other"})
|
_VALID_INCIDENT_TYPES = frozenset({"fire", "ems", "police", "accident", "other"})
|
||||||
|
|
||||||
# Geographic bias radius for geocoding — half-width in degrees (~55 km)
|
# Geographic bias radius for geocoding — half-width in degrees (~55 km)
|
||||||
@@ -156,6 +153,23 @@ def _build_ten_codes_block(ten_codes: dict[str, str]) -> str:
|
|||||||
return f"Department ten-codes:\n{lines}\n\n"
|
return f"Department ten-codes:\n{lines}\n\n"
|
||||||
|
|
||||||
|
|
||||||
|
def _build_unit_format_block(unit_format_hint: Optional[str]) -> str:
|
||||||
|
"""
|
||||||
|
server-26#<pending> — unit ID formats vary per department (e.g. Yorktown:
|
||||||
|
"<district>-<phonetic>", "5-David", sometimes spoken as bare "David";
|
||||||
|
County: "<location>-<number>", "SAM-1", "airport-3", "parks-4") with no
|
||||||
|
shared pattern across systems. Without a per-system hint, the model has
|
||||||
|
no way to recognise a unit ID it hasn't seen phrased that way before, and
|
||||||
|
that failure compounds into cleared_units and reassignment detection,
|
||||||
|
both of which depend on first recognising which token IS the unit.
|
||||||
|
Owner-authored free text per system (systems/{id}.unit_format_hint via
|
||||||
|
PUT /systems/{id}/unit-format) — no auto-induction yet.
|
||||||
|
"""
|
||||||
|
if not unit_format_hint:
|
||||||
|
return ""
|
||||||
|
return f"This system's unit ID format: {unit_format_hint}\n\n"
|
||||||
|
|
||||||
|
|
||||||
async def extract_scenes(
|
async def extract_scenes(
|
||||||
call_id: str,
|
call_id: str,
|
||||||
transcript: str,
|
transcript: str,
|
||||||
@@ -182,12 +196,15 @@ async def extract_scenes(
|
|||||||
"""
|
"""
|
||||||
vocabulary: list[str] = []
|
vocabulary: list[str] = []
|
||||||
ten_codes: dict[str, str] = {}
|
ten_codes: dict[str, str] = {}
|
||||||
|
unit_format_hint: str = ""
|
||||||
if system_id:
|
if system_id:
|
||||||
# Single cached read — vocabulary and ten_codes live on the same document.
|
# Single cached read — vocabulary, ten_codes and unit_format_hint all
|
||||||
|
# live on the same document.
|
||||||
system_doc = await fstore.doc_get_cached("systems", system_id)
|
system_doc = await fstore.doc_get_cached("systems", system_id)
|
||||||
if system_doc:
|
if system_doc:
|
||||||
vocabulary = system_doc.get("vocabulary") or []
|
vocabulary = system_doc.get("vocabulary") or []
|
||||||
ten_codes = system_doc.get("ten_codes") or {}
|
ten_codes = system_doc.get("ten_codes") or {}
|
||||||
|
unit_format_hint = system_doc.get("unit_format_hint") or ""
|
||||||
|
|
||||||
if _is_garbage_transcript(transcript):
|
if _is_garbage_transcript(transcript):
|
||||||
logger.warning(
|
logger.warning(
|
||||||
@@ -254,6 +271,7 @@ async def extract_scenes(
|
|||||||
raw_scenes: list[dict] = await asyncio.to_thread(
|
raw_scenes: list[dict] = await asyncio.to_thread(
|
||||||
_sync_extract,
|
_sync_extract,
|
||||||
transcript, talkgroup_name, talkgroup_id, system_id, segments, vocabulary, ten_codes,
|
transcript, talkgroup_name, talkgroup_id, system_id, segments, vocabulary, ten_codes,
|
||||||
|
unit_format_hint,
|
||||||
)
|
)
|
||||||
|
|
||||||
if not raw_scenes:
|
if not raw_scenes:
|
||||||
@@ -677,6 +695,7 @@ def _sync_extract(
|
|||||||
segments: Optional[list[dict]],
|
segments: Optional[list[dict]],
|
||||||
vocabulary: Optional[list[str]] = None,
|
vocabulary: Optional[list[str]] = None,
|
||||||
ten_codes: Optional[dict[str, str]] = None,
|
ten_codes: Optional[dict[str, str]] = None,
|
||||||
|
unit_format_hint: Optional[str] = None,
|
||||||
) -> list[dict]:
|
) -> list[dict]:
|
||||||
"""Call GPT-4o-mini and return a list of scene dicts."""
|
"""Call GPT-4o-mini and return a list of scene dicts."""
|
||||||
from app.config import settings
|
from app.config import settings
|
||||||
@@ -694,6 +713,7 @@ def _sync_extract(
|
|||||||
system_id=system_id or "unknown",
|
system_id=system_id or "unknown",
|
||||||
ten_codes_block=_build_ten_codes_block(ten_codes or {}),
|
ten_codes_block=_build_ten_codes_block(ten_codes or {}),
|
||||||
vocabulary_block=build_gpt_vocab_block(vocabulary or []),
|
vocabulary_block=build_gpt_vocab_block(vocabulary or []),
|
||||||
|
unit_format_block=_build_unit_format_block(unit_format_hint),
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|||||||
@@ -111,6 +111,8 @@ class MQTTHandler:
|
|||||||
"assigned_system_id": None,
|
"assigned_system_id": None,
|
||||||
"approval_status": "pending",
|
"approval_status": "pending",
|
||||||
"node_type": payload.get("node_type", "fixed"),
|
"node_type": payload.get("node_type", "fixed"),
|
||||||
|
"secondary_sdr_mode": payload.get("secondary_sdr_mode", "none"),
|
||||||
|
"sdr_count": payload.get("sdr_count", 1),
|
||||||
"enforce_override_timeout": payload.get("enforce_override_timeout", True),
|
"enforce_override_timeout": payload.get("enforce_override_timeout", True),
|
||||||
"is_overridden": False,
|
"is_overridden": False,
|
||||||
"override_system_id": None,
|
"override_system_id": None,
|
||||||
@@ -141,6 +143,11 @@ class MQTTHandler:
|
|||||||
updates["node_type"] = node_type
|
updates["node_type"] = node_type
|
||||||
updates["enforce_override_timeout"] = enforce_timeout
|
updates["enforce_override_timeout"] = enforce_timeout
|
||||||
|
|
||||||
|
if "secondary_sdr_mode" in payload:
|
||||||
|
updates["secondary_sdr_mode"] = payload["secondary_sdr_mode"]
|
||||||
|
if "sdr_count" in payload:
|
||||||
|
updates["sdr_count"] = payload["sdr_count"]
|
||||||
|
|
||||||
if node_type == "portable":
|
if node_type == "portable":
|
||||||
updates["is_overridden"] = False
|
updates["is_overridden"] = False
|
||||||
updates["override_system_id"] = None
|
updates["override_system_id"] = None
|
||||||
|
|||||||
@@ -20,6 +20,30 @@ from app.internal.logger import logger
|
|||||||
from app.internal import firestore as fstore
|
from app.internal import firestore as fstore
|
||||||
from app.config import settings
|
from app.config import settings
|
||||||
|
|
||||||
|
# server-26#131: minimum time since the real-time pipeline (routers/upload.py
|
||||||
|
# _run_intelligence_pipeline) marked intelligence_started_at before the sweep
|
||||||
|
# will touch a call, even though it already looks orphaned. STT + scene
|
||||||
|
# extraction + correlation is a multi-second-to-low-minutes chain (Whisper,
|
||||||
|
# then a Gemini call per scene); without this buffer the sweep could pick up
|
||||||
|
# a call mid-pipeline — no incident_id/corr_path written yet — and correlate
|
||||||
|
# it a second time, independently, sometimes onto a different incident than
|
||||||
|
# the real-time path lands on. That race is what #131 found (same call in
|
||||||
|
# two incidents' call_ids, ~2% of linked calls). A call with no
|
||||||
|
# intelligence_started_at at all (pre-#131 call doc, or the marker write
|
||||||
|
# itself failed) is NOT held back by this — absence isn't evidence of an
|
||||||
|
# in-flight pipeline, and #131's own bug predates this field existing.
|
||||||
|
#
|
||||||
|
# 15, not 5: neither OpenAI's Whisper client nor Gemini's call in
|
||||||
|
# llm_correlator.py sets a request timeout (server-26#153), so a hung call can
|
||||||
|
# run well past a few minutes on SDK-default retries, and this constant is a
|
||||||
|
# guess against that unbounded tail, not a measured bound. Raising it costs
|
||||||
|
# nothing on the recovery side: a call that finished processing (linked OR
|
||||||
|
# genuinely orphaned) always has corr_path set (_apply_and_log writes it even
|
||||||
|
# on the orphan action), so it's already excluded by the
|
||||||
|
# `not c.get("corr_path")` filter below and never reaches this check at all —
|
||||||
|
# this constant only ever delays calls that are still actually running.
|
||||||
|
MIN_MINUTES_SINCE_PIPELINE_START = 15
|
||||||
|
|
||||||
# Standard link-only retry budget before a call is tombstoned corr_path="unlinked".
|
# Standard link-only retry budget before a call is tombstoned corr_path="unlinked".
|
||||||
MAX_SWEEP_ATTEMPTS = 3
|
MAX_SWEEP_ATTEMPTS = 3
|
||||||
# server-26#115 — a call the consensus LLM-orphan gate parked (llm=orphan vs
|
# server-26#115 — a call the consensus LLM-orphan gate parked (llm=orphan vs
|
||||||
@@ -52,8 +76,22 @@ async def recorrelation_loop() -> None:
|
|||||||
logger.error(f"Re-correlation sweep failed: {e}")
|
logger.error(f"Re-correlation sweep failed: {e}")
|
||||||
|
|
||||||
|
|
||||||
|
def _pipeline_likely_still_running(call: dict, now: datetime) -> bool:
|
||||||
|
"""server-26#131 — True when the real-time pipeline marked
|
||||||
|
intelligence_started_at recently enough that it's probably still mid-flight
|
||||||
|
(STT / scene extraction / correlation), so the sweep should not race it.
|
||||||
|
No marker at all (older call doc, or the marker write itself failed)
|
||||||
|
returns False — absence isn't evidence of an in-flight pipeline."""
|
||||||
|
started = _parse_dt(call.get("intelligence_started_at"))
|
||||||
|
if not started:
|
||||||
|
return False
|
||||||
|
age_minutes = (now - started).total_seconds() / 60
|
||||||
|
return age_minutes < MIN_MINUTES_SINCE_PIPELINE_START
|
||||||
|
|
||||||
|
|
||||||
async def _run_sweep_pass() -> None:
|
async def _run_sweep_pass() -> None:
|
||||||
cutoff = datetime.now(timezone.utc) - timedelta(minutes=settings.recorrelation_scan_minutes)
|
now = datetime.now(timezone.utc)
|
||||||
|
cutoff = now - timedelta(minutes=settings.recorrelation_scan_minutes)
|
||||||
|
|
||||||
# Server-side range query: only calls that ended within the scan window.
|
# Server-side range query: only calls that ended within the scan window.
|
||||||
# Filter incident_id=null client-side (Firestore can't query for missing fields).
|
# Filter incident_id=null client-side (Firestore can't query for missing fields).
|
||||||
@@ -77,6 +115,7 @@ async def _run_sweep_pass() -> None:
|
|||||||
# a second route into the over-merge the thin fix above addresses.
|
# a second route into the over-merge the thin fix above addresses.
|
||||||
and not c.get("skip_reason")
|
and not c.get("skip_reason")
|
||||||
and c.get("corr_sweep_count", 0) < _max_sweep_attempts(c)
|
and c.get("corr_sweep_count", 0) < _max_sweep_attempts(c)
|
||||||
|
and not _pipeline_likely_still_running(c, now)
|
||||||
]
|
]
|
||||||
|
|
||||||
if not orphans:
|
if not orphans:
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ from app.internal.auth import (
|
|||||||
require_node_service_or_firebase_token,
|
require_node_service_or_firebase_token,
|
||||||
)
|
)
|
||||||
from app.routers import nodes, systems, calls, upload, tokens, incidents, alerts, admin, trips, places, links, users
|
from app.routers import nodes, systems, calls, upload, tokens, incidents, alerts, admin, trips, places, links, users
|
||||||
from app.routers import enrollment, media, org, waitlist
|
from app.routers import enrollment, media, org, waitlist, telemetry
|
||||||
from app.internal import dynsec
|
from app.internal import dynsec
|
||||||
from app.internal import firestore as fstore
|
from app.internal import firestore as fstore
|
||||||
|
|
||||||
@@ -120,6 +120,7 @@ app.include_router(nodes.router, dependencies=[Depends(require_service_or_fi
|
|||||||
# write routes inside carry their own require_admin_token, so nodes get read
|
# write routes inside carry their own require_admin_token, so nodes get read
|
||||||
# access only.
|
# access only.
|
||||||
app.include_router(systems.router, dependencies=[Depends(require_node_service_or_firebase_token)])
|
app.include_router(systems.router, dependencies=[Depends(require_node_service_or_firebase_token)])
|
||||||
|
app.include_router(telemetry.router, dependencies=[Depends(require_node_service_or_firebase_token)])
|
||||||
app.include_router(calls.router, dependencies=[Depends(require_service_or_firebase_token)])
|
app.include_router(calls.router, dependencies=[Depends(require_service_or_firebase_token)])
|
||||||
app.include_router(tokens.router, dependencies=[Depends(require_service_or_firebase_token)])
|
app.include_router(tokens.router, dependencies=[Depends(require_service_or_firebase_token)])
|
||||||
app.include_router(incidents.router, dependencies=[Depends(require_service_or_firebase_token)])
|
app.include_router(incidents.router, dependencies=[Depends(require_service_or_firebase_token)])
|
||||||
|
|||||||
@@ -62,12 +62,43 @@ class NodeRecord(BaseModel):
|
|||||||
last_seen: Optional[datetime] = None
|
last_seen: Optional[datetime] = None
|
||||||
assigned_system_id: Optional[str] = None
|
assigned_system_id: Optional[str] = None
|
||||||
node_type: str = "fixed" # fixed or portable
|
node_type: str = "fixed" # fixed or portable
|
||||||
|
secondary_sdr_mode: str = "none" # none | adsb | ais | op25_2 — requires a second physical SDR
|
||||||
|
sdr_count: int = 1 # self-reported by the node's checkin, best-effort
|
||||||
enforce_override_timeout: bool = True
|
enforce_override_timeout: bool = True
|
||||||
is_overridden: bool = False
|
is_overridden: bool = False
|
||||||
override_system_id: Optional[str] = None
|
override_system_id: Optional[str] = None
|
||||||
override_timeout_at: Optional[datetime] = None
|
override_timeout_at: Optional[datetime] = None
|
||||||
|
|
||||||
|
|
||||||
|
class AircraftTrack(BaseModel):
|
||||||
|
"""Live ADS-B position, one doc per icao. Overwritten on every sighting —
|
||||||
|
this is a live-map snapshot, not a history (see node-26#9)."""
|
||||||
|
icao: str
|
||||||
|
org_id: Optional[str] = None
|
||||||
|
node_id: str
|
||||||
|
callsign: Optional[str] = None
|
||||||
|
lat: Optional[float] = None
|
||||||
|
lon: Optional[float] = None
|
||||||
|
altitude_ft: Optional[float] = None
|
||||||
|
ground_speed_kt: Optional[float] = None
|
||||||
|
track_deg: Optional[float] = None
|
||||||
|
last_seen: datetime
|
||||||
|
|
||||||
|
|
||||||
|
class VesselTrack(BaseModel):
|
||||||
|
"""Live AIS position, one doc per mmsi. Same live-snapshot shape as
|
||||||
|
AircraftTrack — overwritten on every sighting (see node-26#9)."""
|
||||||
|
mmsi: str
|
||||||
|
org_id: Optional[str] = None
|
||||||
|
node_id: str
|
||||||
|
name: Optional[str] = None
|
||||||
|
lat: Optional[float] = None
|
||||||
|
lon: Optional[float] = None
|
||||||
|
speed_kt: Optional[float] = None
|
||||||
|
heading_deg: Optional[float] = None
|
||||||
|
last_seen: datetime
|
||||||
|
|
||||||
|
|
||||||
class CommandPayload(BaseModel):
|
class CommandPayload(BaseModel):
|
||||||
action: str # discord_join / discord_leave / op25_restart
|
action: str # discord_join / discord_leave / op25_restart
|
||||||
guild_id: Optional[str] = None
|
guild_id: Optional[str] = None
|
||||||
|
|||||||
@@ -195,6 +195,7 @@ async def assign_system(
|
|||||||
class NodeUpdateBody(BaseModel):
|
class NodeUpdateBody(BaseModel):
|
||||||
node_type: Optional[str] = None
|
node_type: Optional[str] = None
|
||||||
enforce_override_timeout: Optional[bool] = None
|
enforce_override_timeout: Optional[bool] = None
|
||||||
|
secondary_sdr_mode: Optional[str] = None # none | adsb | ais | op25_2
|
||||||
|
|
||||||
|
|
||||||
@router.patch("/{node_id}")
|
@router.patch("/{node_id}")
|
||||||
@@ -227,6 +228,8 @@ async def update_node(
|
|||||||
}
|
}
|
||||||
if updated_node.get("ppm_override") is not None:
|
if updated_node.get("ppm_override") is not None:
|
||||||
push_payload["ppm_override"] = updated_node["ppm_override"]
|
push_payload["ppm_override"] = updated_node["ppm_override"]
|
||||||
|
if updated_node.get("secondary_sdr_mode") is not None:
|
||||||
|
push_payload["secondary_sdr_mode"] = updated_node["secondary_sdr_mode"]
|
||||||
mqtt_handler.push_config(node_id, push_payload)
|
mqtt_handler.push_config(node_id, push_payload)
|
||||||
|
|
||||||
return {"ok": True}
|
return {"ok": True}
|
||||||
|
|||||||
@@ -24,6 +24,10 @@ class TenCodesBody(BaseModel):
|
|||||||
ten_codes: Dict[str, str]
|
ten_codes: Dict[str, str]
|
||||||
|
|
||||||
|
|
||||||
|
class UnitFormatBody(BaseModel):
|
||||||
|
unit_format_hint: str
|
||||||
|
|
||||||
|
|
||||||
class PendingTermBody(BaseModel):
|
class PendingTermBody(BaseModel):
|
||||||
talkgroup_id: int
|
talkgroup_id: int
|
||||||
term: str
|
term: str
|
||||||
@@ -155,6 +159,38 @@ async def update_ten_codes(
|
|||||||
return {"ok": True, "ten_codes": body.ten_codes}
|
return {"ok": True, "ten_codes": body.ten_codes}
|
||||||
|
|
||||||
|
|
||||||
|
# ── Unit ID format hint ─────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
@router.get("/{system_id}/unit-format")
|
||||||
|
async def get_unit_format(system_id: str):
|
||||||
|
"""Return the unit-ID format hint for a system."""
|
||||||
|
system = await fstore.doc_get("systems", system_id)
|
||||||
|
if not system:
|
||||||
|
raise HTTPException(404, f"System '{system_id}' not found.")
|
||||||
|
return {"unit_format_hint": system.get("unit_format_hint") or ""}
|
||||||
|
|
||||||
|
|
||||||
|
@router.put("/{system_id}/unit-format")
|
||||||
|
async def update_unit_format(
|
||||||
|
system_id: str,
|
||||||
|
body: UnitFormatBody,
|
||||||
|
_: dict = Depends(require_admin_token),
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Set the free-text unit-ID format hint fed into intelligence.py's
|
||||||
|
extraction prompt (server-26#<pending>). Departments have no shared unit
|
||||||
|
ID convention — e.g. "5-David"/bare "David" vs "SAM-1"/"airport-3" — and
|
||||||
|
the extraction prompt has no way to recognise a format it hasn't been
|
||||||
|
told about. Own route for the same reason ten-codes has one: not carried
|
||||||
|
by the systems form, so folding it into PUT /{id} would wipe it.
|
||||||
|
"""
|
||||||
|
existing = await fstore.doc_get("systems", system_id)
|
||||||
|
if not existing:
|
||||||
|
raise HTTPException(404, f"System '{system_id}' not found.")
|
||||||
|
await fstore.doc_update("systems", system_id, {"unit_format_hint": body.unit_format_hint})
|
||||||
|
return {"ok": True, "unit_format_hint": body.unit_format_hint}
|
||||||
|
|
||||||
|
|
||||||
# ── Area context ──────────────────────────────────────────────────────────────
|
# ── Area context ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
@router.get("/{system_id}/area-context")
|
@router.get("/{system_id}/area-context")
|
||||||
|
|||||||
@@ -0,0 +1,125 @@
|
|||||||
|
from datetime import datetime, timezone
|
||||||
|
from typing import List, Optional
|
||||||
|
|
||||||
|
from fastapi import APIRouter, Depends, HTTPException
|
||||||
|
from pydantic import BaseModel
|
||||||
|
|
||||||
|
from app.internal import firestore as fstore
|
||||||
|
from app.internal.auth import require_node_service_or_firebase_token
|
||||||
|
from app.internal.logger import logger
|
||||||
|
|
||||||
|
router = APIRouter(prefix="/telemetry", tags=["telemetry"])
|
||||||
|
|
||||||
|
|
||||||
|
class AircraftReport(BaseModel):
|
||||||
|
icao: str
|
||||||
|
callsign: Optional[str] = None
|
||||||
|
lat: Optional[float] = None
|
||||||
|
lon: Optional[float] = None
|
||||||
|
altitude_ft: Optional[float] = None
|
||||||
|
ground_speed_kt: Optional[float] = None
|
||||||
|
track_deg: Optional[float] = None
|
||||||
|
|
||||||
|
|
||||||
|
class AdsbUploadBody(BaseModel):
|
||||||
|
aircraft: List[AircraftReport]
|
||||||
|
|
||||||
|
|
||||||
|
@router.post("/adsb")
|
||||||
|
async def upload_adsb(
|
||||||
|
body: AdsbUploadBody,
|
||||||
|
decoded: dict = Depends(require_node_service_or_firebase_token),
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Node-initiated: a second-SDR ADS-B decoder (node-26#9) periodically posts
|
||||||
|
its current aircraft snapshot here. One doc per icao, last-seen-wins —
|
||||||
|
this is a live-map overlay, not a flight history.
|
||||||
|
"""
|
||||||
|
node_id = decoded.get("node_id")
|
||||||
|
if not node_id:
|
||||||
|
raise HTTPException(400, "This endpoint requires node identity, not a service/admin token.")
|
||||||
|
|
||||||
|
node = await fstore.doc_get_cached("nodes", node_id)
|
||||||
|
org_id = node.get("org_id") if node else None
|
||||||
|
now = datetime.now(timezone.utc).isoformat()
|
||||||
|
|
||||||
|
writes = []
|
||||||
|
for ac in body.aircraft:
|
||||||
|
if not ac.icao:
|
||||||
|
continue
|
||||||
|
doc = {
|
||||||
|
"icao": ac.icao,
|
||||||
|
"node_id": node_id,
|
||||||
|
"callsign": ac.callsign,
|
||||||
|
"lat": ac.lat,
|
||||||
|
"lon": ac.lon,
|
||||||
|
"altitude_ft": ac.altitude_ft,
|
||||||
|
"ground_speed_kt": ac.ground_speed_kt,
|
||||||
|
"track_deg": ac.track_deg,
|
||||||
|
"last_seen": now,
|
||||||
|
}
|
||||||
|
if org_id:
|
||||||
|
doc["org_id"] = org_id
|
||||||
|
writes.append(("aircraft", ac.icao, doc))
|
||||||
|
|
||||||
|
for collection, doc_id, doc in writes:
|
||||||
|
try:
|
||||||
|
await fstore.doc_set(collection, doc_id, doc, merge=True)
|
||||||
|
except Exception as e:
|
||||||
|
logger.warning(f"Failed to upsert {collection}/{doc_id} from node {node_id}: {e}")
|
||||||
|
|
||||||
|
return {"ok": True, "count": len(writes)}
|
||||||
|
|
||||||
|
|
||||||
|
class VesselReport(BaseModel):
|
||||||
|
mmsi: str
|
||||||
|
name: Optional[str] = None
|
||||||
|
lat: Optional[float] = None
|
||||||
|
lon: Optional[float] = None
|
||||||
|
speed_kt: Optional[float] = None
|
||||||
|
heading_deg: Optional[float] = None
|
||||||
|
|
||||||
|
|
||||||
|
class AisUploadBody(BaseModel):
|
||||||
|
vessels: List[VesselReport]
|
||||||
|
|
||||||
|
|
||||||
|
@router.post("/ais")
|
||||||
|
async def upload_ais(
|
||||||
|
body: AisUploadBody,
|
||||||
|
decoded: dict = Depends(require_node_service_or_firebase_token),
|
||||||
|
):
|
||||||
|
"""Same shape as /telemetry/adsb, one doc per mmsi in `vessels`."""
|
||||||
|
node_id = decoded.get("node_id")
|
||||||
|
if not node_id:
|
||||||
|
raise HTTPException(400, "This endpoint requires node identity, not a service/admin token.")
|
||||||
|
|
||||||
|
node = await fstore.doc_get_cached("nodes", node_id)
|
||||||
|
org_id = node.get("org_id") if node else None
|
||||||
|
now = datetime.now(timezone.utc).isoformat()
|
||||||
|
|
||||||
|
writes = []
|
||||||
|
for v in body.vessels:
|
||||||
|
if not v.mmsi:
|
||||||
|
continue
|
||||||
|
doc = {
|
||||||
|
"mmsi": v.mmsi,
|
||||||
|
"node_id": node_id,
|
||||||
|
"name": v.name,
|
||||||
|
"lat": v.lat,
|
||||||
|
"lon": v.lon,
|
||||||
|
"speed_kt": v.speed_kt,
|
||||||
|
"heading_deg": v.heading_deg,
|
||||||
|
"last_seen": now,
|
||||||
|
}
|
||||||
|
if org_id:
|
||||||
|
doc["org_id"] = org_id
|
||||||
|
writes.append(("vessels", v.mmsi, doc))
|
||||||
|
|
||||||
|
for collection, doc_id, doc in writes:
|
||||||
|
try:
|
||||||
|
await fstore.doc_set(collection, doc_id, doc, merge=True)
|
||||||
|
except Exception as e:
|
||||||
|
logger.warning(f"Failed to upsert {collection}/{doc_id} from node {node_id}: {e}")
|
||||||
|
|
||||||
|
return {"ok": True, "count": len(writes)}
|
||||||
@@ -413,6 +413,25 @@ async def _run_intelligence_pipeline(
|
|||||||
"""
|
"""
|
||||||
from app.internal import transcription, intelligence, incident_correlator, alerter, talkgroups
|
from app.internal import transcription, intelligence, incident_correlator, alerter, talkgroups
|
||||||
|
|
||||||
|
# server-26#131: mark that real-time processing has started for this call
|
||||||
|
# BEFORE any of the slow steps below (STT, scene extraction, correlation).
|
||||||
|
# The re-correlation sweep (internal/recorrelation_sweep.py) scans for
|
||||||
|
# calls that still look orphaned within a wide window (recorrelation_scan_
|
||||||
|
# minutes, default 60) — with no guard here, a call whose real-time
|
||||||
|
# pipeline is still mid-flight (still transcribing, still waiting on a
|
||||||
|
# Gemini call) has no incident_id/corr_path written yet, so the sweep's
|
||||||
|
# orphan filter can't tell "never processed" from "processing right now"
|
||||||
|
# and correlates it a second time, independently, sometimes landing on a
|
||||||
|
# different incident than the real-time path — the exact duplicate-link
|
||||||
|
# bug #131 found (same call in two incidents' call_ids, ~2% of linked
|
||||||
|
# calls). Best-effort: a write failure here must not abort the pipeline.
|
||||||
|
try:
|
||||||
|
await fstore.doc_set("calls", call_id, {
|
||||||
|
"intelligence_started_at": datetime.now(timezone.utc).isoformat()
|
||||||
|
})
|
||||||
|
except Exception as e:
|
||||||
|
logger.warning(f"Could not mark intelligence_started_at for call {call_id}: {e}")
|
||||||
|
|
||||||
# The node only sends talkgroup_name when OP25 had it in the loaded tags
|
# The node only sends talkgroup_name when OP25 had it in the loaded tags
|
||||||
# file, so it arrives empty for exactly the talkgroups C2 can name from the
|
# file, so it arrives empty for exactly the talkgroups C2 can name from the
|
||||||
# system config. Resolve it once, here, at the single funnel both /upload
|
# system config. Resolve it once, here, at the single funnel both /upload
|
||||||
|
|||||||
@@ -0,0 +1,198 @@
|
|||||||
|
"""
|
||||||
|
server-26#<pending> — pattern B clearance: a unit accepting a NEW dispatch
|
||||||
|
("dispatch: are you able to clear and take a run at X / unit: 10-4") carries
|
||||||
|
no self-reported clearance language intelligence.py's cleared_units
|
||||||
|
extraction looks for (that only catches pattern A, "Unit 7, 10-8"). Before
|
||||||
|
this fix, reassignment=True only ever suppressed the unit from re-linking to
|
||||||
|
their prior incident (upload.py's corr_units=[] on reassignment) — nothing
|
||||||
|
ever released them from it, so it sat "active" until the 90-minute idle
|
||||||
|
sweep timed it out instead of being marked cleared by a real event.
|
||||||
|
|
||||||
|
`_release_reassigned_units` closes that gap: when a scene is a reassignment,
|
||||||
|
scan the OTHER active incidents for unit overlap and release the unit there,
|
||||||
|
using the same units_active/units_cleared merge (`_apply_unit_clearance`)
|
||||||
|
that explicit 10-8 extraction already used via `_update_incident`.
|
||||||
|
"""
|
||||||
|
from datetime import datetime, timedelta, timezone
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from app.internal.incident_correlator import (
|
||||||
|
_apply_unit_clearance, _release_reassigned_units,
|
||||||
|
)
|
||||||
|
|
||||||
|
NOW = datetime(2026, 9, 20, 12, 0, 0, tzinfo=timezone.utc)
|
||||||
|
|
||||||
|
|
||||||
|
def _incident(incident_id="inc-1", units_active=None, units_cleared=None,
|
||||||
|
system_ids=("sys-1",), **overrides):
|
||||||
|
inc = {
|
||||||
|
"incident_id": incident_id,
|
||||||
|
"system_ids": list(system_ids),
|
||||||
|
"units_active": list(units_active or []),
|
||||||
|
"units_cleared": list(units_cleared or []),
|
||||||
|
"status": "active",
|
||||||
|
"updated_at": (NOW - timedelta(minutes=5)).isoformat(),
|
||||||
|
}
|
||||||
|
inc.update(overrides)
|
||||||
|
return inc
|
||||||
|
|
||||||
|
|
||||||
|
def _ctx(call_units, all_active, system_id="sys-1", now=NOW):
|
||||||
|
return {"call_units": call_units, "all_active": all_active, "system_id": system_id, "now": now}
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# _apply_unit_clearance — pure merge logic
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
def test_clearance_moves_unit_from_active_to_cleared():
|
||||||
|
inc = _incident(units_active=["6-3"], units_cleared=[])
|
||||||
|
active, cleared, resolved = _apply_unit_clearance(inc, ["6-3"])
|
||||||
|
assert active == []
|
||||||
|
assert cleared == ["6-3"]
|
||||||
|
assert resolved is True
|
||||||
|
|
||||||
|
|
||||||
|
def test_clearance_leaves_other_active_units_alone():
|
||||||
|
inc = _incident(units_active=["6-3", "6-7"], units_cleared=[])
|
||||||
|
active, cleared, resolved = _apply_unit_clearance(inc, ["6-3"])
|
||||||
|
assert active == ["6-7"]
|
||||||
|
assert cleared == ["6-3"]
|
||||||
|
assert resolved is False # 6-7 still active
|
||||||
|
|
||||||
|
|
||||||
|
def test_clearing_a_unit_not_tracked_as_active_is_a_noop_for_active_list():
|
||||||
|
inc = _incident(units_active=["6-7"], units_cleared=[])
|
||||||
|
active, cleared, resolved = _apply_unit_clearance(inc, ["ghost-unit"])
|
||||||
|
assert active == ["6-7"]
|
||||||
|
assert cleared == ["ghost-unit"]
|
||||||
|
assert resolved is False
|
||||||
|
|
||||||
|
|
||||||
|
def test_no_units_ever_tracked_does_not_auto_resolve():
|
||||||
|
# An incident that never had a unit signal at all — clearing nothing
|
||||||
|
# must not manufacture a resolve.
|
||||||
|
inc = _incident(units_active=[], units_cleared=[])
|
||||||
|
active, cleared, resolved = _apply_unit_clearance(inc, [])
|
||||||
|
assert resolved is False
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# _release_reassigned_units — reassignment releases the unit from its
|
||||||
|
# PRIOR incident, scoped correctly, without touching that incident's calls
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_clears_unit_from_prior_incident():
|
||||||
|
prior = _incident(incident_id="inc-prior", units_active=["6-3", "6-7"])
|
||||||
|
ctx = _ctx(call_units=["6-3"], all_active=[prior])
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id="inc-new")
|
||||||
|
|
||||||
|
assert len(doc_sets) == 1
|
||||||
|
collection, doc_id, data = doc_sets[0]
|
||||||
|
assert collection == "incidents" and doc_id == "inc-prior"
|
||||||
|
assert data["units_active"] == ["6-7"]
|
||||||
|
assert data["units_cleared"] == ["6-3"]
|
||||||
|
assert "status" not in data # 6-7 still active — not auto-resolved
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_auto_resolves_when_last_unit_clears():
|
||||||
|
prior = _incident(incident_id="inc-prior", units_active=["6-3"])
|
||||||
|
ctx = _ctx(call_units=["6-3"], all_active=[prior])
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
async def fake_doc_get(collection, doc_id):
|
||||||
|
return None # no parent — maybe_resolve_parent exits immediately
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
mock_fstore.doc_get = fake_doc_get
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id=None)
|
||||||
|
|
||||||
|
collection, doc_id, data = doc_sets[0]
|
||||||
|
assert data["status"] == "resolved"
|
||||||
|
assert "resolved_at" in data
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_never_touches_the_calls_own_incident():
|
||||||
|
# The call's own decision (link/new) already handled its own incident —
|
||||||
|
# excluding it here prevents double-writing or self-clearing on it.
|
||||||
|
same = _incident(incident_id="inc-new", units_active=["6-3"])
|
||||||
|
ctx = _ctx(call_units=["6-3"], all_active=[same])
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id="inc-new")
|
||||||
|
|
||||||
|
assert doc_sets == []
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_does_not_cross_systems():
|
||||||
|
other_system = _incident(incident_id="inc-other-sys", units_active=["6-3"], system_ids=("sys-2",))
|
||||||
|
ctx = _ctx(call_units=["6-3"], all_active=[other_system], system_id="sys-1")
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id=None)
|
||||||
|
|
||||||
|
assert doc_sets == []
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_with_no_call_units_is_a_noop():
|
||||||
|
prior = _incident(incident_id="inc-prior", units_active=["6-3"])
|
||||||
|
ctx = _ctx(call_units=[], all_active=[prior])
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id=None)
|
||||||
|
|
||||||
|
assert doc_sets == []
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_reassignment_matches_units_by_normalized_key():
|
||||||
|
# "5-David" vs "5David" — same unit, different transcription — must
|
||||||
|
# still match via the existing _normalize_unit key, not exact string eq.
|
||||||
|
prior = _incident(incident_id="inc-prior", units_active=["5-David"])
|
||||||
|
ctx = _ctx(call_units=["5 David"], all_active=[prior])
|
||||||
|
|
||||||
|
doc_sets = []
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
async def fake_doc_get(collection, doc_id):
|
||||||
|
return None # no parent — maybe_resolve_parent exits immediately
|
||||||
|
|
||||||
|
with patch("app.internal.incident_correlator.fstore") as mock_fstore:
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
mock_fstore.doc_get = fake_doc_get
|
||||||
|
await _release_reassigned_units(ctx, exclude_incident_id=None)
|
||||||
|
|
||||||
|
assert len(doc_sets) == 1
|
||||||
|
assert doc_sets[0][2]["units_cleared"] == ["5-David"]
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
"""
|
||||||
|
server-26#<pending> — no per-system unit-ID format awareness existed anywhere
|
||||||
|
in the pipeline (vocabulary_learner's "known local terms" is a flat glossary,
|
||||||
|
not a structured format). Departments use incompatible unit ID conventions
|
||||||
|
(Yorktown: "5-David", sometimes spoken as bare "David"; County:
|
||||||
|
"SAM-1"/"airport-3"/"parks-4", a location word + number) and the extraction
|
||||||
|
prompt had no way to be told which one a given system uses. This pins the
|
||||||
|
prompt-block builder and the template wiring that carries it.
|
||||||
|
"""
|
||||||
|
from app.internal.intelligence import (
|
||||||
|
_PROMPT_TEMPLATE, _build_unit_format_block, _build_ten_codes_block,
|
||||||
|
_build_transcript_block,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_empty_hint_produces_no_block():
|
||||||
|
assert _build_unit_format_block(None) == ""
|
||||||
|
assert _build_unit_format_block("") == ""
|
||||||
|
|
||||||
|
|
||||||
|
def test_hint_is_labelled_and_fed_to_the_model_verbatim():
|
||||||
|
block = _build_unit_format_block(
|
||||||
|
"Yorktown: <district>-<phonetic name>, e.g. 5-David. Sometimes spoken as just the name alone."
|
||||||
|
)
|
||||||
|
assert "unit ID format" in block
|
||||||
|
assert "5-David" in block
|
||||||
|
|
||||||
|
|
||||||
|
def test_prompt_template_renders_with_all_blocks_including_empty_unit_format():
|
||||||
|
# Regression guard: a missing placeholder in .format() raises KeyError at
|
||||||
|
# request time, not import time — this is the cheapest way to catch that
|
||||||
|
# before it reaches a live call.
|
||||||
|
rendered = _PROMPT_TEMPLATE.format(
|
||||||
|
transcript_block=_build_transcript_block("1. Test.", None),
|
||||||
|
talkgroup_name="Test TG",
|
||||||
|
system_id="sys-1",
|
||||||
|
ten_codes_block=_build_ten_codes_block({}),
|
||||||
|
vocabulary_block="",
|
||||||
|
unit_format_block=_build_unit_format_block(""),
|
||||||
|
)
|
||||||
|
assert "Test TG" in rendered
|
||||||
|
assert "1. Test." in rendered
|
||||||
|
|
||||||
|
|
||||||
|
def test_prompt_template_renders_with_a_populated_unit_format_block():
|
||||||
|
rendered = _PROMPT_TEMPLATE.format(
|
||||||
|
transcript_block=_build_transcript_block("1. Test.", None),
|
||||||
|
talkgroup_name="Test TG",
|
||||||
|
system_id="sys-1",
|
||||||
|
ten_codes_block=_build_ten_codes_block({}),
|
||||||
|
vocabulary_block="",
|
||||||
|
unit_format_block=_build_unit_format_block("County: <location>-<number>, e.g. SAM-1, airport-3."),
|
||||||
|
)
|
||||||
|
assert "SAM-1" in rendered
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
"""
|
||||||
|
server-26#131 — the re-correlation sweep's orphan filter checked incident_id/
|
||||||
|
incident_ids/corr_path but had no way to tell "never processed" apart from
|
||||||
|
"real-time pipeline (routers/upload.py _run_intelligence_pipeline) is still
|
||||||
|
mid-flight". Racing the sweep against an in-flight real-time correlation could
|
||||||
|
land the same call on two different incidents — the exact duplicate-link bug
|
||||||
|
#131 found in 3 live dumps (~2% of linked calls). This pins the fix: a call
|
||||||
|
whose intelligence_started_at marker is recent is held back from the sweep
|
||||||
|
regardless of how orphaned it otherwise looks.
|
||||||
|
"""
|
||||||
|
from datetime import datetime, timezone, timedelta
|
||||||
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from app.internal import recorrelation_sweep
|
||||||
|
|
||||||
|
|
||||||
|
def _iso(dt: datetime) -> str:
|
||||||
|
return dt.isoformat()
|
||||||
|
|
||||||
|
|
||||||
|
class TestPipelineLikelyStillRunning:
|
||||||
|
def test_recent_marker_is_still_running(self):
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
call = {"intelligence_started_at": _iso(now - timedelta(minutes=1))}
|
||||||
|
assert recorrelation_sweep._pipeline_likely_still_running(call, now) is True
|
||||||
|
|
||||||
|
def test_old_marker_is_not_still_running(self):
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
call = {"intelligence_started_at": _iso(now - timedelta(minutes=30))}
|
||||||
|
assert recorrelation_sweep._pipeline_likely_still_running(call, now) is False
|
||||||
|
|
||||||
|
def test_marker_exactly_at_the_threshold_is_not_held_back(self):
|
||||||
|
# age_minutes < MIN_MINUTES_SINCE_PIPELINE_START (strict), so exactly
|
||||||
|
# at the threshold is old enough to release — pins the boundary so it
|
||||||
|
# can't drift to <= by accident and silently double the hold time.
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
threshold = recorrelation_sweep.MIN_MINUTES_SINCE_PIPELINE_START
|
||||||
|
call = {"intelligence_started_at": _iso(now - timedelta(minutes=threshold))}
|
||||||
|
assert recorrelation_sweep._pipeline_likely_still_running(call, now) is False
|
||||||
|
|
||||||
|
def test_no_marker_at_all_is_not_held_back(self):
|
||||||
|
"""A pre-#131 call doc, or the marker write itself failed — absence
|
||||||
|
isn't evidence of an in-flight pipeline, so the sweep must still be
|
||||||
|
able to pick these up (that's its whole job)."""
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
assert recorrelation_sweep._pipeline_likely_still_running({}, now) is False
|
||||||
|
|
||||||
|
def test_unparseable_marker_is_not_held_back(self):
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
call = {"intelligence_started_at": "not-a-timestamp"}
|
||||||
|
assert recorrelation_sweep._pipeline_likely_still_running(call, now) is False
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_sweep_pass_skips_a_call_whose_pipeline_just_started():
|
||||||
|
"""Integration-shaped: a call that looks orphaned by every OTHER filter
|
||||||
|
(no incident_ids, no corr_path, no skip_reason, under the attempt budget)
|
||||||
|
but has a fresh intelligence_started_at must not reach correlate_call —
|
||||||
|
that's the race #131 found."""
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
racing_call = {
|
||||||
|
"call_id": "call-racing",
|
||||||
|
"started_at": _iso(now - timedelta(minutes=2)),
|
||||||
|
"ended_at": _iso(now - timedelta(minutes=1)),
|
||||||
|
"intelligence_started_at": _iso(now - timedelta(seconds=30)),
|
||||||
|
}
|
||||||
|
genuinely_orphaned_call = {
|
||||||
|
"call_id": "call-genuine-orphan",
|
||||||
|
"started_at": _iso(now - timedelta(minutes=20)),
|
||||||
|
"ended_at": _iso(now - timedelta(minutes=19)),
|
||||||
|
"intelligence_started_at": _iso(now - timedelta(minutes=19)),
|
||||||
|
}
|
||||||
|
|
||||||
|
async def fake_collection_where(collection, clauses):
|
||||||
|
assert collection == "calls"
|
||||||
|
return [racing_call, genuinely_orphaned_call]
|
||||||
|
|
||||||
|
correlate_calls: list[str] = []
|
||||||
|
|
||||||
|
async def fake_correlate_call(**kwargs):
|
||||||
|
correlate_calls.append(kwargs["call_id"])
|
||||||
|
return None # no match — exercises the "not linked" branch too
|
||||||
|
|
||||||
|
doc_sets: list[tuple] = []
|
||||||
|
|
||||||
|
async def fake_doc_set(collection, doc_id, data, merge=True):
|
||||||
|
doc_sets.append((collection, doc_id, data))
|
||||||
|
|
||||||
|
with patch.object(recorrelation_sweep, "fstore") as mock_fstore, \
|
||||||
|
patch("app.internal.incident_correlator.correlate_call", fake_correlate_call):
|
||||||
|
mock_fstore.collection_where = fake_collection_where
|
||||||
|
mock_fstore.doc_set = fake_doc_set
|
||||||
|
await recorrelation_sweep._run_sweep_pass()
|
||||||
|
|
||||||
|
assert correlate_calls == ["call-genuine-orphan"]
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
"""
|
||||||
|
node-26#9 — second-SDR ADS-B telemetry ingestion.
|
||||||
|
|
||||||
|
Two things matter here: the endpoint requires node identity (a service/admin
|
||||||
|
token has no node_id to attribute the sighting to, so it must 400 rather than
|
||||||
|
silently write an orphan doc), and org_id gets stamped from the node's own
|
||||||
|
Firestore doc so firestore.rules' docInMyOrg() can gate the frontend's read —
|
||||||
|
the same defensive-stamp pattern upload.py already uses for `calls`.
|
||||||
|
"""
|
||||||
|
from unittest.mock import AsyncMock, patch
|
||||||
|
|
||||||
|
from fastapi.testclient import TestClient
|
||||||
|
|
||||||
|
from app.main import app
|
||||||
|
from app.internal.auth import require_node_service_or_firebase_token
|
||||||
|
from app.routers import telemetry
|
||||||
|
|
||||||
|
client = TestClient(app)
|
||||||
|
|
||||||
|
|
||||||
|
def _override(decoded: dict):
|
||||||
|
app.dependency_overrides[require_node_service_or_firebase_token] = lambda: decoded
|
||||||
|
|
||||||
|
|
||||||
|
def teardown_function():
|
||||||
|
app.dependency_overrides.pop(require_node_service_or_firebase_token, None)
|
||||||
|
|
||||||
|
|
||||||
|
def test_service_token_without_node_id_is_rejected():
|
||||||
|
_override({"service": True})
|
||||||
|
resp = client.post("/telemetry/adsb", json={"aircraft": []})
|
||||||
|
assert resp.status_code == 400
|
||||||
|
|
||||||
|
|
||||||
|
def test_node_upload_upserts_and_stamps_org_id():
|
||||||
|
_override({"node": True, "node_id": "node-1"})
|
||||||
|
with patch.object(telemetry.fstore, "doc_get_cached", AsyncMock(return_value={"org_id": "org-A"})), \
|
||||||
|
patch.object(telemetry.fstore, "doc_set", AsyncMock()) as mock_set:
|
||||||
|
resp = client.post("/telemetry/adsb", json={
|
||||||
|
"aircraft": [{"icao": "A1B2C3", "callsign": "UAL123", "lat": 41.1, "lon": -73.8}],
|
||||||
|
})
|
||||||
|
assert resp.status_code == 200
|
||||||
|
assert resp.json() == {"ok": True, "count": 1}
|
||||||
|
mock_set.assert_awaited_once()
|
||||||
|
(collection, doc_id, doc), kwargs = mock_set.await_args
|
||||||
|
assert collection == "aircraft"
|
||||||
|
assert doc_id == "A1B2C3"
|
||||||
|
assert doc["node_id"] == "node-1"
|
||||||
|
assert doc["org_id"] == "org-A"
|
||||||
|
assert kwargs.get("merge") is True
|
||||||
|
|
||||||
|
|
||||||
|
def test_node_upload_skips_entries_missing_icao():
|
||||||
|
_override({"node": True, "node_id": "node-1"})
|
||||||
|
with patch.object(telemetry.fstore, "doc_get_cached", AsyncMock(return_value=None)), \
|
||||||
|
patch.object(telemetry.fstore, "doc_set", AsyncMock()) as mock_set:
|
||||||
|
resp = client.post("/telemetry/adsb", json={"aircraft": [{"icao": ""}]})
|
||||||
|
assert resp.status_code == 200
|
||||||
|
assert resp.json() == {"ok": True, "count": 0}
|
||||||
|
mock_set.assert_not_awaited()
|
||||||
|
|
||||||
|
|
||||||
|
def test_ais_service_token_without_node_id_is_rejected():
|
||||||
|
_override({"service": True})
|
||||||
|
resp = client.post("/telemetry/ais", json={"vessels": []})
|
||||||
|
assert resp.status_code == 400
|
||||||
|
|
||||||
|
|
||||||
|
def test_ais_node_upload_upserts_and_stamps_org_id():
|
||||||
|
_override({"node": True, "node_id": "node-1"})
|
||||||
|
with patch.object(telemetry.fstore, "doc_get_cached", AsyncMock(return_value={"org_id": "org-A"})), \
|
||||||
|
patch.object(telemetry.fstore, "doc_set", AsyncMock()) as mock_set:
|
||||||
|
resp = client.post("/telemetry/ais", json={
|
||||||
|
"vessels": [{"mmsi": "123456789", "name": "MV TEST", "lat": 41.0, "lon": -73.9}],
|
||||||
|
})
|
||||||
|
assert resp.status_code == 200
|
||||||
|
assert resp.json() == {"ok": True, "count": 1}
|
||||||
|
mock_set.assert_awaited_once()
|
||||||
|
(collection, doc_id, doc), kwargs = mock_set.await_args
|
||||||
|
assert collection == "vessels"
|
||||||
|
assert doc_id == "123456789"
|
||||||
|
assert doc["node_id"] == "node-1"
|
||||||
|
assert doc["org_id"] == "org-A"
|
||||||
|
assert kwargs.get("merge") is True
|
||||||
|
|
||||||
|
|
||||||
|
def test_ais_node_upload_skips_entries_missing_mmsi():
|
||||||
|
_override({"node": True, "node_id": "node-1"})
|
||||||
|
with patch.object(telemetry.fstore, "doc_get_cached", AsyncMock(return_value=None)), \
|
||||||
|
patch.object(telemetry.fstore, "doc_set", AsyncMock()) as mock_set:
|
||||||
|
resp = client.post("/telemetry/ais", json={"vessels": [{"mmsi": ""}]})
|
||||||
|
assert resp.status_code == 200
|
||||||
|
assert resp.json() == {"ok": True, "count": 0}
|
||||||
|
mock_set.assert_not_awaited()
|
||||||
@@ -15,6 +15,8 @@ import L from "leaflet";
|
|||||||
import type { CallRecord, IncidentRecord, NodeRecord, NodeStatus } from "@/lib/types";
|
import type { CallRecord, IncidentRecord, NodeRecord, NodeStatus } from "@/lib/types";
|
||||||
import { isKnownSeverity, SEVERITY_COLORS, SEVERITY_LABEL, type Severity } from "@/lib/severity";
|
import { isKnownSeverity, SEVERITY_COLORS, SEVERITY_LABEL, type Severity } from "@/lib/severity";
|
||||||
import { MachineOutputNotice } from "@/components/ui/MachineOutputNotice";
|
import { MachineOutputNotice } from "@/components/ui/MachineOutputNotice";
|
||||||
|
import { useAircraft } from "@/lib/useAircraft";
|
||||||
|
import { useVessels } from "@/lib/useVessels";
|
||||||
|
|
||||||
// ── Leaflet icon fix ──────────────────────────────────────────────────────────
|
// ── Leaflet icon fix ──────────────────────────────────────────────────────────
|
||||||
delete (L.Icon.Default.prototype as unknown as Record<string, unknown>)._getIconUrl;
|
delete (L.Icon.Default.prototype as unknown as Record<string, unknown>)._getIconUrl;
|
||||||
@@ -90,6 +92,73 @@ function nodeIcon(status: NodeStatus): L.DivIcon {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ── Aircraft icon — node-26#9 second-SDR ADS-B overlay ────────────────────────
|
||||||
|
function aircraftIcon(trackDeg: number | null): L.DivIcon {
|
||||||
|
const size = 16;
|
||||||
|
const rotation = trackDeg ?? 0;
|
||||||
|
return L.divIcon({
|
||||||
|
className: "",
|
||||||
|
html: `<div style="width:${size}px;height:${size}px;transform:rotate(${rotation}deg)"><svg width="${size}" height="${size}" viewBox="0 0 24 24" fill="var(--accent)" stroke="var(--surface)" stroke-width="1"><path d="M12 2 L15 11 L22 15 L15 15.5 L14 21 L17 22.5 L12 21.5 L7 22.5 L10 21 L9 15.5 L2 15 L9 11 Z"/></svg></div>`,
|
||||||
|
iconSize: [size, size],
|
||||||
|
iconAnchor: [size / 2, size / 2],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function AircraftLayer() {
|
||||||
|
const { aircraft } = useAircraft();
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{aircraft
|
||||||
|
.filter((a) => a.lat != null && a.lon != null)
|
||||||
|
.map((a) => (
|
||||||
|
<Marker key={a.icao} position={[a.lat as number, a.lon as number]} icon={aircraftIcon(a.track_deg)}>
|
||||||
|
<Popup minWidth={160}>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<div className="font-semibold">{a.callsign || a.icao}</div>
|
||||||
|
<div className="text-xs text-ink-muted">ICAO {a.icao}</div>
|
||||||
|
{a.altitude_ft != null && <div className="text-xs">Altitude: {Math.round(a.altitude_ft)} ft</div>}
|
||||||
|
{a.ground_speed_kt != null && <div className="text-xs">Speed: {Math.round(a.ground_speed_kt)} kt</div>}
|
||||||
|
</div>
|
||||||
|
</Popup>
|
||||||
|
</Marker>
|
||||||
|
))}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Vessel icon — node-26#9 second-SDR AIS overlay ─────────────────────────────
|
||||||
|
function vesselIcon(headingDeg: number | null): L.DivIcon {
|
||||||
|
const size = 14;
|
||||||
|
const rotation = headingDeg ?? 0;
|
||||||
|
return L.divIcon({
|
||||||
|
className: "",
|
||||||
|
html: `<div style="width:${size}px;height:${size}px;transform:rotate(${rotation}deg)"><svg width="${size}" height="${size}" viewBox="0 0 24 24" fill="var(--accent)" stroke="var(--surface)" stroke-width="1"><path d="M12 2 L18 14 L18 20 L6 20 L6 14 Z"/></svg></div>`,
|
||||||
|
iconSize: [size, size],
|
||||||
|
iconAnchor: [size / 2, size / 2],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function VesselLayer() {
|
||||||
|
const { vessels } = useVessels();
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{vessels
|
||||||
|
.filter((v) => v.lat != null && v.lon != null)
|
||||||
|
.map((v) => (
|
||||||
|
<Marker key={v.mmsi} position={[v.lat as number, v.lon as number]} icon={vesselIcon(v.heading_deg)}>
|
||||||
|
<Popup minWidth={160}>
|
||||||
|
<div className="space-y-1">
|
||||||
|
<div className="font-semibold">{v.name || v.mmsi}</div>
|
||||||
|
<div className="text-xs text-ink-muted">MMSI {v.mmsi}</div>
|
||||||
|
{v.speed_kt != null && <div className="text-xs">Speed: {Math.round(v.speed_kt)} kt</div>}
|
||||||
|
</div>
|
||||||
|
</Popup>
|
||||||
|
</Marker>
|
||||||
|
))}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function nodeFanIcon(members: NodeRecord[]): L.DivIcon {
|
function nodeFanIcon(members: NodeRecord[]): L.DivIcon {
|
||||||
const n = members.length;
|
const n = members.length;
|
||||||
const CARD = 13;
|
const CARD = 13;
|
||||||
@@ -577,6 +646,20 @@ export default function MapView({ nodes, activeCalls, incidents = [], calls = []
|
|||||||
</FeatureGroup>
|
</FeatureGroup>
|
||||||
</LayersControl.Overlay>
|
</LayersControl.Overlay>
|
||||||
|
|
||||||
|
{/* Overlay: Aircraft — node-26#9 second-SDR ADS-B live snapshot, opt-in */}
|
||||||
|
<LayersControl.Overlay name="Aircraft">
|
||||||
|
<FeatureGroup>
|
||||||
|
<AircraftLayer />
|
||||||
|
</FeatureGroup>
|
||||||
|
</LayersControl.Overlay>
|
||||||
|
|
||||||
|
{/* Overlay: Vessels — node-26#9 second-SDR AIS live snapshot, opt-in */}
|
||||||
|
<LayersControl.Overlay name="Vessels">
|
||||||
|
<FeatureGroup>
|
||||||
|
<VesselLayer />
|
||||||
|
</FeatureGroup>
|
||||||
|
</LayersControl.Overlay>
|
||||||
|
|
||||||
{/* Overlay: Weather Radar — NEXRAD via Iowa Env Mesonet; key forces remount on refresh */}
|
{/* Overlay: Weather Radar — NEXRAD via Iowa Env Mesonet; key forces remount on refresh */}
|
||||||
<LayersControl.Overlay name="Weather Radar">
|
<LayersControl.Overlay name="Weather Radar">
|
||||||
<TileLayer
|
<TileLayer
|
||||||
|
|||||||
@@ -53,12 +53,39 @@ export interface NodeRecord {
|
|||||||
hardware_preset?: string;
|
hardware_preset?: string;
|
||||||
ppm_override?: number | null;
|
ppm_override?: number | null;
|
||||||
node_type?: string;
|
node_type?: string;
|
||||||
|
secondary_sdr_mode?: string;
|
||||||
|
sdr_count?: number;
|
||||||
enforce_override_timeout?: boolean;
|
enforce_override_timeout?: boolean;
|
||||||
is_overridden?: boolean;
|
is_overridden?: boolean;
|
||||||
override_system_id?: string | null;
|
override_system_id?: string | null;
|
||||||
override_timeout_at?: string | null;
|
override_timeout_at?: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface AircraftTrack {
|
||||||
|
icao: string;
|
||||||
|
org_id?: string;
|
||||||
|
node_id: string;
|
||||||
|
callsign: string | null;
|
||||||
|
lat: number | null;
|
||||||
|
lon: number | null;
|
||||||
|
altitude_ft: number | null;
|
||||||
|
ground_speed_kt: number | null;
|
||||||
|
track_deg: number | null;
|
||||||
|
last_seen: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface VesselTrack {
|
||||||
|
mmsi: string;
|
||||||
|
org_id?: string;
|
||||||
|
node_id: string;
|
||||||
|
name: string | null;
|
||||||
|
lat: number | null;
|
||||||
|
lon: number | null;
|
||||||
|
speed_kt: number | null;
|
||||||
|
heading_deg: number | null;
|
||||||
|
last_seen: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface VocabularyPendingTerm {
|
export interface VocabularyPendingTerm {
|
||||||
term: string;
|
term: string;
|
||||||
source: "induction" | "correction";
|
source: "induction" | "correction";
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { collection, onSnapshot, query, where, FirestoreError } from "firebase/firestore";
|
||||||
|
import { onAuthStateChanged } from "firebase/auth";
|
||||||
|
import { db, auth } from "@/lib/firebase";
|
||||||
|
import { useAuth } from "@/components/AuthProvider";
|
||||||
|
import type { AircraftTrack } from "@/lib/types";
|
||||||
|
|
||||||
|
// `aircraft` docs are a live snapshot (one per icao, overwritten on every
|
||||||
|
// sighting, node-26#9) — nothing prunes a doc when a plane leaves range, so
|
||||||
|
// staleness is filtered client-side rather than assuming the collection only
|
||||||
|
// ever holds current traffic.
|
||||||
|
const STALE_AFTER_MS = 2 * 60 * 1000;
|
||||||
|
|
||||||
|
export function useAircraft() {
|
||||||
|
const [aircraft, setAircraft] = useState<AircraftTrack[]>([]);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const { orgId } = useAuth();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let unsubFirestore: (() => void) | undefined;
|
||||||
|
|
||||||
|
const unsubAuth = onAuthStateChanged(auth, (user) => {
|
||||||
|
if (unsubFirestore) { unsubFirestore(); unsubFirestore = undefined; }
|
||||||
|
|
||||||
|
if (!user || !orgId) {
|
||||||
|
setAircraft([]);
|
||||||
|
setLoading(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const q = query(collection(db, "aircraft"), where("org_id", "==", orgId));
|
||||||
|
unsubFirestore = onSnapshot(q, (snap) => {
|
||||||
|
const now = Date.now();
|
||||||
|
const fresh = snap.docs
|
||||||
|
.map((d) => d.data() as AircraftTrack)
|
||||||
|
.filter((a) => now - new Date(a.last_seen).getTime() < STALE_AFTER_MS);
|
||||||
|
setAircraft(fresh);
|
||||||
|
setLoading(false);
|
||||||
|
}, (err: FirestoreError) => { console.error("useAircraft:", err); setError(err.message); setLoading(false); });
|
||||||
|
});
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
unsubAuth();
|
||||||
|
if (unsubFirestore) unsubFirestore();
|
||||||
|
};
|
||||||
|
}, [orgId]);
|
||||||
|
|
||||||
|
return { aircraft, loading, error };
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { collection, onSnapshot, query, where, FirestoreError } from "firebase/firestore";
|
||||||
|
import { onAuthStateChanged } from "firebase/auth";
|
||||||
|
import { db, auth } from "@/lib/firebase";
|
||||||
|
import { useAuth } from "@/components/AuthProvider";
|
||||||
|
import type { VesselTrack } from "@/lib/types";
|
||||||
|
|
||||||
|
// Same shape as useAircraft — `vessels` is a live snapshot (one per mmsi,
|
||||||
|
// overwritten on every sighting, node-26#9), nothing prunes a doc when a
|
||||||
|
// vessel goes out of range, so staleness is filtered client-side. AIS
|
||||||
|
// position reports are much less frequent than ADS-B (minutes, not
|
||||||
|
// seconds), so this window is longer than useAircraft's.
|
||||||
|
const STALE_AFTER_MS = 10 * 60 * 1000;
|
||||||
|
|
||||||
|
export function useVessels() {
|
||||||
|
const [vessels, setVessels] = useState<VesselTrack[]>([]);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [error, setError] = useState<string | null>(null);
|
||||||
|
const { orgId } = useAuth();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let unsubFirestore: (() => void) | undefined;
|
||||||
|
|
||||||
|
const unsubAuth = onAuthStateChanged(auth, (user) => {
|
||||||
|
if (unsubFirestore) { unsubFirestore(); unsubFirestore = undefined; }
|
||||||
|
|
||||||
|
if (!user || !orgId) {
|
||||||
|
setVessels([]);
|
||||||
|
setLoading(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const q = query(collection(db, "vessels"), where("org_id", "==", orgId));
|
||||||
|
unsubFirestore = onSnapshot(q, (snap) => {
|
||||||
|
const now = Date.now();
|
||||||
|
const fresh = snap.docs
|
||||||
|
.map((d) => d.data() as VesselTrack)
|
||||||
|
.filter((v) => now - new Date(v.last_seen).getTime() < STALE_AFTER_MS);
|
||||||
|
setVessels(fresh);
|
||||||
|
setLoading(false);
|
||||||
|
}, (err: FirestoreError) => { console.error("useVessels:", err); setError(err.message); setLoading(false); });
|
||||||
|
});
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
unsubAuth();
|
||||||
|
if (unsubFirestore) unsubFirestore();
|
||||||
|
};
|
||||||
|
}, [orgId]);
|
||||||
|
|
||||||
|
return { vessels, loading, error };
|
||||||
|
}
|
||||||
@@ -95,6 +95,18 @@ service cloud.firestore {
|
|||||||
allow write: if false;
|
allow write: if false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Live map overlays fed by a node's second SDR (node-26#9). Snapshot
|
||||||
|
// docs, one per icao/mmsi, last-seen-wins — not a history collection.
|
||||||
|
match /aircraft/{icao} {
|
||||||
|
allow read: if docInMyOrg();
|
||||||
|
allow write: if false;
|
||||||
|
}
|
||||||
|
|
||||||
|
match /vessels/{mmsi} {
|
||||||
|
allow read: if docInMyOrg();
|
||||||
|
allow write: if false;
|
||||||
|
}
|
||||||
|
|
||||||
match /alert_events/{alertId} {
|
match /alert_events/{alertId} {
|
||||||
allow read: if docInMyOrg();
|
allow read: if docInMyOrg();
|
||||||
allow write: if false;
|
allow write: if false;
|
||||||
|
|||||||
Reference in New Issue
Block a user