mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
135 lines
3.6 KiB
Go
135 lines
3.6 KiB
Go
package subsonic
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/navidrome/navidrome/conf"
|
|
"github.com/navidrome/navidrome/core/playback"
|
|
"github.com/navidrome/navidrome/log"
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
"github.com/navidrome/navidrome/utils/req"
|
|
)
|
|
|
|
const (
|
|
ActionGet = "get"
|
|
ActionStatus = "status"
|
|
ActionSet = "set"
|
|
ActionStart = "start"
|
|
ActionStop = "stop"
|
|
ActionSkip = "skip"
|
|
ActionAdd = "add"
|
|
ActionClear = "clear"
|
|
ActionRemove = "remove"
|
|
ActionShuffle = "shuffle"
|
|
ActionSetGain = "setGain"
|
|
)
|
|
|
|
func (api *Router) JukeboxControl(r *http.Request) (*responses.Subsonic, error) {
|
|
ctx := r.Context()
|
|
user := getUser(ctx)
|
|
p := req.Params(r)
|
|
|
|
if !conf.Server.Jukebox.Enabled {
|
|
return nil, newError(responses.ErrorGeneric, "Jukebox is disabled")
|
|
}
|
|
|
|
if conf.Server.Jukebox.AdminOnly && !user.IsAdmin {
|
|
return nil, newError(responses.ErrorAuthorizationFail, "Jukebox is admin only")
|
|
}
|
|
|
|
actionString, err := p.String("action")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pb, err := api.playback.GetDeviceForUser(user.UserName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
log.Info(ctx, "JukeboxControl request received", "action", actionString)
|
|
|
|
switch actionString {
|
|
case ActionGet:
|
|
mediafiles, status, err := pb.Get(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
playlist := responses.JukeboxPlaylist{
|
|
JukeboxStatus: *deviceStatusToJukeboxStatus(status),
|
|
Entry: childrenFromMediaFiles(ctx, mediafiles),
|
|
}
|
|
|
|
response := newResponse()
|
|
response.JukeboxPlaylist = &playlist
|
|
return response, nil
|
|
case ActionStatus:
|
|
return createResponse(pb.Status(ctx))
|
|
case ActionSet:
|
|
ids, _ := p.Strings("id")
|
|
return createResponse(pb.Set(ctx, ids))
|
|
case ActionStart:
|
|
return createResponse(pb.Start(ctx))
|
|
case ActionStop:
|
|
return createResponse(pb.Stop(ctx))
|
|
case ActionSkip:
|
|
index, err := p.Int("index")
|
|
if err != nil {
|
|
return nil, newError(responses.ErrorMissingParameter, "missing parameter index, err: %s", err)
|
|
}
|
|
offset := p.IntOr("offset", 0)
|
|
return createResponse(pb.Skip(ctx, index, offset))
|
|
case ActionAdd:
|
|
ids, _ := p.Strings("id")
|
|
return createResponse(pb.Add(ctx, ids))
|
|
case ActionClear:
|
|
return createResponse(pb.Clear(ctx))
|
|
case ActionRemove:
|
|
index, err := p.Int("index")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return createResponse(pb.Remove(ctx, index))
|
|
case ActionShuffle:
|
|
return createResponse(pb.Shuffle(ctx))
|
|
case ActionSetGain:
|
|
gainStr, err := p.String("gain")
|
|
if err != nil {
|
|
return nil, newError(responses.ErrorMissingParameter, "missing parameter gain, err: %s", err)
|
|
}
|
|
|
|
gain, err := strconv.ParseFloat(gainStr, 32)
|
|
if err != nil {
|
|
return nil, newError(responses.ErrorMissingParameter, "error parsing gain float value, err: %s", err)
|
|
}
|
|
|
|
return createResponse(pb.SetGain(ctx, float32(gain)))
|
|
default:
|
|
return nil, newError(responses.ErrorMissingParameter, "Unknown action: %s", actionString)
|
|
}
|
|
}
|
|
|
|
// createResponse is to shorten the case-switch in the JukeboxController
|
|
func createResponse(status playback.DeviceStatus, err error) (*responses.Subsonic, error) {
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return statusResponse(status), nil
|
|
}
|
|
|
|
func statusResponse(status playback.DeviceStatus) *responses.Subsonic {
|
|
response := newResponse()
|
|
response.JukeboxStatus = deviceStatusToJukeboxStatus(status)
|
|
return response
|
|
}
|
|
|
|
func deviceStatusToJukeboxStatus(status playback.DeviceStatus) *responses.JukeboxStatus {
|
|
return &responses.JukeboxStatus{
|
|
CurrentIndex: int32(status.CurrentIndex),
|
|
Playing: status.Playing,
|
|
Gain: status.Gain,
|
|
Position: int32(status.Position),
|
|
}
|
|
}
|