gospt/src/cmd/tracks.go

32 lines
716 B
Go
Raw Normal View History

2023-01-09 23:52:21 +00:00
package cmd
import (
2023-01-11 17:45:29 +00:00
"os"
"path/filepath"
2023-02-09 07:28:41 +00:00
"gitea.asdf.cafe/abs3nt/gospt/src/commands"
"gitea.asdf.cafe/abs3nt/gospt/src/tui"
2023-01-09 23:52:21 +00:00
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(tracksCmd)
}
var tracksCmd = &cobra.Command{
Use: "tracks",
Short: "Opens saved tracks",
Long: `Uses TUI to open a list of saved tracks`,
2023-01-11 17:45:29 +00:00
RunE: func(cmd *cobra.Command, args []string) error {
configDir, _ := os.UserConfigDir()
2023-01-13 02:48:41 +00:00
if commands.ActiveDeviceExists(ctx, client) {
2023-01-11 21:57:47 +00:00
return tui.StartTea(ctx, client, "tracks")
}
2023-01-11 17:45:29 +00:00
if _, err := os.Stat(filepath.Join(configDir, "gospt/device.json")); err != nil {
return tui.StartTea(ctx, client, "devices")
}
return tui.StartTea(ctx, client, "tracks")
2023-01-09 23:52:21 +00:00
},
}