mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Do not empty old artist metadata (#2423)
This commit is contained in:
parent
7a858a2db3
commit
79870b1090
4 changed files with 6 additions and 5 deletions
|
@ -49,7 +49,7 @@ type ArtistIndexes []ArtistIndex
|
||||||
type ArtistRepository interface {
|
type ArtistRepository interface {
|
||||||
CountAll(options ...QueryOptions) (int64, error)
|
CountAll(options ...QueryOptions) (int64, error)
|
||||||
Exists(id string) (bool, error)
|
Exists(id string) (bool, error)
|
||||||
Put(m *Artist) error
|
Put(m *Artist, colsToUpdate ...string) error
|
||||||
Get(id string) (*Artist, error)
|
Get(id string) (*Artist, error)
|
||||||
GetAll(options ...QueryOptions) (Artists, error)
|
GetAll(options ...QueryOptions) (Artists, error)
|
||||||
Search(q string, offset int, size int) (Artists, error)
|
Search(q string, offset int, size int) (Artists, error)
|
||||||
|
|
|
@ -60,10 +60,10 @@ func (r *artistRepository) Exists(id string) (bool, error) {
|
||||||
return r.exists(Select().Where(Eq{"artist.id": id}))
|
return r.exists(Select().Where(Eq{"artist.id": id}))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) Put(a *model.Artist) error {
|
func (r *artistRepository) Put(a *model.Artist, colsToUpdate ...string) error {
|
||||||
a.FullText = getFullText(a.Name, a.SortArtistName)
|
a.FullText = getFullText(a.Name, a.SortArtistName)
|
||||||
dba := r.fromModel(a)
|
dba := r.fromModel(a)
|
||||||
_, err := r.put(dba.ID, dba)
|
_, err := r.put(dba.ID, dba, colsToUpdate...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,7 +142,8 @@ func (r *refresher) refreshArtists(ctx context.Context, ids ...string) error {
|
||||||
// Force a external metadata lookup on next access
|
// Force a external metadata lookup on next access
|
||||||
a.ExternalInfoUpdatedAt = time.Time{}
|
a.ExternalInfoUpdatedAt = time.Time{}
|
||||||
|
|
||||||
err := repo.Put(&a)
|
// Do not remove old metadata
|
||||||
|
err := repo.Put(&a, "album_count", "genres", "external_info_updated_at", "mbz_artist_id", "name", "order_artist_name", "size", "sort_artist_name", "song_count")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ func (m *MockArtistRepo) Get(id string) (*model.Artist, error) {
|
||||||
return nil, model.ErrNotFound
|
return nil, model.ErrNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MockArtistRepo) Put(ar *model.Artist) error {
|
func (m *MockArtistRepo) Put(ar *model.Artist, columsToUpdate ...string) error {
|
||||||
if m.err {
|
if m.err {
|
||||||
return errors.New("error")
|
return errors.New("error")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue