fancy next

This commit is contained in:
abs3nt 2023-01-16 21:06:20 -08:00
parent a26234b38a
commit 8c84e623da
1 changed files with 27 additions and 2 deletions

View File

@ -578,15 +578,40 @@ func Next(ctx *gctx.Context, client *spotify.Client, amt int) error {
}
page++
}
fmt.Println(currentTrackIndex)
client.PlayOpt(ctx, &spotify.PlayOptions{
PlaybackContext: &current.PlaybackContext.URI,
PlaybackOffset: &spotify.PlaybackOffset{
Position: currentTrackIndex + amt,
},
})
return nil
case "album":
found := false
currentTrackIndex := 0
for !found {
page := 1
playlist, err := client.GetAlbumTracks(ctx, spotify.ID(strings.Split(string(current.PlaybackContext.URI), ":")[2]), spotify.Limit(50), spotify.Offset((page-1)*50))
if err != nil {
return err
}
for idx, track := range playlist.Tracks {
if track.ID == current.Item.ID {
currentTrackIndex = idx + (50 * (page - 1))
found = true
break
}
}
page++
}
client.PlayOpt(ctx, &spotify.PlayOptions{
PlaybackContext: &current.PlaybackContext.URI,
PlaybackOffset: &spotify.PlaybackOffset{
Position: currentTrackIndex + amt,
},
})
return nil
default:
for i := 0; i <= amt; i++ {
for i := 0; i < amt; i++ {
client.Next(ctx)
}
}