Notes.RootBlogName/NoteBlogName/Type became RootBlogId/NoteBlogId/TypeId on 2026-08-07, resolved through the new BlogNames and NoteTypes tables. There is no compatibility view, so every affected statement is a hard cut. All 14 call sites in DataAccess.cs are ported: - Notes->Blogs joins go through Blogs.BlogId in one integer hop; the Notes->Posts join in GetRepliesWithFilledText is the only one that must route through BlogNames, since Posts carries no BlogId - AddNote registers both blog names and the note type with INSERT OR IGNORE before inserting, in one transaction committed before the console sleep. Registering the type matters: an unseen type would resolve to NULL and fail NOT NULL on TypeId, silently losing the note - The LEFT JOIN Notes in GetPosts is dropped rather than translated. It selected nothing, could not remove a row, and its duplicates were collapsed by the query's own GROUP BY - Duplicate-key detection moves to IsNotesDuplicateKey, matching the constraint and table instead of an exact column list. The old literal string is what broke on this rename - EnsureReplyTextColumnExists drops DEFAULT '.', matching the migrated schema: new rows get NULL, not a placeholder nobody wrote verify-db-schema.sql gains BlogNames, NoteTypes, Blogs.BlogId and the new Notes columns, plus query 1d naming a pre-migration file and pointing at normalize-notes.sql. Blogs.BlogId is deliberately not auto-fixable -- an added-but-empty column makes engagement joins return zero rows silently. Verified against the live 148 MB file: query plans hit the intended indexes, and the BlogId join matches an independent name-resolved formulation exactly on all 4,267 GetBlogs and 2,637 GetBlogsForLikes rows. RolodexRepository.cs (16 sites) lives in the Rolodex repo and is not covered here. Co-Authored-By: Claude Opus 5 <[email protected]>
14 KiB
AGENTS.md
Project Overview
- Primary Language: C# (.NET 8 Console Application)
- Key Libraries: RestSharp, Newtonsoft.Json, System.Data.SQLite, Microsoft.Extensions.Configuration
- Purpose: Tumblr API data harvester for collecting notes, posts, likes, and replies, storing results in SQLite.
Architectural Patterns
- CLI entry point in
Program.cswith workflow orchestration DataAccess.cs: Database operations,ApiKeyPool(API key management),APIAccess(Tumblr client)ResponseNotes.cs: Tumblr API response models- Round-robin API key rotation with rate-limit tracking
- Automatic console color assignment per API key for output differentiation
- No-argument mode (
Program.TraverseDirectory) ingests.txtblog export files intoPostsviaDataAccess.AddPost. Recognized field prefixes live inTraverseDirectoryFieldPrefixes;Body:andDownloaded files:collect every following line up to the next recognized prefix (multi-line values).RootURLis populated from aReblog root url:line the same way it's populated from the API-based--likesflow — both paths converge onDataAccess.AddPost'srootURLparameter, whichUpdatePostonly overwrites when the incoming value is non-empty (existingRootURLis preserved otherwise)
Developer Guidelines
Code Formatting
- 4-space indentation, no tabs, match existing C# style
- PascalCase for public members, camelCase for locals
- Minimize code comments unless explicitly requested
- Use only existing project libraries; no new dependencies without confirmation
- Match accessibility modifiers (
publicfor models,internalfor helpers)
Error Handling
- Wrap file/network operations in
try-catch - Log non-critical errors (e.g., config write failures) with
[Warning]prefix - Preserve console color state: use save/restore pattern for temporary color changes
- API rate limits must use
ApiKeyPool.MarkRateLimited()/MarkAvailable()
API Failure Classification
Tumblr sits behind a CDN that returns HTML error pages (403, 5xx) which never reach the API. These say nothing about the item being fetched, so they must not be recorded as per-item failures.
- A response body that will not parse as JSON did not come from the API. Flag it with
Root.transientFailure, never asFAILURE - Transient failures retry in place (
TransientBackoffSeconds) before the item is skipped; a skipped item stays unmarked in the DB so a later launch retries it MaxConsecutiveTransientconsecutive transient failures aborts the pass rather than skipping item-by-item against an edge that is refusing all traffic- Only call
ApiKeyPool.MarkAvailable()on a response that actually reached the API. A transport or CDN failure says nothing about the key's standing and must not clear its flag - Only a real HTTP 429 (or
meta.status == 429) counts as a rate limit. Do not infer one from the presence ofX-RateLimit-*headers, which Tumblr sends on every response - Rate limiters must pace with
await AcquireAsync().AttemptAcquire()does not wait, so a saturated window aborts the run instead of throttling it - Long-running commands return exit 3 when a pass ends incomplete (rate-limit pause, breaker trip, or skipped items), so a caller can distinguish that from a clean run
Notes Stores Integer IDs, Not Names
As of 2026-08-07 Notes.RootBlogName, NoteBlogName and Type are gone, replaced by
RootBlogId, NoteBlogId and TypeId resolving through the BlogNames and NoteTypes
lookup tables. There is no compatibility view — naming an old column is a hard SQLite
error, so unlike IsActive this is a hard cut with no runtime probe. Full detail in
URLNotesGrabberCORE/TL.db.md.
- Joining
NotestoBlogsgoes throughBlogs.BlogId, notBlogNames:FROM Blogs B INNER JOIN Notes N ON N.NoteBlogId = B.BlogId. Routing it throughBlogNamesadds a hop and ends in the text comparison the migration removed - Joining
NotestoPostsis the opposite —Postshas onlyBlogName, so it must go throughBlogNames(GetRepliesWithFilledText). This is the only such join - Resolve a name by filtering the lookup, never by scanning
Notes:WHERE NoteBlogId = (SELECT BlogId FROM BlogNames WHERE BlogName = @name). The subquery is a unique-index probe on 20k rows and does not show against the 1.18M-row table AddNoteregisters both blog names and the note type withINSERT OR IGNOREbefore inserting, all in one transaction.NoteTypesis a table rather than aCHECKconstraint precisely so an unseen type is anINSERT; without that registration it would resolve toNULLand fail theNOT NULLonTypeId, losing the noteBlogs.BlogIdis NULL on 168,202 of 188,620 rows — every blog that has never appeared in a note. An inner join on it silently drops them. Correct for engagement queries, wrong for anything listing the registry- IDs are stable and must never be renumbered. They are stored in 1.18M
Notesrows. A blog renamed upstream gets a newBlogNamesrow, not an edited one - Prefer
TypeId = (SELECT TypeId FROM NoteTypes WHERE Type = 'reply')over a hardcoded ID. A negatedTypeId NOT IN (SELECT …)is only correct becauseTypeIdisNOT NULL - Duplicate-key detection uses
IsNotesDuplicateKey, which matches the constraint and the table rather than an exact column list. The old literal string comparison broke silently on this rename — do not reintroduce one
IsActive Is Not Ours To Write
Blogs.IsActive, Posts.IsActive and Notes.IsActive are removal flags set by other tools
(Rolodex). 0 means removed; anything else, including NULL, means live. Full detail in
URLNotesGrabberCORE/TL.db.md.
- Never write any
IsActivecolumn. Not in anINSERTcolumn list, not in anUPDATE, and never viaINSERT OR REPLACEon these tables — that resets the column default and un-removes the row. Re-crawling a removed row must refresh its content and leave the flag where it was - Filter at selection, not at write. Every query that selects posts, notes or blogs excludes removed rows. Update statements stay keyed on a row the caller already selected; filtering them would spend API quota and then fail to persist the result
Posts.IsActiveandNotes.IsActiveare optional — they are absent from databases that predate them, and naming a missing column is a hard SQLite error. Compose the filter withAndIsActive/WhereIsActiveinDataAccess.cs, which returnCOALESCE(IsActive, 1) = 1only whenHasIsActiveColumnfinds the column.Blogs.IsActiveis not optional and is filtered directly- Do not add these columns from this app, and do not add them to the missing-column list in
verify-db-schema.sql
DateModified Tracks Real Changes Only
Blogs.DateModified, Posts.DateModified and Notes.DateModified must move only when a
column beside DateModified itself actually changed. Re-crawling or re-ingesting identical
content has to leave the row — and its timestamp — untouched, or downstream consumers cannot
tell a refreshed row from a rewritten one.
- Enforce it in the
WHEREclause, not in C#. EveryUPDATEthat setsDateModifiedends with anAND (<col> <> @param OR ...)term covering every column in itsSETlist, so SQLite matches zero rows on a no-op and never writes - Compare NULL-safely:
IFNULL(col, '') <> IFNULL(@param, '')for text,IFNULL(col, 0) <> @paramfor integer flags. A barecol <> @paramis NULL on a NULL column and silently skips the row that most needs writing - Where NULL is not equivalent to the default, spell it out. The
HasBeenOutput = 0stamps use(HasBeenOutput IS NULL OR HasBeenOutput <> 0)because the selection queries testHasBeenOutput = 0, which a NULL would never match - Dynamic
SETlists (UpdatePostContentFields) build the guard alongside the assignments so the two lists cannot drift apart - These statements now return 0 rows for "found but unchanged" as well as "not found".
Callers that read
ExecuteNonQuery()must not treat 0 as "row missing"
Posts.NotesGatheredDateTime is crawl bookkeeping, not content. It moves on every
-collect pass and says nothing about the post, so it must never move DateModified on its
own. UpdatePostMarkNotesCollected still writes it every pass but wraps the timestamp in
DateModified = CASE WHEN IFNULL(HasNotesGathered, 0) <> 1 THEN @dateModified ELSE DateModified END — SQLite evaluates SET expressions against the pre-UPDATE row, so only
the flag flipping counts as a modification. Use this shape for any column that has to be
refreshed unconditionally without being a change. Blogs.LikesLastRefreshed is the
deliberate exception: a refresh pass is treated as a real event on the blog row.
Blogs.DateAdded is write-once. AddBlog's INSERT is the only place that sets it. A
new post arriving for a known blog reopens HasBeenOutput but must leave DateAdded alone —
a new post is not a new blog, and rewriting the column both destroys the registration date
and makes every insert look like a change.
"." in a Posts content field means "not supplied", not "empty". ReblogRecord
(TraverseDirectory's parser for the local .txt export tree) and the --likes API path
both default every content field to the literal string "." when their source has no value
for it, then pass that straight to UpdatePost. A blog with two export folders in different
field formats (a duplicate _2 folder, or a Tumblr export whose field set changed over time)
sends one record with a real Title/Tags/Slug and another with those fields "."
because that format never had a line for them — and without a guard, re-importing both on
every run flips the row back and forth forever, bumping DateModified on every pass even
though the true content never changes.
- Every content column in
UpdatePost'sSETlist is guarded the same wayRootBlogName/RootURLalready were:col = CASE WHEN @col = '.' THEN col ELSE @col END. A"."parameter leaves the existing value alone instead of overwriting it - The change-detection
WHEREclause carries the same exception —(@col <> '.' AND IFNULL(col, '') <> @col) OR ...— so a"."-only difference does not make the statement fire at all, andDateModifiedstays put - Deliberately narrow: only the literal
"."is the sentinel. An explicit empty string from a real record still overwrites, same as before this fix.postID,BlogName,hasImage,ByLikesare not part of this convention and are unaffected - If a new content field is added to
Posts/UpdatePost, decide explicitly whether its source can legitimately supply"."as "field absent" before deciding whether it needs the sameCASEtreatment — don't assume every column needs it
--ingest (UpsertPostFromTextFile) uses NULL, not ".", for the same "field absent"
convention, and reconciling exactly this kind of duplicate IS the feature's job.
IngestMode strips a trailing _N from the folder name before it ever reaches
UpsertPostFromTextFile, so a duplicate export folder collapses onto the same BlogName on
purpose — the whole point is to merge multiple differently-formatted files for the same post
into one row. IngestMode.G(key) returns null (not ".") when a field's line is absent
from a given file, LegacyPostsDbImporter passes null straight from a NULL source column,
and files are walked in raw filesystem enumeration order — never sorted — so which file's call
lands last for a given (BlogName, PostID) is arbitrary.
- Before the fix, the
UPDATEbranch set every column unconditionally, so whichever file processed last for aPostIDwould null out every field its own record didn't carry — silently erasing realTitle/Slug/Tags/… another file had, the opposite of what--ingestexists to do. This is worse than the"."case above: that one only caused churn (the two writes canceled out); this one loses data, and which posts lose which fields depends on filesystem enumeration order - Same shape of fix,
NULLinstead of"."as the sentinel:col = CASE WHEN @col IS NULL THEN col ELSE @col ENDin theSETlist,(@col IS NOT NULL AND IFNULL(col, '') <> @col) OR ...in the change-detection - Same narrow rule: only
NULL(the field's line was never present in this file) is the sentinel.G()already distinguishes this from "present but blank" — a dictionary miss isnull, an empty value after the prefix is""— so an explicitly blank field still overwrites HasImageis not guarded and remains a known gap:IngestModealways computes a concretebool(defaultingfalsewhen a file has noHas Image:line), so there is no way for this function to tell "this format says no image" from "this format doesn't report it at all" without changing the parameter tobool?and threading that throughIngestMode/LegacyPostsDbImporter. Fix this the same way if--ingestis observed downgrading a post'sHasImagefrom1to0
Testing
- No existing test suite; use xUnit if adding tests
- Test critical logic:
ApiKeyPoolinit, color parsing, config persistence - Avoid testing one-off CLI workflows
Git Commit Messages
- Imperative mood ("Add feature" not "Added feature")
- Prefix with type:
feat:,fix:,chore:,docs: - Keep messages under 72 characters
- Never commit sensitive data (API keys/tokens)
API Key Color Rules
- Unconfigured keys auto-assign colors from a preset palette
- Auto-assigned colors persist to
appsettings.json - All output for an active key uses its assigned color
- Temporary color changes (e.g., errors) must restore the key's color afterward