Files
git.stella-ops.org/src/Concelier/__Libraries/StellaOps.Concelier.Connector.Acsc/TASKS.md
2025-10-28 15:10:40 +02:00

3.5 KiB
Raw Blame History

TASKS

Task Owner(s) Depends on Notes
FEEDCONN-ACSC-02-001 Source discovery & feed contract BE-Conn-ACSC Research DONE (2025-10-11) Catalogued feed slugs /acsc/view-all-content/{alerts,advisories,news,publications,threats}/rss; every endpoint currently negotiates HTTP/2 then aborts with INTERNAL_ERROR (curl exit92) and hanging >600s when forcing --http1.1. Documented traces + mitigations in docs/concelier-connector-research-20251011.md and opened FEEDCONN-SHARED-HTTP2-001 for shared handler tweaks (force RequestVersionOrLower, jittered retries, relay option).
FEEDCONN-ACSC-02-002 Fetch pipeline & cursor persistence BE-Conn-ACSC Source.Common, Storage.Mongo DONE (2025-10-12) HTTP client now pins HttpRequestMessage.VersionPolicy = RequestVersionOrLower, forces `AutomaticDecompression = GZip
FEEDCONN-ACSC-02-003 Parser & DTO sanitiser BE-Conn-ACSC Source.Common DONE (2025-10-12) Added AcscFeedParser to sanitise RSS payloads, collapse multi-paragraph summaries, dedupe references, and surface serialNumber/advisoryType fields as structured metadata + alias candidates. ParseAsync now materialises acsc.feed.v1 DTOs, promotes documents to pending-map, and advances cursor state. Covered by AcscConnectorParseTests.
FEEDCONN-ACSC-02-004 Canonical mapper + range primitives BE-Conn-ACSC Models DONE (2025-10-12) Introduced AcscMapper and wired MapAsync to emit canonical advisories with normalized aliases, source-tagged references, and optional vendor affectedPackages derived from “Systems/Products affected” fields. Documents transition to mapped, advisories persist via IAdvisoryStore, and metrics/logging capture mapped counts. AcscConnectorParseTests exercise fetch→parse→map flow.
FEEDCONN-ACSC-02-005 Deterministic fixtures & regression tests QA Testing DONE (2025-10-12) AcscConnectorParseTests now snapshots fetch→parse→map output via Acsc/Fixtures/acsc-advisories.snapshot.json; set UPDATE_ACSC_FIXTURES=1 to regenerate. Tests assert DTO status transitions, advisory persistence, and state cleanup.
FEEDCONN-ACSC-02-006 Diagnostics & documentation DevEx Docs DONE (2025-10-12) Added module README describing configuration, job schedules, metrics (including new acsc.map.success counter), relay behaviour, and fixture workflow. Diagnostics updated to count map successes alongside existing fetch/parse metrics.
FEEDCONN-ACSC-02-007 Feed retention & pagination validation BE-Conn-ACSC Research DONE (2025-10-11) Relay sampling shows retention ≥ July 2025; need to re-run once direct HTTP/2 path is stable to see if feed caps at ~50 items and whether ?page= exists. Pending action tracked in shared HTTP downgrade task.
FEEDCONN-ACSC-02-008 HTTP client compatibility plan BE-Conn-ACSC Source.Common DONE (2025-10-11) Reproduced Akamai resets, drafted downgrade plan (two-stage HTTP/2 retry + relay fallback), and filed FEEDCONN-SHARED-HTTP2-001; module README TODO will host the per-environment knob matrix.