mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
fix(brief): per-run slot URL so same-day digests link to distinct briefs (#3205)
* fix(brief): per-run slot URL so same-day digests link to distinct briefs
Digest emails at 8am and 1pm on the same day pointed to byte-identical
magazine URLs because the URL was keyed on YYYY-MM-DD in the user tz.
Each compose run overwrote the single daily envelope in place, and the
composer rolling 24h story window meant afternoon output often looked
identical to morning. Readers clicking an older email got whatever the
latest cron happened to write.
Slot format is now YYYY-MM-DD-HHMM (local tz, per compose run). The
magazine URL, carousel URLs, and Redis key all carry the slot, and each
digest dispatch gets its own frozen envelope that lives out the 7d TTL.
envelope.data.date stays YYYY-MM-DD for rendering "19 April 2026".
The digest cron also writes a brief:latest:{userId} pointer (7d TTL,
overwritten each compose) so the dashboard panel and share-url endpoint
can locate the most recent brief without knowing the slot. The
previous date-probing strategy does not work once keys carry HHMM.
No back-compat for the old YYYY-MM-DD format: the verifier rejects it,
the composer only ever writes the new shape, and any in-flight
notifications signed under the old format will 403 on click. Acceptable
at the rollout boundary per product decision.
* fix(brief): carve middleware bot allowlist to accept slot-format carousel path
BRIEF_CAROUSEL_PATH_RE in middleware.ts was still matching only the
pre-slot YYYY-MM-DD segment, so every slot-based carousel URL emitted
by the digest cron (YYYY-MM-DD-HHMM) would miss the social allowlist
and fall into the generic bot gate. Telegram/Slack/Discord/LinkedIn
image fetchers would 403 on sendMediaGroup, breaking previews for the
new digest links.
CI missed this because tests/middleware-bot-gate.test.mts still
exercised the old /YYYY-MM-DD/ path shape. Swap the fixture to the
slot format and add a regression asserting the pre-slot shape is now
rejected, so legacy links cannot silently leak the allowlist after
the rollout.
* fix(brief): preserve caller-requested slot + correct no-brief share-url error
Two contract bugs in the slot rollout that silently misled callers:
1. GET /api/latest-brief?slot=X where X has no envelope was returning
{ status: 'composing', issueDate: <today UTC> } — which reads as
"today's brief is composing" instead of "the specific slot you
asked about doesn't exist". A caller probing a known historical
slot would get a completely unrelated "today" signal. Now we echo
the requested slot back (issueSlot + issueDate derived from its
date portion) when the caller supplied ?slot=, and keep the
UTC-today placeholder only for the no-param path.
2. POST /api/brief/share-url with no slot and no latest-pointer was
falling into the generic invalid_slot_shape 400 branch. That is
not an input-shape problem; it is "no brief exists yet for this
user". Return 404 brief_not_found — the same code the
existing-envelope check returns — so callers get one coherent
contract: either the brief exists and is shareable, or it doesn't
and you get 404.
This commit is contained in:
@@ -27,7 +27,11 @@
|
||||
*/
|
||||
|
||||
const USER_ID_RE = /^[A-Za-z0-9_-]{1,128}$/;
|
||||
const ISSUE_DATE_RE = /^\d{4}-\d{2}-\d{2}$/;
|
||||
// YYYY-MM-DD-HHMM issue slot — matches the magazine signer's slot
|
||||
// format. deriveShareHash is bound to (userId, slot) so a morning
|
||||
// brief and an afternoon brief of the same day produce distinct
|
||||
// public share URLs.
|
||||
const ISSUE_DATE_RE = /^\d{4}-\d{2}-\d{2}-\d{4}$/;
|
||||
// 12 base64url chars = 72 bits — enough to prevent brute-force
|
||||
// enumeration of active share URLs even at aggressive rates.
|
||||
const HASH_RE = /^[A-Za-z0-9_-]{12}$/;
|
||||
@@ -47,7 +51,7 @@ function assertShape(userId: string, issueDate: string): void {
|
||||
throw new BriefShareUrlError('invalid_user_id', 'userId must match [A-Za-z0-9_-]{1,128}');
|
||||
}
|
||||
if (!ISSUE_DATE_RE.test(issueDate)) {
|
||||
throw new BriefShareUrlError('invalid_issue_date', 'issueDate must match YYYY-MM-DD');
|
||||
throw new BriefShareUrlError('invalid_issue_date', 'issueDate must match YYYY-MM-DD-HHMM');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -28,7 +28,10 @@
|
||||
*/
|
||||
|
||||
const USER_ID_RE = /^[A-Za-z0-9_-]{1,128}$/;
|
||||
const ISSUE_DATE_RE = /^\d{4}-\d{2}-\d{2}$/;
|
||||
// YYYY-MM-DD-HHMM issue slot — hour+minute of the compose run in the
|
||||
// user's tz. The token binds userId + slot so each digest dispatch
|
||||
// gets its own frozen magazine URL.
|
||||
const ISSUE_DATE_RE = /^\d{4}-\d{2}-\d{2}-\d{4}$/;
|
||||
const TOKEN_RE = /^[A-Za-z0-9_-]{43}$/; // base64url(sha256) = 43 chars, no padding
|
||||
|
||||
export class BriefUrlError extends Error {
|
||||
@@ -46,7 +49,7 @@ function assertShape(userId: string, issueDate: string): void {
|
||||
throw new BriefUrlError('invalid_user_id', 'userId must match [A-Za-z0-9_-]{1,128}');
|
||||
}
|
||||
if (!ISSUE_DATE_RE.test(issueDate)) {
|
||||
throw new BriefUrlError('invalid_issue_date', 'issueDate must match YYYY-MM-DD');
|
||||
throw new BriefUrlError('invalid_issue_date', 'issueDate must match YYYY-MM-DD-HHMM');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -155,7 +158,7 @@ function base64urlDecode(token: string): Uint8Array | null {
|
||||
*
|
||||
* const url = await signBriefUrl({
|
||||
* userId: 'user_abc',
|
||||
* issueDate: '2026-04-17',
|
||||
* issueDate: '2026-04-17-0800',
|
||||
* baseUrl: 'https://worldmonitor.app',
|
||||
* secret: process.env.BRIEF_URL_SIGNING_SECRET!,
|
||||
* });
|
||||
|
||||
Reference in New Issue
Block a user