This commit is contained in:
jjohnstondev 2023-01-07 20:58:18 -08:00
parent a6d53b28ae
commit ba0830c6f4
2 changed files with 38 additions and 0 deletions

View File

@ -4,10 +4,12 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
"math/rand"
"net/url"
"os"
"path/filepath"
"strings"
"time"
"gospt/ctx"
@ -47,6 +49,40 @@ func PlayUrl(ctx *ctx.Context, client *spotify.Client, args []string) error {
return nil
}
func Radio(ctx *ctx.Context, client *spotify.Client) error {
rand.Seed(time.Now().Unix())
current_song, err := client.PlayerCurrentlyPlaying(ctx)
if err != nil {
return err
}
seed := spotify.Seeds{
Tracks: []spotify.ID{current_song.Item.ID},
}
recomendations, err := client.GetRecommendations(ctx, seed, &spotify.TrackAttributes{}, spotify.Limit(100))
if err != nil {
return err
}
for _, song := range recomendations.Tracks {
fmt.Println(song.Name)
}
fmt.Println("QUEUED")
for i := 0; i < 4; i++ {
seed_track := recomendations.Tracks[3]
seed := spotify.Seeds{
Tracks: []spotify.ID{seed_track.ID},
}
recomendations, err = client.GetRecommendations(ctx, seed, &spotify.TrackAttributes{}, spotify.Limit(100))
if err != nil {
return err
}
for _, song := range recomendations.Tracks {
fmt.Println(song.Name)
}
fmt.Println("QUEUED")
}
return nil
}
func Devices(ctx *ctx.Context, client *spotify.Client) error {
devices, err := client.PlayerDevices(ctx)
if err != nil {

View File

@ -30,6 +30,8 @@ func Run(ctx *ctx.Context, client *spotify.Client, args []string) error {
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":