Default sorts should be in the domain
This commit is contained in:
@@ -3,7 +3,6 @@ package persistence
|
||||
import (
|
||||
"errors"
|
||||
"github.com/deluan/gosonic/domain"
|
||||
"github.com/deluan/gosonic/utils"
|
||||
"sort"
|
||||
)
|
||||
|
||||
@@ -21,7 +20,7 @@ func (r *artistIndexRepository) Put(m *domain.ArtistIndex) error {
|
||||
if m.Id == "" {
|
||||
return errors.New("Id is not set")
|
||||
}
|
||||
sort.Sort(byArtistName(m.Artists))
|
||||
sort.Sort(m.Artists)
|
||||
return r.saveOrUpdate(m.Id, m)
|
||||
}
|
||||
|
||||
@@ -37,16 +36,4 @@ func (r *artistIndexRepository) GetAll() (domain.ArtistIndexes, error) {
|
||||
return indices, err
|
||||
}
|
||||
|
||||
type byArtistName []domain.ArtistInfo
|
||||
|
||||
func (a byArtistName) Len() int {
|
||||
return len(a)
|
||||
}
|
||||
func (a byArtistName) Swap(i, j int) {
|
||||
a[i], a[j] = a[j], a[i]
|
||||
}
|
||||
func (a byArtistName) Less(i, j int) bool {
|
||||
return utils.NoArticle(a[i].Artist) < utils.NoArticle(a[j].Artist)
|
||||
}
|
||||
|
||||
var _ domain.ArtistIndexRepository = (*artistIndexRepository)(nil)
|
||||
@@ -27,20 +27,8 @@ func (r *mediaFileRepository) Get(id string) (*domain.MediaFile, error) {
|
||||
func (r *mediaFileRepository) FindByAlbum(albumId string) (domain.MediaFiles, error) {
|
||||
var mfs = make(domain.MediaFiles, 0)
|
||||
err := r.loadChildren("album", albumId, &mfs, "", false)
|
||||
sort.Sort(byTrackNumber(mfs))
|
||||
sort.Sort(mfs)
|
||||
return mfs, err
|
||||
}
|
||||
|
||||
type byTrackNumber domain.MediaFiles
|
||||
|
||||
func (a byTrackNumber) Len() int {
|
||||
return len(a)
|
||||
}
|
||||
func (a byTrackNumber) Swap(i, j int) {
|
||||
a[i], a[j] = a[j], a[i]
|
||||
}
|
||||
func (a byTrackNumber) Less(i, j int) bool {
|
||||
return (a[i].DiscNumber * 1000 + a[i].TrackNumber) < (a[j].DiscNumber * 1000 + a[j].TrackNumber)
|
||||
}
|
||||
|
||||
var _ domain.MediaFileRepository = (*mediaFileRepository)(nil)
|
||||
Reference in New Issue
Block a user