gospt/internal/api/api.go
2023-01-07 23:57:33 -08:00

51 lines
1.2 KiB
Go

package api
import (
"fmt"
"gospt/internal/commands"
"gospt/internal/gctx"
"gospt/internal/tui"
"github.com/zmb3/spotify/v2"
)
func Run(ctx *gctx.Context, client *spotify.Client, args []string) error {
if len(args) == 0 {
user, err := client.CurrentUser(ctx)
if err != nil {
return fmt.Errorf("Failed to get current user")
}
fmt.Println("The following commands are currently supported:\nplay pause next shuffle\nhave fun", user.DisplayName)
return nil
}
switch args[0] {
case "play":
return commands.Play(ctx, client)
case "playurl":
return commands.PlayUrl(ctx, client, args)
case "pause":
return commands.Pause(ctx, client)
case "next":
return commands.Skip(ctx, client)
case "shuffle":
return commands.Shuffle(ctx, client)
case "radio":
return commands.Radio(ctx, client)
case "clearradio":
return commands.ClearRadio(ctx, client)
case "refillradio":
return commands.RefillRadio(ctx, client)
case "tracks":
return tui.DisplayList(ctx, client)
case "status":
return commands.Status(ctx, client)
case "devices":
return commands.Devices(ctx, client)
case "setdevice":
return commands.SetDevice(ctx, client, args)
default:
return fmt.Errorf("Unsupported Command")
}
}