lbry.go/cmd/ytsync.go

97 lines
2.9 KiB
Go
Raw Normal View History

2017-09-27 14:10:41 -04:00
package cmd
2017-09-15 07:58:54 -04:00
2017-09-15 18:13:13 -04:00
import (
"os"
"os/user"
"github.com/lbryio/lbry.go/errors"
"github.com/lbryio/lbry.go/util"
sync "github.com/lbryio/lbry.go/ytsync"
2017-09-15 18:13:13 -04:00
log "github.com/sirupsen/logrus"
2017-09-27 14:10:41 -04:00
"github.com/spf13/cobra"
2017-09-15 18:13:13 -04:00
)
2017-09-27 14:10:41 -04:00
func init() {
var ytSyncCmd = &cobra.Command{
Use: "ytsync <youtube_api_key> <lbry_channel_name> [<youtube_channel_id>]",
2017-09-27 14:10:41 -04: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 16:42:52 -05:00
ytSyncCmd.Flags().BoolVar(&takeOverExistingChannel, "takeover-existing-channel", false, "If channel exists and we don't own it, take over the channel")
ytSyncCmd.Flags().IntVar(&refill, "refill", 0, "Also add this many credits to the wallet")
ytSyncCmd.Flags().BoolVar(&skipSpaceCheck, "skip-space-check", false, "Do not perform free space check on startup")
2017-09-27 14:10:41 -04:00
RootCmd.AddCommand(ytSyncCmd)
}
func ytsync(cmd *cobra.Command, args []string) {
slackToken := os.Getenv("SLACK_TOKEN")
if slackToken == "" {
log.Error("A slack token was not present in env vars! Slack messages disabled!")
} else {
host, err := os.Hostname()
if err != nil {
log.Error("could not detect system hostname")
host = "ytsync-unknown"
}
util.InitSlack(os.Getenv("SLACK_TOKEN"), os.Getenv("SLACK_CHANNEL"), host)
}
usr, err := user.Current()
if err != nil {
util.SendErrorToSlack(err.Error())
return
}
usedPctile, err := util.GetUsedSpace(usr.HomeDir + "/.lbrynet/blobfiles/")
if err != nil {
util.SendErrorToSlack(err.Error())
return
}
if usedPctile > 0.9 && !skipSpaceCheck {
util.SendErrorToSlack("more than 90%% of the space has been used. use --skip-space-check to ignore. Used: %.1f%%", usedPctile*100)
return
}
util.SendInfoToSlack("disk usage: %.1f%%", usedPctile*100)
2017-10-10 22:02:16 -04: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 14:10:41 -04:00
if len(args) > 2 {
channelID = args[2]
2017-09-15 18:13:13 -04: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
}
util.SendInfoToSlack("Syncing " + lbryChannelName + " to LBRY!")
2017-10-10 22:02:16 -04:00
s := sync.Sync{
2017-11-06 16:42:52 -05:00
YoutubeAPIKey: ytAPIKey,
YoutubeChannelID: channelID,
LbryChannelName: lbryChannelName,
StopOnError: stopOnError,
MaxTries: maxTries,
ConcurrentVideos: 1,
TakeOverExistingChannel: takeOverExistingChannel,
Refill: refill,
2017-09-19 14:14:52 -04:00
}
err = s.FullCycle()
2017-09-15 18:13:13 -04:00
if err != nil {
util.SendErrorToSlack(errors.FullTrace(err))
2017-09-15 18:13:13 -04:00
}
util.SendInfoToSlack("Syncing " + lbryChannelName + " reached an end.")
2017-09-15 07:58:54 -04:00
}