navidrome/server/subsonic/media_annotation.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

222 lines
5.3 KiB
Go
Raw Normal View History

package subsonic
import (
2020-01-22 05:01:43 +01:00
"context"
2020-08-14 05:08:15 +02:00
"fmt"
"net/http"
"time"
2021-06-20 02:56:56 +02:00
"github.com/navidrome/navidrome/core/scrobbler"
2020-01-24 01:44:08 +01:00
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/model"
2020-08-14 05:08:15 +02:00
"github.com/navidrome/navidrome/model/request"
"github.com/navidrome/navidrome/server/events"
2020-01-24 01:44:08 +01:00
"github.com/navidrome/navidrome/server/subsonic/responses"
"github.com/navidrome/navidrome/utils/req"
)
func (api *Router) SetRating(r *http.Request) (*responses.Subsonic, error) {
p := req.Params(r)
id, err := p.String("id")
if err != nil {
return nil, err
}
rating, err := p.Int("rating")
if err != nil {
return nil, err
}
2016-03-24 00:37:48 +01:00
2020-01-09 02:45:07 +01:00
log.Debug(r, "Setting rating", "rating", rating, "id", id)
err = api.setRating(r.Context(), id, rating)
2022-10-01 00:54:25 +02:00
if err != nil {
2020-01-09 02:45:07 +01:00
log.Error(r, err)
2020-10-27 20:23:29 +01:00
return nil, err
2016-03-24 00:37:48 +01:00
}
return newResponse(), nil
2016-03-24 00:37:48 +01:00
}
func (api *Router) setRating(ctx context.Context, id string, rating int) error {
var repo model.AnnotatedRepository
var resource string
entity, err := model.GetEntityByID(ctx, api.ds, id)
if err != nil {
return err
2020-08-02 23:58:07 +02:00
}
switch entity.(type) {
case *model.Artist:
repo = api.ds.Artist(ctx)
resource = "artist"
case *model.Album:
repo = api.ds.Album(ctx)
resource = "album"
default:
repo = api.ds.MediaFile(ctx)
resource = "song"
}
err = repo.SetRating(rating, id)
if err != nil {
return err
2020-08-02 23:58:07 +02:00
}
event := &events.RefreshResource{}
api.broker.SendMessage(ctx, event.With(resource, id))
return nil
2020-08-02 23:58:07 +02:00
}
func (api *Router) Star(r *http.Request) (*responses.Subsonic, error) {
p := req.Params(r)
ids, _ := p.Strings("id")
albumIds, _ := p.Strings("albumId")
artistIds, _ := p.Strings("artistId")
if len(ids)+len(albumIds)+len(artistIds) == 0 {
return nil, newError(responses.ErrorMissingParameter, "Required id parameter is missing")
}
ids = append(ids, albumIds...)
ids = append(ids, artistIds...)
err := api.setStar(r.Context(), true, ids...)
if err != nil {
return nil, err
}
2020-01-22 05:01:43 +01:00
return newResponse(), nil
2020-01-22 05:01:43 +01:00
}
func (api *Router) Unstar(r *http.Request) (*responses.Subsonic, error) {
p := req.Params(r)
ids, _ := p.Strings("id")
albumIds, _ := p.Strings("albumId")
artistIds, _ := p.Strings("artistId")
2020-01-22 05:01:43 +01:00
if len(ids)+len(albumIds)+len(artistIds) == 0 {
return nil, newError(responses.ErrorMissingParameter, "Required id parameter is missing")
2020-01-22 05:01:43 +01:00
}
ids = append(ids, albumIds...)
ids = append(ids, artistIds...)
err := api.setStar(r.Context(), false, ids...)
if err != nil {
return nil, err
}
2016-03-23 22:46:54 +01:00
return newResponse(), nil
}
func (api *Router) setStar(ctx context.Context, star bool, ids ...string) error {
2021-06-26 19:52:29 +02:00
if len(ids) == 0 {
return nil
}
log.Debug(ctx, "Changing starred", "ids", ids, "starred", star)
if len(ids) == 0 {
log.Warn(ctx, "Cannot star/unstar an empty list of ids")
return nil
}
event := &events.RefreshResource{}
err := api.ds.WithTx(func(tx model.DataStore) error {
2021-06-26 19:52:29 +02:00
for _, id := range ids {
exist, err := tx.Album(ctx).Exists(id)
if err != nil {
return err
}
if exist {
err = tx.Album(ctx).SetStar(star, id)
if err != nil {
return err
}
event = event.With("album", id)
continue
}
exist, err = tx.Artist(ctx).Exists(id)
if err != nil {
return err
}
if exist {
err = tx.Artist(ctx).SetStar(star, id)
if err != nil {
return err
}
event = event.With("artist", id)
continue
}
err = tx.MediaFile(ctx).SetStar(star, id)
if err != nil {
return err
}
event = event.With("song", id)
}
api.broker.SendMessage(ctx, event)
2021-06-26 19:52:29 +02:00
return nil
})
2022-10-01 00:54:25 +02:00
if err != nil {
2021-06-26 19:52:29 +02:00
log.Error(ctx, err)
return err
}
return nil
}
func (api *Router) Scrobble(r *http.Request) (*responses.Subsonic, error) {
p := req.Params(r)
ids, err := p.Strings("id")
if err != nil {
return nil, err
}
times, _ := p.Times("time")
2016-03-22 00:35:40 +01:00
if len(times) > 0 && len(times) != len(ids) {
return nil, newError(responses.ErrorGeneric, "Wrong number of timestamps: %d, should be %d", len(times), len(ids))
2016-03-22 00:35:40 +01:00
}
submission := p.BoolOr("submission", true)
ctx := r.Context()
if submission {
err := api.scrobblerSubmit(ctx, ids, times)
if err != nil {
log.Error(ctx, "Error registering scrobbles", "ids", ids, "times", times, err)
}
} else {
err := api.scrobblerNowPlaying(ctx, ids[0])
if err != nil {
log.Error(ctx, "Error setting NowPlaying", "id", ids[0], err)
}
}
return newResponse(), nil
}
func (api *Router) scrobblerSubmit(ctx context.Context, ids []string, times []time.Time) error {
var submissions []scrobbler.Submission
log.Debug(ctx, "Scrobbling tracks", "ids", ids, "times", times)
2016-03-22 15:28:13 +01:00
for i, id := range ids {
2016-03-22 00:35:40 +01:00
var t time.Time
if len(times) > 0 {
t = times[i]
} else {
t = time.Now()
}
submissions = append(submissions, scrobbler.Submission{TrackID: id, Timestamp: t})
}
2020-08-14 05:08:15 +02:00
return api.scrobbler.Submit(ctx, submissions)
2020-08-14 05:08:15 +02:00
}
func (api *Router) scrobblerNowPlaying(ctx context.Context, trackId string) error {
mf, err := api.ds.MediaFile(ctx).Get(trackId)
2020-08-14 05:08:15 +02:00
if err != nil {
2021-06-20 02:56:56 +02:00
return err
2020-08-14 05:08:15 +02:00
}
if mf == nil {
2021-06-20 02:56:56 +02:00
return fmt.Errorf(`ID "%s" not found`, trackId)
2020-08-14 05:08:15 +02:00
}
player, _ := request.PlayerFrom(ctx)
username, _ := request.UsernameFrom(ctx)
client, _ := request.ClientFrom(ctx)
clientId, ok := request.ClientUniqueIdFrom(ctx)
if !ok {
clientId = player.ID
}
2020-08-14 05:08:15 +02:00
2022-11-04 16:29:58 +01:00
log.Info(ctx, "Now Playing", "title", mf.Title, "artist", mf.Artist, "user", username, "player", player.Name)
err = api.scrobbler.NowPlaying(ctx, clientId, client, trackId)
2021-06-20 02:56:56 +02:00
return err
2020-08-14 05:08:15 +02:00
}