Files
godeez/cmd/download.go
T

60 lines
1.5 KiB
Go

package cmd
import (
"context"
"errors"
"fmt"
"time"
"github.com/mathismqn/godeez/internal/downloader"
"github.com/spf13/cobra"
)
var opts downloader.Options
var downloadCmd = &cobra.Command{
Use: "download",
Short: "Download songs from Deezer",
}
func init() {
RootCmd.AddCommand(downloadCmd)
downloadCmd.PersistentFlags().StringVarP(&opts.OutputDir, "output", "o", "", "output directory (default $HOME/Music/GoDeez)")
downloadCmd.PersistentFlags().StringVarP(&opts.Quality, "quality", "q", "best", "download quality [mp3_128, mp3_320, flac, best]")
downloadCmd.PersistentFlags().DurationVarP(&opts.Timeout, "timeout", "t", 2*time.Minute, "timeout for each download (e.g. 10s, 1m, 2m30s)")
downloadCmd.PersistentFlags().BoolVar(&opts.BPM, "bpm", false, "fetch BPM/key and add to file tags")
downloadCmd.AddCommand(
newDownloadCmd("album"),
newDownloadCmd("playlist"),
)
}
func newDownloadCmd(resourceType string) *cobra.Command {
cmd := &cobra.Command{
Use: fmt.Sprintf("%s <id>", resourceType),
Short: fmt.Sprintf("Download songs from %s", resourceType),
Args: cobra.ExactArgs(1),
PreRunE: func(cmd *cobra.Command, args []string) error {
return opts.Validate(appCtx.AppDir)
},
RunE: func(cmd *cobra.Command, args []string) error {
ctx := cmd.Context()
dl := downloader.New(appCtx, resourceType)
if err := dl.Run(ctx, opts, args[0]); err != nil {
if errors.Is(err, context.Canceled) {
return nil
}
return err
}
return nil
},
}
return cmd
}