mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
package persistence
|
|
|
|
import (
|
|
"errors"
|
|
"sort"
|
|
|
|
"github.com/deluan/gosonic/domain"
|
|
)
|
|
|
|
type mediaFileRepository struct {
|
|
ledisRepository
|
|
}
|
|
|
|
func NewMediaFileRepository() domain.MediaFileRepository {
|
|
r := &mediaFileRepository{}
|
|
r.init("mediafile", &domain.MediaFile{})
|
|
return r
|
|
}
|
|
|
|
func (r *mediaFileRepository) Put(m *domain.MediaFile) error {
|
|
if m.Id == "" {
|
|
return errors.New("MediaFile Id is not set")
|
|
}
|
|
return r.saveOrUpdate(m.Id, m)
|
|
}
|
|
|
|
func (r *mediaFileRepository) Get(id string) (*domain.MediaFile, error) {
|
|
m, err := r.readEntity(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mf := m.(*domain.MediaFile)
|
|
if mf.Id != id {
|
|
return nil, nil
|
|
}
|
|
return mf, nil
|
|
}
|
|
|
|
func (r *mediaFileRepository) FindByAlbum(albumId string) (domain.MediaFiles, error) {
|
|
var mfs = make(domain.MediaFiles, 0)
|
|
err := r.loadChildren("album", albumId, &mfs)
|
|
sort.Sort(mfs)
|
|
return mfs, err
|
|
}
|
|
|
|
func (r *mediaFileRepository) PurgeInactive(active *domain.MediaFiles) 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.MediaFileRepository = (*mediaFileRepository)(nil)
|