feat: rebuild Infinity Nikki on a live source, at day precision
The Game8 page stopped being updated on 31 August 2025 and mentions 2026 zero times, and it had been publishing five year-old events with endsAt: null — which the app renders as live-with-unknown-end indefinitely. That is worse than an empty lane, and nothing in the pipeline catches it, because a stale page is not a broken one: it fetches, it parses, it passes every test. The replacement is the game's Fandom wiki, permitted by the same standard robots.txt that cleared Nikke, maintained to within two days, and shaped as Current / Upcoming / Permanent / Past tables of Event | Duration | Description | Type. Its durations state a wall clock on both sides and no zone anywhere for that column, so parseZonelessClockRange reads the clock and discards it, publishing the printed date at day precision. That invents nothing and treats these cells exactly as every Game8 date already is. Converting instead would mean picking an offset, and the offset moves the day: July 16 20:00 read as UTC-7 is July 17, and the start's day is half of every event ID this game will ever have. The Game8 entry is removed rather than kept as a second opinion, since a source whose every row is wrong is not corroboration. Its fixture stays: it is the only page here carrying the labelled "Start: ... End: Permanent" shape, and the test now drives it through the parser directly. Titles come from a link's title attribute, which never passes through text(), so they are entity-decoded by hand — otherwise "Alison's Travel Shop" becomes a slug, and a slug is a localStorage key. The ingest sanitiser caught exactly that during the build. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
This commit is contained in:
co-authored by
Claude Opus 5
parent
195fd75ba4
commit
2985484883
@@ -72,12 +72,6 @@ const SOURCES: SourceSpec[] = [
|
||||
url: "https://game8.co/games/Neverness-to-Everness/archives/592073",
|
||||
parserId: "game8",
|
||||
},
|
||||
{
|
||||
id: "nikki-game8-events",
|
||||
game: "nikki",
|
||||
url: "https://game8.co/games/Infinity-Nikki/archives/487445",
|
||||
parserId: "game8",
|
||||
},
|
||||
{
|
||||
id: "p5x-game8-events",
|
||||
game: "p5x",
|
||||
@@ -143,6 +137,21 @@ const SOURCES: SourceSpec[] = [
|
||||
url: "https://stellasora.miraheze.org/wiki/Main_Page",
|
||||
parserId: "stellasorawiki",
|
||||
},
|
||||
{
|
||||
id: "nikki-fandom-events",
|
||||
game: "nikki",
|
||||
// Infinity Nikki, replacing a Game8 page that stopped being updated in
|
||||
// August 2025 and had been publishing year-old events as live ever since.
|
||||
//
|
||||
// `infinitynikki.fandom.com` 301s here; this is the canonical host. Its
|
||||
// robots.txt was read in a browser on 2026-08-19 and is the standard Fandom
|
||||
// file, the same one that cleared Nikke below.
|
||||
//
|
||||
// Day precision on both boundaries by choice: the page states a wall clock
|
||||
// and names no zone for it. See `parsers/fandom.ts` and docs/SOURCES.md § 11.
|
||||
url: "https://infinity-nikki.fandom.com/api.php?action=parse&page=Event&prop=text&formatversion=2&format=json",
|
||||
parserId: "fandom",
|
||||
},
|
||||
{
|
||||
id: "nikke-fandom-events",
|
||||
game: "nikke",
|
||||
|
||||
Reference in New Issue
Block a user