mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Generate Artist Index using the OrderArtistName
This commit is contained in:
parent
371e8ab6ca
commit
e6f798811d
1 changed files with 12 additions and 13 deletions
|
@ -44,17 +44,6 @@ func (r *artistRepository) Exists(id string) (bool, error) {
|
||||||
return r.exists(Select().Where(Eq{"id": id}))
|
return r.exists(Select().Where(Eq{"id": id}))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *artistRepository) getIndexKey(a *model.Artist) string {
|
|
||||||
name := strings.ToLower(utils.NoArticle(a.Name))
|
|
||||||
for k, v := range r.indexGroups {
|
|
||||||
key := strings.ToLower(k)
|
|
||||||
if strings.HasPrefix(name, key) {
|
|
||||||
return v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return "#"
|
|
||||||
}
|
|
||||||
|
|
||||||
func (r *artistRepository) Put(a *model.Artist) error {
|
func (r *artistRepository) Put(a *model.Artist) error {
|
||||||
a.FullText = getFullText(a.Name, a.SortArtistName)
|
a.FullText = getFullText(a.Name, a.SortArtistName)
|
||||||
_, err := r.put(a.ID, a)
|
_, err := r.put(a.ID, a)
|
||||||
|
@ -75,11 +64,21 @@ func (r *artistRepository) GetAll(options ...model.QueryOptions) (model.Artists,
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *artistRepository) getIndexKey(a *model.Artist) string {
|
||||||
|
name := strings.ToLower(utils.NoArticle(a.Name))
|
||||||
|
for k, v := range r.indexGroups {
|
||||||
|
key := strings.ToLower(k)
|
||||||
|
if strings.HasPrefix(name, key) {
|
||||||
|
return v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "#"
|
||||||
|
}
|
||||||
|
|
||||||
// TODO Cache the index (recalculate when there are changes to the DB)
|
// TODO Cache the index (recalculate when there are changes to the DB)
|
||||||
func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) {
|
func (r *artistRepository) GetIndex() (model.ArtistIndexes, error) {
|
||||||
sq := r.selectArtist().OrderBy("name")
|
sq := r.selectArtist().OrderBy("order_artist_name")
|
||||||
var all model.Artists
|
var all model.Artists
|
||||||
// TODO Paginate
|
|
||||||
err := r.queryAll(sq, &all)
|
err := r.queryAll(sq, &all)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue