mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Refactor loadGenres, remove duplication
This commit is contained in:
parent
de90152a71
commit
31fcab07d2
7 changed files with 68 additions and 82 deletions
|
@ -162,7 +162,7 @@ func (r *albumRepository) Get(id string) (*model.Album, error) {
|
|||
return nil, model.ErrNotFound
|
||||
}
|
||||
res := dba.toModels()
|
||||
err := r.loadAlbumGenres(&res)
|
||||
err := loadAllGenres(r, res)
|
||||
return &res[0], err
|
||||
}
|
||||
|
||||
|
@ -171,7 +171,7 @@ func (r *albumRepository) Put(m *model.Album) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return r.updateGenres(m.ID, r.tableName, m.Genres)
|
||||
return r.updateGenres(m.ID, m.Genres)
|
||||
}
|
||||
|
||||
func (r *albumRepository) GetAll(options ...model.QueryOptions) (model.Albums, error) {
|
||||
|
@ -179,7 +179,7 @@ func (r *albumRepository) GetAll(options ...model.QueryOptions) (model.Albums, e
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
err = r.loadAlbumGenres(&res)
|
||||
err = loadAllGenres(r, res)
|
||||
return res, err
|
||||
}
|
||||
|
||||
|
@ -211,7 +211,7 @@ func (r *albumRepository) Search(q string, offset int, size int) (model.Albums,
|
|||
return nil, err
|
||||
}
|
||||
res := dba.toModels()
|
||||
err = r.loadAlbumGenres(&res)
|
||||
err = loadAllGenres(r, res)
|
||||
return res, err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue