mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package db_ledis
|
|
|
|
import (
|
|
"errors"
|
|
"sort"
|
|
|
|
"github.com/cloudsonic/sonic-server/domain"
|
|
)
|
|
|
|
type artistIndexRepository struct {
|
|
ledisRepository
|
|
}
|
|
|
|
func NewArtistIndexRepository() domain.ArtistIndexRepository {
|
|
r := &artistIndexRepository{}
|
|
r.init("index", &domain.ArtistIndex{})
|
|
return r
|
|
}
|
|
|
|
func (r *artistIndexRepository) Put(m *domain.ArtistIndex) error {
|
|
if m.ID == "" {
|
|
return errors.New("index ID is not set")
|
|
}
|
|
sort.Sort(m.Artists)
|
|
return r.saveOrUpdate(m.ID, m)
|
|
}
|
|
|
|
func (r *artistIndexRepository) Get(id string) (*domain.ArtistIndex, error) {
|
|
var rec interface{}
|
|
rec, err := r.readEntity(id)
|
|
return rec.(*domain.ArtistIndex), err
|
|
}
|
|
|
|
func (r *artistIndexRepository) GetAll() (domain.ArtistIndexes, error) {
|
|
var indices = make(domain.ArtistIndexes, 0)
|
|
err := r.loadAll(&indices, domain.QueryOptions{Alpha: true})
|
|
return indices, err
|
|
}
|
|
|
|
func (r *artistIndexRepository) DeleteAll() error {
|
|
var empty domain.ArtistIndexes
|
|
_, err := r.purgeInactive(empty, func(e interface{}) string {
|
|
return e.(domain.ArtistIndex).ID
|
|
})
|
|
|
|
return err
|
|
}
|
|
|
|
var _ domain.ArtistIndexRepository = (*artistIndexRepository)(nil)
|