mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package persistence
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/deluan/gosonic/domain"
|
|
)
|
|
|
|
type albumRepository struct {
|
|
ledisRepository
|
|
}
|
|
|
|
func NewAlbumRepository() domain.AlbumRepository {
|
|
r := &albumRepository{}
|
|
r.init("album", &domain.Album{})
|
|
return r
|
|
}
|
|
|
|
func (r *albumRepository) Put(m *domain.Album) error {
|
|
if m.Id == "" {
|
|
return errors.New("Album Id is not set")
|
|
}
|
|
return r.saveOrUpdate(m.Id, m)
|
|
}
|
|
|
|
func (r *albumRepository) Get(id string) (*domain.Album, error) {
|
|
var rec interface{}
|
|
rec, err := r.readEntity(id)
|
|
return rec.(*domain.Album), err
|
|
}
|
|
|
|
func (r *albumRepository) FindByArtist(artistId string) (domain.Albums, error) {
|
|
var as = make(domain.Albums, 0)
|
|
err := r.loadChildren("artist", artistId, &as, domain.QueryOptions{SortBy: "Year"})
|
|
return as, err
|
|
}
|
|
|
|
func (r *albumRepository) GetAll(options domain.QueryOptions) (domain.Albums, error) {
|
|
var as = make(domain.Albums, 0)
|
|
err := r.loadAll(&as, options)
|
|
return as, err
|
|
}
|
|
|
|
func (r *albumRepository) PurgeInactive(active *domain.Albums) error {
|
|
currentIds, err := r.GetAllIds()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, a := range *active {
|
|
currentIds[a.Id] = false
|
|
}
|
|
inactiveIds := make(map[string]bool)
|
|
for id, inactive := range currentIds {
|
|
if inactive {
|
|
inactiveIds[id] = true
|
|
}
|
|
}
|
|
return r.DeleteAll(inactiveIds)
|
|
}
|
|
|
|
var _ domain.AlbumRepository = (*albumRepository)(nil)
|