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
230 lines
5.6 KiB
Go
230 lines
5.6 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
// source: artists.sql
|
|
|
|
package sqlcgen
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
const createArtist = `-- name: CreateArtist :one
|
|
INSERT INTO artists (name) VALUES (?)
|
|
RETURNING id, name, mbid
|
|
`
|
|
|
|
func (q *Queries) CreateArtist(ctx context.Context, name string) (Artist, error) {
|
|
row := q.db.QueryRowContext(ctx, createArtist, name)
|
|
var i Artist
|
|
err := row.Scan(&i.ID, &i.Name, &i.Mbid)
|
|
return i, err
|
|
}
|
|
|
|
const deleteAllArtists = `-- name: DeleteAllArtists :exec
|
|
DELETE FROM artists
|
|
`
|
|
|
|
func (q *Queries) DeleteAllArtists(ctx context.Context) error {
|
|
_, err := q.db.ExecContext(ctx, deleteAllArtists)
|
|
return err
|
|
}
|
|
|
|
const deleteArtist = `-- name: DeleteArtist :exec
|
|
DELETE FROM artists
|
|
WHERE id = ?
|
|
`
|
|
|
|
func (q *Queries) DeleteArtist(ctx context.Context, id int64) error {
|
|
_, err := q.db.ExecContext(ctx, deleteArtist, id)
|
|
return err
|
|
}
|
|
|
|
const getAlbumArtists = `-- name: GetAlbumArtists :many
|
|
SELECT DISTINCT a.id, a.name, a.mbid
|
|
FROM artists a
|
|
JOIN artist_credit_artist aca ON aca.artist_id = a.id
|
|
JOIN artist_credit ac ON ac.id = aca.credit_id
|
|
JOIN release_groups rg ON rg.album_artist_credit_id = ac.id
|
|
ORDER BY a.name
|
|
`
|
|
|
|
func (q *Queries) GetAlbumArtists(ctx context.Context) ([]Artist, error) {
|
|
rows, err := q.db.QueryContext(ctx, getAlbumArtists)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []Artist
|
|
for rows.Next() {
|
|
var i Artist
|
|
if err := rows.Scan(&i.ID, &i.Name, &i.Mbid); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const getAlbumArtistsByLibrary = `-- name: GetAlbumArtistsByLibrary :many
|
|
SELECT DISTINCT a.id, a.name, a.mbid
|
|
FROM artists a
|
|
JOIN artist_credit_artist aca ON aca.artist_id = a.id
|
|
JOIN artist_credit ac ON ac.id = aca.credit_id
|
|
JOIN release_groups rg ON rg.album_artist_credit_id = ac.id
|
|
WHERE a.id IN (
|
|
SELECT DISTINCT aca2.artist_id
|
|
FROM artist_credit_artist aca2
|
|
JOIN artist_credit ac2 ON ac2.id = aca2.credit_id
|
|
JOIN release_groups rg2 ON rg2.album_artist_credit_id = ac2.id
|
|
JOIN release_group_recordings rgr2 ON rgr2.release_group_id = rg2.id
|
|
JOIN recordings r2 ON r2.id = rgr2.recording_id
|
|
JOIN audio_files af2 ON af2.recording_id = r2.id
|
|
WHERE af2.library_id = ?
|
|
)
|
|
ORDER BY a.name
|
|
`
|
|
|
|
func (q *Queries) GetAlbumArtistsByLibrary(ctx context.Context, libraryID int64) ([]Artist, error) {
|
|
rows, err := q.db.QueryContext(ctx, getAlbumArtistsByLibrary, libraryID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []Artist
|
|
for rows.Next() {
|
|
var i Artist
|
|
if err := rows.Scan(&i.ID, &i.Name, &i.Mbid); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const getAllArtists = `-- name: GetAllArtists :many
|
|
SELECT id, name, mbid FROM artists
|
|
ORDER BY name
|
|
`
|
|
|
|
func (q *Queries) GetAllArtists(ctx context.Context) ([]Artist, error) {
|
|
rows, err := q.db.QueryContext(ctx, getAllArtists)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []Artist
|
|
for rows.Next() {
|
|
var i Artist
|
|
if err := rows.Scan(&i.ID, &i.Name, &i.Mbid); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const getArtist = `-- name: GetArtist :one
|
|
SELECT id, name, mbid FROM artists
|
|
WHERE id = ? LIMIT 1
|
|
`
|
|
|
|
func (q *Queries) GetArtist(ctx context.Context, id int64) (Artist, error) {
|
|
row := q.db.QueryRowContext(ctx, getArtist, id)
|
|
var i Artist
|
|
err := row.Scan(&i.ID, &i.Name, &i.Mbid)
|
|
return i, err
|
|
}
|
|
|
|
const getArtistByName = `-- name: GetArtistByName :one
|
|
SELECT id, name, mbid FROM artists
|
|
WHERE name = ? LIMIT 1
|
|
`
|
|
|
|
func (q *Queries) GetArtistByName(ctx context.Context, name string) (Artist, error) {
|
|
row := q.db.QueryRowContext(ctx, getArtistByName, name)
|
|
var i Artist
|
|
err := row.Scan(&i.ID, &i.Name, &i.Mbid)
|
|
return i, err
|
|
}
|
|
|
|
const getOrphanedArtistIDs = `-- name: GetOrphanedArtistIDs :many
|
|
SELECT a.id FROM artists a
|
|
WHERE NOT EXISTS (
|
|
SELECT 1 FROM artist_credit_artist aca WHERE aca.artist_id = a.id
|
|
)
|
|
`
|
|
|
|
// Artists no longer credited on any recording or release group - left
|
|
// behind when a scan's orphan cleanup removes the audio_files that used
|
|
// to justify them, since deleting an audio_files row doesn't cascade.
|
|
func (q *Queries) GetOrphanedArtistIDs(ctx context.Context) ([]int64, error) {
|
|
rows, err := q.db.QueryContext(ctx, getOrphanedArtistIDs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []int64
|
|
for rows.Next() {
|
|
var id int64
|
|
if err := rows.Scan(&id); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, id)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const updateArtist = `-- name: UpdateArtist :exec
|
|
UPDATE artists
|
|
SET name = ?
|
|
WHERE id = ?
|
|
`
|
|
|
|
type UpdateArtistParams struct {
|
|
Name string
|
|
ID int64
|
|
}
|
|
|
|
func (q *Queries) UpdateArtist(ctx context.Context, arg UpdateArtistParams) error {
|
|
_, err := q.db.ExecContext(ctx, updateArtist, arg.Name, arg.ID)
|
|
return err
|
|
}
|
|
|
|
const upsertArtist = `-- name: UpsertArtist :one
|
|
INSERT INTO artists (name) VALUES (?)
|
|
ON CONFLICT(name) DO UPDATE SET name = excluded.name
|
|
RETURNING id, name, mbid
|
|
`
|
|
|
|
func (q *Queries) UpsertArtist(ctx context.Context, name string) (Artist, error) {
|
|
row := q.db.QueryRowContext(ctx, upsertArtist, name)
|
|
var i Artist
|
|
err := row.Scan(&i.ID, &i.Name, &i.Mbid)
|
|
return i, err
|
|
}
|