mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
43 lines
867 B
Go
43 lines
867 B
Go
package repositories
|
|
|
|
import (
|
|
"github.com/deluan/gosonic/models"
|
|
"errors"
|
|
)
|
|
|
|
type ArtistIndex interface {
|
|
Put(m *models.ArtistIndex) error
|
|
Get(id string) (*models.ArtistIndex, error)
|
|
GetAll() ([]models.ArtistIndex, error)
|
|
}
|
|
|
|
type artistIndex struct {
|
|
BaseRepository
|
|
}
|
|
|
|
func NewArtistIndexRepository() ArtistIndex {
|
|
r := &artistIndex{}
|
|
r.init("index", &models.ArtistIndex{})
|
|
return r
|
|
}
|
|
|
|
func (r *artistIndex) Put(m *models.ArtistIndex) error {
|
|
if m.Id == "" {
|
|
return errors.New("Id is not set")
|
|
}
|
|
return r.saveOrUpdate(m.Id, m)
|
|
}
|
|
|
|
func (r *artistIndex) Get(id string) (*models.ArtistIndex, error) {
|
|
var rec interface{}
|
|
rec, err := r.readEntity(id)
|
|
return rec.(*models.ArtistIndex), err
|
|
}
|
|
|
|
func (r *artistIndex) GetAll() ([]models.ArtistIndex, error) {
|
|
var indices = make([]models.ArtistIndex, 0)
|
|
err := r.loadAll(&indices)
|
|
return indices, err
|
|
}
|
|
|
|
|