Some checks failed
CI / Lint, typecheck, test (pull_request) Successful in 6m25s
CI / Build container images (pull_request) Successful in 2m58s
CI / Auth e2e pack (pull_request) Successful in 8m35s
CI / Import/export fidelity gate (pull_request) Successful in 1m7s
CD / Deploy to Test (push) Blocked by required conditions
CD / Smoke tests against Test (push) Blocked by required conditions
CD / Promote to Int (push) Blocked by required conditions
CI / Auth e2e pack (push) Blocked by required conditions
CI / Import/export fidelity gate (push) Blocked by required conditions
CI / Build container images (push) Blocked by required conditions
CI / Lint, typecheck, test (push) Has been cancelled
CD / Build and push images (push) Has been cancelled
Instrument every full-content read channel for pages with classification = vs_nfd (ADR 0023, variant A): SPA state fetch and read rendering, public JSON content, no-JS shell, expanded embeds, public API GET (incl. the MCP read_page path and write echoes), attachment download under the #212 effective classification, all export shapes (markdown, pond ZIP, account data export, queued docx/odt/pdf at enqueue), and collab-token issuance as the api-side proxy for the WS join. Events land in the new read_events table (no FKs — evidence survives page purges and hard user deletions) with actor, session key (session:/token:/job:/anon), page, pond, channel and the classification at read time. Recording failures are NOT swallowed: a failed write aborts the read (hard failure, the deliberate contrast to AuditService — decision recorded in ADR 0023 and security.md §Logging, together with the recorded residuals: content fragments and feeds). One e2e test per channel proves both the event and its absence for unclassified pages, plus the hard-failure semantics. Refs #222. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AUtYMxwTCMHG9mVHnwbFg8
18 lines
572 B
TypeScript
18 lines
572 B
TypeScript
import type { ReadActor } from './read-trail.service';
|
|
|
|
/**
|
|
* Resolves the {@link ReadActor} of a cookie-session request (issue #222).
|
|
* Structural parameter instead of `AuthedRequest` so the read-trail module
|
|
* never imports the auth guard. PAT requests build their key directly
|
|
* (`token:<id>`, public-api controller).
|
|
*/
|
|
export function readActorOf(request: {
|
|
user?: { id: string } | null;
|
|
sessionId?: string;
|
|
}): ReadActor {
|
|
return {
|
|
actorId: request.user?.id ?? null,
|
|
sessionKey: request.sessionId ? `session:${request.sessionId}` : 'anon',
|
|
};
|
|
}
|