mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
41 lines
953 B
Go
41 lines
953 B
Go
package db_ledis
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/cloudsonic/sonic-server/domain"
|
|
)
|
|
|
|
type artistRepository struct {
|
|
ledisRepository
|
|
}
|
|
|
|
func NewArtistRepository() domain.ArtistRepository {
|
|
r := &artistRepository{}
|
|
r.init("artist", &domain.Artist{})
|
|
return r
|
|
}
|
|
|
|
func (r *artistRepository) Put(m *domain.Artist) error {
|
|
if m.ID == "" {
|
|
return errors.New("artist ID is not set")
|
|
}
|
|
return r.saveOrUpdate(m.ID, m)
|
|
}
|
|
|
|
func (r *artistRepository) Get(id string) (*domain.Artist, error) {
|
|
var rec interface{}
|
|
rec, err := r.readEntity(id)
|
|
return rec.(*domain.Artist), err
|
|
}
|
|
|
|
func (r *artistRepository) PurgeInactive(active domain.Artists) ([]string, error) {
|
|
return r.purgeInactive(active, func(e interface{}) string {
|
|
return e.(domain.Artist).ID
|
|
})
|
|
}
|
|
func (r *artistRepository) Search(q string, offset int, size int) (domain.Artists, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
var _ domain.ArtistRepository = (*artistRepository)(nil)
|