lbry.go/cmd/ytsync.go

70 lines
1.8 KiB
Go
Raw Normal View History

2017-09-27 20:10:41 +02:00
package cmd
2017-09-15 13:58:54 +02:00
2017-09-16 00:13:13 +02:00
import (
"github.com/lbryio/lbry.go/errors"
2017-10-11 04:02:16 +02:00
sync "github.com/lbryio/lbry.go/ytsync"
2017-09-15 13:58:54 +02:00
2017-09-16 00:13:13 +02:00
log "github.com/sirupsen/logrus"
2017-09-27 20:10:41 +02:00
"github.com/spf13/cobra"
2017-09-16 00:13:13 +02:00
)
2017-09-27 20:10:41 +02:00
func init() {
var ytSyncCmd = &cobra.Command{
Use: "ytsync <youtube_api_key> <lbry_channel_name> [<youtube_channel_id>]",
2017-09-27 20:10:41 +02:00
Args: cobra.RangeArgs(2, 3),
Short: "Publish youtube channel into LBRY network.",
Run: ytsync,
}
ytSyncCmd.Flags().BoolVar(&stopOnError, "stop-on-error", false, "If a publish fails, stop all publishing and exit")
ytSyncCmd.Flags().IntVar(&maxTries, "max-tries", defaultMaxTries, "Number of times to try a publish that fails")
2017-11-06 22:42:52 +01:00
ytSyncCmd.Flags().BoolVar(&takeOverExistingChannel, "takeover-existing-channel", false, "If channel exists and we don't own it, take over the channel")
2017-09-27 20:10:41 +02:00
RootCmd.AddCommand(ytSyncCmd)
}
const defaultMaxTries = 3
2017-09-27 01:48:10 +02:00
2017-09-16 00:13:13 +02:00
var (
2017-11-06 22:42:52 +01:00
stopOnError bool
maxTries int
takeOverExistingChannel bool
2017-09-16 00:13:13 +02:00
)
2017-09-27 20:10:41 +02:00
func ytsync(cmd *cobra.Command, args []string) {
2017-10-11 04:02:16 +02:00
ytAPIKey := args[0]
lbryChannelName := args[1]
if string(lbryChannelName[0]) != "@" {
log.Errorln("LBRY channel name must start with an @")
return
}
channelID := ""
2017-09-27 20:10:41 +02:00
if len(args) > 2 {
channelID = args[2]
2017-09-16 00:13:13 +02:00
}
if stopOnError && maxTries != defaultMaxTries {
log.Errorln("--stop-on-error and --max-tries are mutually exclusive")
return
}
if maxTries < 1 {
log.Errorln("setting --max-tries less than 1 doesn't make sense")
return
}
2017-10-11 04:02:16 +02:00
s := sync.Sync{
2017-11-06 22:42:52 +01:00
YoutubeAPIKey: ytAPIKey,
YoutubeChannelID: channelID,
LbryChannelName: lbryChannelName,
StopOnError: stopOnError,
MaxTries: maxTries,
ConcurrentVideos: 1,
TakeOverExistingChannel: takeOverExistingChannel,
2017-09-19 20:14:52 +02:00
}
err := s.FullCycle()
2017-09-16 00:13:13 +02:00
if err != nil {
log.Error(errors.FullTrace(err))
2017-09-16 00:13:13 +02:00
}
2017-09-15 13:58:54 +02:00
}