File size: 12,285 Bytes
ee888e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | // Pure helpers extracted from seed-disease-outbreaks.mjs so tests can import
// them without triggering the seeder's top-level runSeed() call (which would
// exit the process on import).
//
// The seeder's three parsers (WHO DON / RSS / TGH) do network I/O, but the
// PER-ITEM normalization shape is pure and what we want to lock in tests:
//
// - synthetic-timestamp tagging (WHO/RSS fall back to nowMs when upstream
// omits a date; TGH always carries a real date by the time it reaches
// this layer because the line-198 filter rejects undated records earlier)
// - mapItem composition (id, disease/location detection, lat/lng defaults)
// - contentMeta (filters synthetic + clock-skew, picks newest/oldest)
// - publishTransform (strips helpers before atomicPublish)
//
// Extracting these out of the seeder gives Sprint 2's tests a single source
// of truth β drift between test fixtures and seeder shape is impossible
// because the test imports the same code.
import { extractCountryCode } from './shared/geo-extract.mjs';
import { decodeHtmlEntities } from './_html-entities.mjs';
// WHO DON uses multi-word or hyphenated country names that the bigram scanner misses.
// These override extractCountryCode for exact substring matches (checked first, case-insensitive).
const WHO_NAME_OVERRIDES = {
'democratic republic of the congo': 'CD',
'dr congo': 'CD',
'timor-leste': 'TL',
'east timor': 'TL',
'papua new guinea': 'PG',
'kingdom of saudi arabia': 'SA',
'united kingdom': 'GB',
};
export function extractCountryCodeFull(text) {
const lower = text.toLowerCase();
for (const [name, iso2] of Object.entries(WHO_NAME_OVERRIDES)) {
if (lower.includes(name)) return iso2;
}
return extractCountryCode(text) ?? '';
}
export function stableHash(str) {
let h = 0;
for (let i = 0; i < str.length; i++) h = (Math.imul(31, h) + str.charCodeAt(i)) | 0;
return Math.abs(h).toString(36);
}
/**
* Extract location string from WHO-style titles.
* Handles: "Disease β Country" (em-dash), "Disease - Country" (hyphen), "Disease in Country".
*/
export function extractLocationFromTitle(title) {
// WHO DON pattern: "Disease β Country" or "Disease - Country" (one or more dash-separated segments)
// Split on em-dash, en-dash, or " - " / " β " to get all segments, then take the last capitalized one.
const segments = title.split(/\s*[ββ]\s*|\s+-\s+/);
if (segments.length >= 2) {
const last = segments[segments.length - 1].trim();
if (/^[A-Z]/.test(last)) return last;
}
// Fallback: "... in <Country/Region>"
const inMatch = title.match(/\bin\s+([A-Z][^,.(]+)/);
if (inMatch) return inMatch[1].trim();
return '';
}
// Editorial keyword classifier β NOT derived from a published index.
// Maps disease-outbreak titles/descriptions to a 3-level severity bucket
// (alert / warning / watch) by matching whole-word keywords. Last reviewed
// 2026-05-18. See docs/methodology/disease-alert-level.mdx and #3791 for the
// rationale, known limitations, and the change protocol if you adjust these.
//
// Word boundaries are mandatory: prior substring matching let "epidemic" fire
// inside "antiepidemic" and "spread" fire inside "widespread vaccination",
// silently over-promoting items to a higher alert level.
//
// Prefixed `DISEASE_` to avoid collision with the unrelated geopolitical
// `ALERT_KEYWORDS` export in src/config/feeds.ts (war/invasion/nuclear).
/** Callers MUST use the exported `DISEASE_ALERT_RE` regex, not substring matching (#3791). */
export const DISEASE_ALERT_KEYWORDS = Object.freeze(['outbreak', 'emergency', 'epidemic', 'pandemic']);
/** Callers MUST use the exported `DISEASE_WARNING_RE` regex, not substring matching (#3791). */
export const DISEASE_WARNING_KEYWORDS = Object.freeze(['warning', 'spread', 'cases increasing']);
export const ALERT_LEVEL_METHODOLOGY_VERSION = 'v1';
// Precompiled regexes exposed so external callers don't reach for
// `text.includes(kw)` and silently re-introduce the substring bug.
export const DISEASE_ALERT_RE = new RegExp(`\\b(?:${DISEASE_ALERT_KEYWORDS.join('|')})\\b`, 'i');
export const DISEASE_WARNING_RE = new RegExp(`\\b(?:${DISEASE_WARNING_KEYWORDS.join('|')})\\b`, 'i');
export function detectAlertLevel(title, desc) {
const text = `${title ?? ''} ${desc ?? ''}`;
if (DISEASE_ALERT_RE.test(text)) return 'alert';
if (DISEASE_WARNING_RE.test(text)) return 'warning';
return 'watch';
}
export function detectDisease(title) {
const lower = title.toLowerCase();
const known = ['mpox', 'monkeypox', 'ebola', 'cholera', 'covid', 'dengue', 'measles',
'polio', 'marburg', 'lassa', 'plague', 'yellow fever', 'typhoid', 'influenza',
'avian flu', 'h5n1', 'h5n2', 'anthrax', 'rabies', 'meningitis', 'hepatitis',
'nipah', 'rift valley', 'crimean-congo', 'leishmaniasis', 'malaria', 'diphtheria',
'chikungunya', 'botulism', 'brucellosis', 'salmonella', 'listeria', 'e. coli',
'norovirus', 'legionella', 'campylobacter'];
for (const d of known) {
if (lower.includes(d)) return d.charAt(0).toUpperCase() + d.slice(1);
}
return 'Unknown Disease';
}
// ββ Per-item normalization (shape contract for content-age) ββββββββββββββ
//
// All three parsers produce items in the SAME shape so contentMeta and
// publishTransform can be uniform. The pre-publish in-memory shape carries:
// - publishedMs: non-null number (Date.now() fallback for
// UI/RPC consumer compat)
// - _originalPublishedMs: parsed-ms or null (null when synthetic)
// - _publishedAtIsSynthetic: boolean β true when publishedMs was a fallback
// publishTransform strips the underscore-prefixed helpers before publish.
/**
* Normalize one WHO DON API item.
* @param {object} item - raw WHO DON API entry: { Title, ItemDefaultUrl, PublicationDateAndTime }
* @param {number} nowMs - injectable "now" for deterministic tests; defaults to Date.now()
*/
export function whoNormalizeItem(item, nowMs = Date.now()) {
const origMs = item.PublicationDateAndTime ? new Date(item.PublicationDateAndTime).getTime() : null;
const hasOrig = origMs != null && Number.isFinite(origMs);
return {
title: (item.Title || '').trim(),
link: item.ItemDefaultUrl ? `https://www.who.int${item.ItemDefaultUrl}` : '',
desc: '',
publishedMs: hasOrig ? origMs : nowMs,
_originalPublishedMs: hasOrig ? origMs : null,
_publishedAtIsSynthetic: !hasOrig,
sourceName: 'WHO',
};
}
/**
* Clean one RSS <description> body: decode entities, strip tags, trim,
* truncate to 300 chars. Order matters β decode before tag-strip so escaped
* markup publishers intended as text survives the strip. Decoding is a
* single pass via the shared decoder (#5436): `&lt;` stays `<`.
*/
export function cleanRssDescription(rawDesc) {
return decodeHtmlEntities(rawDesc || '')
.replace(/<[^>]+>/g, '').trim().slice(0, 300);
}
/**
* Normalize one RSS item (CDC HAN, Outbreak News Today).
* @param {object} parsed - { title, link, desc, pubDate, sourceName }
* @param {number} nowMs - injectable "now"
*/
export function rssNormalizeItem({ title, link, desc, pubDate, sourceName }, nowMs = Date.now()) {
const origMs = pubDate ? new Date(pubDate).getTime() : null;
const hasOrig = origMs != null && Number.isFinite(origMs);
return {
title, link, desc,
publishedMs: hasOrig ? origMs : nowMs,
sourceName,
_originalPublishedMs: hasOrig ? origMs : null,
_publishedAtIsSynthetic: !hasOrig,
};
}
/**
* Normalize one ThinkGlobalHealth record.
* Caller is expected to have already filtered out records with missing/unparseable dates
* (the seeder does this at line ~198), so TGH items are always non-synthetic.
* @param {object} rec - parsed TGH record
*/
export function tghNormalizeItem(rec) {
const publishedMs = new Date(rec.date).getTime();
// place_name from TGH is often "City, District, Country" β take only the first segment for display.
const cityName = (rec.placeName || '').split(',')[0].trim() || rec.country || '';
return {
title: `${rec.disease}${rec.country ? ` - ${rec.country}` : ''}`,
link: rec.sourceUrl || '',
desc: rec.summary ? rec.summary.slice(0, 300) : '',
publishedMs,
sourceName: 'ThinkGlobalHealth',
_country: rec.country || '',
_disease: rec.disease || '',
_location: cityName,
_lat: Number.isFinite(rec.lat) ? rec.lat : null,
_lng: Number.isFinite(rec.lng) ? rec.lng : null,
_cases: rec.cases ?? 0,
_originalPublishedMs: publishedMs,
_publishedAtIsSynthetic: false,
};
}
/**
* Map a normalized parser item to the cached `outbreaks[]` shape.
* Carries pre-publish helpers (`_publishedAtIsSynthetic`, `_originalPublishedMs`)
* for contentMeta to read at runSeed time. publishTransform strips them
* before atomicPublish so they never reach the canonical key or clients.
*/
export function mapItem(item) {
const location = item._location || extractLocationFromTitle(item.title)
|| (item.sourceName === 'CDC' ? 'United States' : '');
const disease = item._disease || detectDisease(item.title);
const countryCode = item._country
? (extractCountryCodeFull(item._country) || extractCountryCodeFull(location || item.title))
: extractCountryCodeFull(location || `${item.title} ${item.desc}`);
return {
id: `${item.sourceName.toLowerCase()}-${stableHash(item.link || item.title)}-${item.publishedMs}`,
disease,
location,
countryCode,
alertLevel: detectAlertLevel(item.title, item.desc),
summary: item.desc,
sourceUrl: item.link,
publishedAt: item.publishedMs,
sourceName: item.sourceName,
lat: item._lat ?? 0,
lng: item._lng ?? 0,
cases: item._cases || 0,
// PRE-PUBLISH HELPERS β see header comment.
_publishedAtIsSynthetic: item._publishedAtIsSynthetic === true,
_originalPublishedMs: item._originalPublishedMs ?? null,
};
}
// ββ Content-age contract surfaces (Sprint 2) βββββββββββββββββββββββββββββ
/**
* Compute newest/oldest content timestamps from the disease-outbreaks payload.
*
* - Excludes items whose timestamp was synthetic (Date.now() fallback when
* upstream omitted a date) β preserving them would falsely report content
* as fresh and mask real upstream silence.
* - Excludes future-dated items beyond 1h clock-skew tolerance.
* - Returns null when no items have a usable timestamp β runSeed writes
* newestItemAt: null, classifier reads as STALE_CONTENT.
*
* @param {{outbreaks: Array}} data
* @param {number} nowMs - injectable "now" for deterministic tests
*/
export function diseaseContentMeta(data, nowMs = Date.now()) {
const items = Array.isArray(data?.outbreaks) ? data.outbreaks : [];
let newest = -Infinity, oldest = Infinity, validCount = 0;
const skewLimit = nowMs + 60 * 60 * 1000;
for (const item of items) {
if (item._publishedAtIsSynthetic === true) continue;
const ts = item._originalPublishedMs;
if (typeof ts !== 'number' || !Number.isFinite(ts) || ts <= 0) continue;
if (ts > skewLimit) continue;
validCount++;
if (ts > newest) newest = ts;
if (ts < oldest) oldest = ts;
}
if (validCount === 0) return null;
return { newestItemAt: newest, oldestItemAt: oldest };
}
/**
* Strip pre-publish helper fields from every outbreak before atomicPublish.
* Helpers (_publishedAtIsSynthetic, _originalPublishedMs) MUST NOT appear in:
* - the Redis canonical key (health:disease-outbreaks:v1)
* - /api/bootstrap response (data.diseaseOutbreaks)
* - list-disease-outbreaks RPC response
* - the DiseaseOutbreakItem proto-generated type
*/
export function diseasePublishTransform(data) {
const outbreaks = Array.isArray(data?.outbreaks) ? data.outbreaks : [];
return {
...data,
outbreaks: outbreaks.map((item) => {
const { _publishedAtIsSynthetic: _a, _originalPublishedMs: _b, ...rest } = item;
return rest;
}),
};
}
/** Sprint 2 pilot threshold (9 days). Single source of truth β exported so the
* seeder uses the same constant the test asserts against. */
export const DISEASE_MAX_CONTENT_AGE_MIN = 9 * 24 * 60;
|