gospt/src/tui/handlers.go

92 lines
2.0 KiB
Go
Raw Normal View History

2023-01-13 06:19:43 +00:00
package tui
import (
"fmt"
2023-01-14 06:27:38 +00:00
"gospt/src/commands"
"gospt/src/gctx"
2023-01-13 06:19:43 +00:00
"github.com/zmb3/spotify/v2"
)
2023-01-14 20:20:41 +00:00
func HandlePlayWithContext(ctx *gctx.Context, client *spotify.Client, uri *spotify.URI, pos int) {
2023-01-13 06:19:43 +00:00
var err error
err = commands.PlaySongInPlaylist(ctx, client, uri, pos)
if err != nil {
return
}
}
func HandleRadio(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
err := commands.RadioGivenSong(ctx, client, id, 0)
if err != nil {
return
}
}
func HandleAlbumRadio(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
err := commands.RadioFromAlbum(ctx, client, id)
if err != nil {
return
}
}
2023-01-14 20:20:41 +00:00
func HandleArtistRadio(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
err := commands.RadioGivenArtist(ctx, client, id)
if err != nil {
return
}
}
2023-01-13 06:19:43 +00:00
func HandleAlbumArtist(ctx *gctx.Context, client *spotify.Client, id spotify.ID) {
err := commands.RadioGivenArtist(ctx, client, id)
if err != nil {
return
}
}
func HandlePlaylistRadio(ctx *gctx.Context, client *spotify.Client, playlist spotify.SimplePlaylist) {
err := commands.RadioFromPlaylist(ctx, client, playlist)
if err != nil {
return
}
}
func HandleLibraryRadio(ctx *gctx.Context, client *spotify.Client) {
err := commands.RadioFromSavedTracks(ctx, client)
if err != nil {
fmt.Println(err.Error())
return
}
}
func HandlePlayLikedSong(ctx *gctx.Context, client *spotify.Client, position int) {
err := commands.PlayLikedSongs(ctx, client, position)
if err != nil {
fmt.Println(err.Error())
return
}
}
2023-01-14 20:20:41 +00:00
func HandlePlayTrack(ctx *gctx.Context, client *spotify.Client, track spotify.ID) {
err := commands.QueueSong(ctx, client, track)
if err != nil {
fmt.Println(err.Error())
return
}
err = commands.Next(ctx, client)
if err != nil {
fmt.Println(err.Error())
return
}
}
2023-01-13 06:19:43 +00:00
func HandleSetDevice(ctx *gctx.Context, client *spotify.Client, player spotify.PlayerDevice) {
var err error
err = commands.SetDevice(ctx, client, player)
if err != nil {
fmt.Println(err.Error())
return
}
}