gospt/runner/runner.go
jjohnstondev ba0830c6f4 gitea
2023-01-07 20:58:18 -08:00

47 lines
1.1 KiB
Go

package runner
import (
"fmt"
"gospt/commands"
"gospt/ctx"
"gospt/tui"
"github.com/zmb3/spotify/v2"
)
func Run(ctx *ctx.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 "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")
}
}