feat: data lifecycle rewrite, download clients, wanted list, and central catalog index
Build & publish Arch package / arch-package (push) Successful in 2m12s
Search index maintenance / maintain-index (push) Successful in 2h22m28s

Ships the fresh-start schema cleanup: rebuilt explore catalog index
pipeline (dump import, artifact fetch/build, incremental listen-count
refresh), a new download subsystem (Lidarr/Prowlarr/qBittorrent/SABnzbd/
slskd/yt-dlp providers, staging, reconciliation, wanted list), and the
supporting schema/query/store changes across backend and frontend.

Also includes two smaller follow-ups: bump the central index's
rebuild-after cadence from 90 to 180 days, and remove the Explore
"library only" online/offline toggle entirely (frontend-only, no
backend counterpart) rather than carry unused UI/state.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Y2Agd9af5hE7qzti2ackiS
This commit is contained in:
2026-08-06 17:12:01 -04:00
co-authored by Claude Sonnet 5
parent d0d86f85d5
commit e190fd75b9
165 changed files with 31088 additions and 5192 deletions
+5 -33
View File
@@ -1062,45 +1062,17 @@ func TestClearSearchIndexPreservesSchema(t *testing.T) {
}
// ---------------------------------------------------------------------------
// Migration test
// Schema constraint tests
// ---------------------------------------------------------------------------
func TestMigrationsApplied(t *testing.T) {
func TestSearchIndexSchema(t *testing.T) {
t.Parallel()
db := NewTestDB(t)
// Verify user_version >= 3 (all 3 migrations applied).
// Use QueryContext + immediate Scan + Close to release the
// single connection before subsequent ExecContext calls.
var version int
rows, err := db.QueryContext("PRAGMA user_version")
if err != nil {
t.Fatalf("PRAGMA user_version: %v", err)
}
if !rows.Next() {
_ = rows.Close()
t.Fatal("PRAGMA user_version: no row returned")
}
if err := rows.Scan(&version); err != nil {
_ = rows.Close()
t.Fatalf("scan user_version: %v", err)
}
_ = rows.Close()
if version < 3 {
t.Errorf("user_version = %d, want >= 3", version)
}
// Verify the UNIQUE index from migration 3 exists by attempting
// a duplicate insert. First, create the prerequisite rows.
_, err = db.ExecContext(
// Verify the UNIQUE index on artist_credit_artist exists by
// attempting a duplicate insert. First, create the prerequisites.
_, err := db.ExecContext(
"INSERT INTO artists (id, name) VALUES (1, 'Test')",
)
if err != nil {