feat: multi-source artist images with thumbnails + grid integration

Complete rewrite of the artist image pipeline:

STORAGE:
- Migration 16: artist_images table tracking source, URL, path,
  primary flag, dimensions per image (up to 10 per artist)
- Directory structure: artist-images/{mbid[:2]}/{mbid}/ with
  primary.jpg + primary_sm.jpg/_md.jpg/_lg.jpg thumbnails
- Miss marker (.miss file) prevents re-fetching artists with no image

SOURCES (priority order):
1. MusicBrainz direct image relations (Wikimedia Commons)
2. Wikidata P18 property (Wikimedia Commons)
3. Wikipedia lead image (NEW — via Wikidata sitelinks → Wikipedia API)

Each source is checked, deduplicated, and the first available
image becomes the primary with sm/md/lg thumbnail generation
(100px/200px/400px, matching cover art tier sizes).

ASSET SERVING:
- /artist-images/ path registered with Wails asset handler
- Serves files via http.FileServer from the artist-images directory
- Same pattern as /covers/ for cover art

ARTIST MODEL:
- Artist struct gains ImageSmall/ImageMedium/ImageLarge fields
- resolveArtistImages does bulk MBID lookup → disk stat for each
- Populated in GetAllArtists and GetAllArtistsByLibrary

GRID VIEW:
- artists-view uses model URLs directly (no more base64 data URLs)
- Size selection based on imageSize * devicePixelRatio (like cover-grid)
- Removed batch GetArtistImages call and in-memory cache — no longer needed
This commit is contained in:
2026-03-29 08:33:32 -04:00
parent 7ec9785463
commit 19a803d1fc
10 changed files with 668 additions and 317 deletions
+62
View File
@@ -400,6 +400,15 @@ func runMigrations(
}
}
// Migration 16: artist_images table for multi-source artist photos.
if version < 16 { //nolint:mnd
if err := migration16ArtistImages(
ctx, db, logger,
); err != nil {
return err
}
}
return nil
}
@@ -1771,6 +1780,59 @@ func migration15PersonalizationColumns(
return nil
}
// migration16ArtistImages creates the artist_images table for
// storing multiple artist photos from multiple sources, with
// thumbnail generation for the primary image.
func migration16ArtistImages(
ctx context.Context,
db *sql.DB,
logger *slog.Logger,
) error {
logger.Info("applying migration 16: artist_images table")
if _, err := db.ExecContext(ctx, `
CREATE TABLE IF NOT EXISTS artist_images (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist_mbid TEXT NOT NULL,
source TEXT NOT NULL,
source_url TEXT NOT NULL,
file_path TEXT NOT NULL,
is_primary INTEGER NOT NULL DEFAULT 0,
sort_order INTEGER NOT NULL DEFAULT 0,
width INTEGER,
height INTEGER,
file_size INTEGER,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
)
`); err != nil {
return fmt.Errorf("migration 16: create artist_images: %w", err)
}
if _, err := db.ExecContext(ctx, `
CREATE INDEX IF NOT EXISTS idx_artist_images_mbid
ON artist_images(artist_mbid)
`); err != nil {
return fmt.Errorf("migration 16: create mbid index: %w", err)
}
if _, err := db.ExecContext(ctx, `
CREATE UNIQUE INDEX IF NOT EXISTS idx_artist_images_source
ON artist_images(artist_mbid, source, source_url)
`); err != nil {
return fmt.Errorf("migration 16: create source index: %w", err)
}
if _, err := db.ExecContext(
ctx, "PRAGMA user_version = 16",
); err != nil {
return fmt.Errorf("could not set user_version to 16: %w", err)
}
logger.Info("migration 16 complete")
return nil
}
// readLibraryDirFromTOML reads the TOML config file and returns
// the Library.DirectoryPath value, or "" if not configured.
func readLibraryDirFromTOML(logger *slog.Logger) string {