feat: autotag mixed-bag splitting, search relevance fixes, and multi-library download imports
Build & publish Arch package / arch-package (push) Successful in 2m2s
Search index maintenance / maintain-index (push) Successful in 7s

Autotag: detect "junk drawer" folders with no artist/album consensus
and split them into synthetic per-cluster groups instead of forcing
one match on an unrelated pile of tracks; repair tagging_items rows
left behind by a prior scan orphan-cleanup gap.

Explore: fix an exact artist-name search being drowned out by its own
catalog entries in intent-prior scoring, and prune stale in_library
bookkeeping left behind when a referenced library row is deleted.

Download: fix a multi-library regression where every import failed
with "no library root configured" — the importer resolved the
library root from a legacy single-library config field that nothing
populates in the current multi-library model. It now resolves the
destination library per-request from the request's own library_id.
Also widen the Soulseek search window (12s -> 20s), measured against
real request history to be missing available peers on live queries.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Y2Agd9af5hE7qzti2ackiS
This commit is contained in:
2026-08-10 11:52:26 -04:00
co-authored by Claude Sonnet 5
parent e190fd75b9
commit cbd82a5a74
70 changed files with 3617 additions and 129 deletions
+61 -3
View File
@@ -2595,15 +2595,40 @@ func (e *Service) computeIntentPrior(
// have for "the user means this artist". Scale by listener
// count so a popular exact match dominates and an obscure
// one doesn't move the needle.
//
// As above, a Title match is evidence for the entity's own
// category; an ArtistName match is evidence for the artist
// category specifically, even when the matching row is a
// release_group/recording — otherwise an artist's own catalog
// entries in the local index would outvote the artist itself.
// Take the strongest boost per target instead of multiplying
// once per matching row.
localOwnCategoryBoost := map[string]float64{}
localArtistNameBoost := 0.0
for _, m := range exactMatches {
if !isExactNameMatch(q, m.Title) && !isExactNameMatch(q, m.ArtistName) {
titleMatch := isExactNameMatch(q, m.Title)
artistMatch := isExactNameMatch(q, m.ArtistName)
if !titleMatch && !artistMatch {
continue
}
// Confidence boost scales with log listener count.
boost := 1.0 + 1.5*normLog(m.ListenerCount) //nolint:mnd
switch m.EntityType {
if titleMatch && boost > localOwnCategoryBoost[m.EntityType] {
localOwnCategoryBoost[m.EntityType] = boost
}
if artistMatch && boost > localArtistNameBoost {
localArtistNameBoost = boost
}
}
for cat, boost := range localOwnCategoryBoost {
switch cat {
case "artist":
weights.artist *= boost
case "release_group":
@@ -2613,12 +2638,31 @@ func (e *Service) computeIntentPrior(
}
}
if localArtistNameBoost > 0 {
weights.artist *= localArtistNameBoost
}
// Signal: exact-match candidates discovered in the MB result
// list (Source 1b/2b/3b in gatherTopCandidates). These cover
// the case where the local index doesn't have the entity but
// MB does — e.g. Blue October's "Calling You" when Blue
// October isn't yet a known artist. Same scaling as
// index-sourced exact matches.
//
// A title match is evidence for that candidate's own category.
// An artist-credit match is evidence for the *artist* category
// specifically, regardless of what kind of entity carries the
// credit — searching an artist's exact name naturally surfaces
// their whole discography in the release/recording pools, and
// crediting each of those to "album"/"recording" would drown
// out the one true artist candidate. Take the strongest boost
// per target rather than multiplying once per matching item, so
// an artist with many releases doesn't compound the signal.
var (
ownCategoryBoost = map[string]float64{}
artistCreditBoost float64
)
for _, c := range exactCandidates {
var listeners int
@@ -2633,7 +2677,17 @@ func (e *Service) computeIntentPrior(
boost := 1.0 + 1.0*normLog(listeners) //nolint:mnd
switch c.category {
if isExactNameMatch(q, c.topResult.Name) && boost > ownCategoryBoost[c.category] {
ownCategoryBoost[c.category] = boost
}
if isExactNameMatch(q, c.topResult.ArtistCredit) && boost > artistCreditBoost {
artistCreditBoost = boost
}
}
for cat, boost := range ownCategoryBoost {
switch cat {
case "artist":
weights.artist *= boost
case "release_group":
@@ -2643,6 +2697,10 @@ func (e *Service) computeIntentPrior(
}
}
if artistCreditBoost > 0 {
weights.artist *= artistCreditBoost
}
// Signal: many recordings in the result list with the same
// title as the query → cover-wave pattern → strong recording.
titleMatches := 0