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
86 lines
2.4 KiB
Go
86 lines
2.4 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
// source: artist_credit_artists.sql
|
|
|
|
package sqlcgen
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
const createArtistCreditArtist = `-- name: CreateArtistCreditArtist :one
|
|
INSERT INTO artist_credit_artist (artist_id, credit_id) VALUES (?, ?)
|
|
RETURNING id, artist_id, credit_id
|
|
`
|
|
|
|
type CreateArtistCreditArtistParams struct {
|
|
ArtistID int64
|
|
CreditID int64
|
|
}
|
|
|
|
func (q *Queries) CreateArtistCreditArtist(ctx context.Context, arg CreateArtistCreditArtistParams) (ArtistCreditArtist, error) {
|
|
row := q.db.QueryRowContext(ctx, createArtistCreditArtist, arg.ArtistID, arg.CreditID)
|
|
var i ArtistCreditArtist
|
|
err := row.Scan(&i.ID, &i.ArtistID, &i.CreditID)
|
|
return i, err
|
|
}
|
|
|
|
const deleteAllArtistCreditArtists = `-- name: DeleteAllArtistCreditArtists :exec
|
|
DELETE FROM artist_credit_artist
|
|
`
|
|
|
|
func (q *Queries) DeleteAllArtistCreditArtists(ctx context.Context) error {
|
|
_, err := q.db.ExecContext(ctx, deleteAllArtistCreditArtists)
|
|
return err
|
|
}
|
|
|
|
const deleteArtistCreditArtist = `-- name: DeleteArtistCreditArtist :exec
|
|
DELETE FROM artist_credit_artist
|
|
WHERE id =?
|
|
`
|
|
|
|
func (q *Queries) DeleteArtistCreditArtist(ctx context.Context, id int64) error {
|
|
_, err := q.db.ExecContext(ctx, deleteArtistCreditArtist, id)
|
|
return err
|
|
}
|
|
|
|
const deleteArtistCreditArtistByCredit = `-- name: DeleteArtistCreditArtistByCredit :exec
|
|
DELETE FROM artist_credit_artist
|
|
WHERE credit_id = ?
|
|
`
|
|
|
|
func (q *Queries) DeleteArtistCreditArtistByCredit(ctx context.Context, creditID int64) error {
|
|
_, err := q.db.ExecContext(ctx, deleteArtistCreditArtistByCredit, creditID)
|
|
return err
|
|
}
|
|
|
|
const getArtistCreditArtist = `-- name: GetArtistCreditArtist :one
|
|
SELECT id, artist_id, credit_id FROM artist_credit_artist
|
|
WHERE id = ? LIMIT 1
|
|
`
|
|
|
|
func (q *Queries) GetArtistCreditArtist(ctx context.Context, id int64) (ArtistCreditArtist, error) {
|
|
row := q.db.QueryRowContext(ctx, getArtistCreditArtist, id)
|
|
var i ArtistCreditArtist
|
|
err := row.Scan(&i.ID, &i.ArtistID, &i.CreditID)
|
|
return i, err
|
|
}
|
|
|
|
const updateArtistCreditArtist = `-- name: UpdateArtistCreditArtist :exec
|
|
UPDATE artist_credit_artist
|
|
SET artist_id = ?, credit_id = ?
|
|
WHERE id =?
|
|
`
|
|
|
|
type UpdateArtistCreditArtistParams struct {
|
|
ArtistID int64
|
|
CreditID int64
|
|
ID int64
|
|
}
|
|
|
|
func (q *Queries) UpdateArtistCreditArtist(ctx context.Context, arg UpdateArtistCreditArtistParams) error {
|
|
_, err := q.db.ExecContext(ctx, updateArtistCreditArtist, arg.ArtistID, arg.CreditID, arg.ID)
|
|
return err
|
|
}
|