mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
- Create model.DataStore, with provision for transactions - Change all layers dependencies on repositories to use DataStore - Implemented persistence.SQLStore - Removed iTunes Bridge/Importer support
40 lines
820 B
Go
40 lines
820 B
Go
package engine
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cloudsonic/sonic-server/model"
|
|
)
|
|
|
|
type Ratings interface {
|
|
SetStar(ctx context.Context, star bool, ids ...string) error
|
|
SetRating(ctx context.Context, id string, rating int) error
|
|
}
|
|
|
|
func NewRatings(ds model.DataStore) Ratings {
|
|
return &ratings{ds}
|
|
}
|
|
|
|
type ratings struct {
|
|
ds model.DataStore
|
|
}
|
|
|
|
func (r ratings) SetRating(ctx context.Context, id string, rating int) error {
|
|
// TODO
|
|
return model.ErrNotFound
|
|
}
|
|
|
|
func (r ratings) SetStar(ctx context.Context, star bool, ids ...string) error {
|
|
return r.ds.WithTx(func(tx model.DataStore) error {
|
|
err := tx.MediaFile().SetStar(star, ids...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = tx.Album().SetStar(star, ids...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = tx.Artist().SetStar(star, ids...)
|
|
return err
|
|
})
|
|
}
|