"""Remote-telemetry consent gate.Mirrors :func:`~application.ledger.cloud_evidence_read_permitted`'s exactshape (gestor-mode absolute bar, then the deployment opt-in flag, then thetier, then the per-invocation acknowledgement, all ANDed) so the codebase'soff-host consent gates stay uniform(``sensitive-financial-data-secure-storage-only``,``2026-07-04-remote-telemetry-adr``). Settings is imported lazily inside thefunction body to avoid the circular import that would result from``core.config`` importing :mod:`~core.telemetry` for:class:`~core.telemetry.TelemetryTier` at module scope.See Also: :func:`~core.telemetry.emit_telemetry_event` Applies this gate before dispatching any remote-eligible payload. :class:`~core.telemetry.TelemetryTier` Closed tier enum consulted by the gate."""from__future__importannotationsfromtypingimportTYPE_CHECKINGfrom._tierimportTelemetryTierifTYPE_CHECKING:from..configimportSettings__all__=["telemetry_emit_permitted"]
[docs]deftelemetry_emit_permitted(settings:Settings,*,acknowledged:bool)->bool:"""Whether a remote telemetry emission is permitted for THIS invocation. All local telemetry (LLM run-timing, MCP session trajectory) stays unconditional and unaffected by this gate; it governs only the remote exception. A remote emission is permitted only when every one of the following holds: 1. Gestor/professional mode is OFF (``settings.aeat_telemetry_gestor_mode`` is ``False``). This is an absolute, categorical bar: a gestor deployment never transmits telemetry regardless of the other three conditions. 2. The deployment has opted in (``settings.aeat_telemetry_opt_in`` is ``True``). 3. The configured tier is not :attr:`~core.telemetry.TelemetryTier.OFF`. 4. The operator acknowledged this specific invocation (``acknowledged`` is ``True``). The acknowledgement is never sticky; it must be re-affirmed at every call site, mirroring :func:`~application.ledger.cloud_evidence_read_permitted`. Args: settings: Resolved deployment settings carrying the telemetry consent posture. acknowledged: Whether the operator acknowledged remote telemetry for this specific invocation. Returns: ``True`` only when all four conditions above hold. """ifsettings.aeat_telemetry_gestor_mode:returnFalseifnotsettings.aeat_telemetry_opt_in:returnFalseifsettings.aeat_telemetry_tierisTelemetryTier.OFF:returnFalsereturnacknowledged