2018-04-27 15:14:23 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2018-05-17 02:08:52 +02:00
|
|
|
"os/user"
|
|
|
|
|
2018-05-17 01:42:06 +02:00
|
|
|
"github.com/lbryio/lbry.go/errors"
|
2018-04-27 15:14:23 +02:00
|
|
|
"github.com/lbryio/lbry.go/null"
|
|
|
|
"github.com/lbryio/lbry.go/util"
|
2018-05-17 01:42:06 +02:00
|
|
|
sync "github.com/lbryio/lbry.go/ytsync"
|
2018-04-27 15:14:23 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
var selfSyncCmd = &cobra.Command{
|
2018-05-22 23:47:03 +02:00
|
|
|
Use: "selfsync <youtube_api_key> <auth_token> [<sync_status>]",
|
|
|
|
Args: cobra.RangeArgs(2, 3),
|
2018-04-27 15:14:23 +02:00
|
|
|
Short: "Publish youtube channels into LBRY network automatically.",
|
|
|
|
Run: selfSync,
|
|
|
|
}
|
|
|
|
selfSyncCmd.Flags().BoolVar(&stopOnError, "stop-on-error", false, "If a publish fails, stop all publishing and exit")
|
|
|
|
selfSyncCmd.Flags().IntVar(&maxTries, "max-tries", defaultMaxTries, "Number of times to try a publish that fails")
|
|
|
|
selfSyncCmd.Flags().BoolVar(&takeOverExistingChannel, "takeover-existing-channel", false, "If channel exists and we don't own it, take over the channel")
|
|
|
|
selfSyncCmd.Flags().IntVar(&limit, "limit", 0, "limit the amount of channels to sync")
|
2018-05-17 01:42:06 +02:00
|
|
|
selfSyncCmd.Flags().BoolVar(&skipSpaceCheck, "skip-space-check", false, "Do not perform free space check on startup")
|
2018-05-22 23:47:03 +02:00
|
|
|
selfSyncCmd.Flags().BoolVar(&skipSpaceCheck, "update", false, "Update previously synced channels instead of syncing new ones")
|
2018-05-17 01:42:06 +02:00
|
|
|
|
2018-04-27 15:14:23 +02:00
|
|
|
RootCmd.AddCommand(selfSyncCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
type APIJobsResponse struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Error null.String `json:"error"`
|
|
|
|
Data []APIYoutubeChannel `json:"data"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type APIYoutubeChannel struct {
|
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
TotalVideos uint `json:"total_videos"`
|
|
|
|
DesiredChannelName string `json:"desired_channel_name"`
|
|
|
|
SyncServer null.String `json:"sync_server"`
|
|
|
|
}
|
|
|
|
|
|
|
|
//PoC
|
2018-05-22 23:47:03 +02:00
|
|
|
func fetchChannels(authToken string, status string) ([]APIYoutubeChannel, error) {
|
2018-05-05 13:22:33 +02:00
|
|
|
url := "https://api.lbry.io/yt/jobs"
|
2018-05-22 23:47:03 +02:00
|
|
|
payload := strings.NewReader("------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n" +
|
|
|
|
"Content-Disposition: form-data; name=\"auth_token\"\r\n\r\n" + authToken + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n" +
|
|
|
|
"Content-Disposition: form-data; name=\"sync_status\"\r\n\r\n" + status + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--")
|
2018-04-27 15:14:23 +02:00
|
|
|
req, _ := http.NewRequest("POST", url, payload)
|
|
|
|
req.Header.Add("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW")
|
|
|
|
res, _ := http.DefaultClient.Do(req)
|
|
|
|
defer res.Body.Close()
|
|
|
|
body, _ := ioutil.ReadAll(res.Body)
|
|
|
|
//fmt.Println(res)
|
|
|
|
//fmt.Println(string(body))
|
|
|
|
var response APIJobsResponse
|
|
|
|
err := json.Unmarshal(body, &response)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return response.Data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type APISyncUpdateResponse struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Error null.String `json:"error"`
|
|
|
|
Data null.String `json:"data"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func setChannelSyncStatus(authToken string, channelID string, status string) error {
|
|
|
|
host, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Err("could not detect system hostname")
|
|
|
|
}
|
2018-05-05 13:22:33 +02:00
|
|
|
url := "https://api.lbry.io/yt/sync_update"
|
2018-04-27 15:14:23 +02:00
|
|
|
payload := strings.NewReader("------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data;" +
|
|
|
|
" name=\"channel_id\"\r\n\r\n" + channelID + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n" +
|
|
|
|
"Content-Disposition: form-data; name=\"sync_server\"\r\n\r\n" + host + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n" +
|
|
|
|
"Content-Disposition: form-data; name=\"auth_token\"\r\n\r\n" + authToken + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n" +
|
|
|
|
"Content-Disposition: form-data; name=\"sync_status\"\r\n\r\n" + status + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--")
|
|
|
|
req, _ := http.NewRequest("POST", url, payload)
|
|
|
|
req.Header.Add("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW")
|
|
|
|
req.Header.Add("Cache-Control", "no-cache")
|
|
|
|
res, _ := http.DefaultClient.Do(req)
|
|
|
|
defer res.Body.Close()
|
|
|
|
body, _ := ioutil.ReadAll(res.Body)
|
|
|
|
//fmt.Println(res)
|
|
|
|
//fmt.Println(string(body))
|
|
|
|
var response APISyncUpdateResponse
|
|
|
|
err = json.Unmarshal(body, &response)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !response.Error.IsNull() {
|
|
|
|
return errors.Err(response.Error.String)
|
|
|
|
}
|
|
|
|
if !response.Data.IsNull() && response.Data.String == "ok" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.Err("invalid API response")
|
|
|
|
}
|
|
|
|
|
|
|
|
func selfSync(cmd *cobra.Command, args []string) {
|
2018-05-17 02:08:52 +02:00
|
|
|
slackToken := os.Getenv("SLACK_TOKEN")
|
|
|
|
if slackToken == "" {
|
|
|
|
log.Error("A slack token was not present in env vars! Slack messages disabled!")
|
|
|
|
} else {
|
|
|
|
util.InitSlack(os.Getenv("SLACK_TOKEN"))
|
|
|
|
}
|
2018-05-17 01:42:06 +02:00
|
|
|
usr, err := user.Current()
|
|
|
|
if err != nil {
|
|
|
|
util.SendToSlackError(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
usedPctile, err := util.GetUsedSpace(usr.HomeDir + "/.lbrynet/blobfiles/")
|
|
|
|
if err != nil {
|
|
|
|
util.SendToSlackError(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if usedPctile > 0.9 && !skipSpaceCheck {
|
2018-05-17 02:08:52 +02:00
|
|
|
util.SendToSlackError("more than 90%% of the space has been used. use --skip-space-check to ignore. Used: %.1f%%", usedPctile*100)
|
2018-05-17 01:42:06 +02:00
|
|
|
return
|
|
|
|
}
|
2018-05-17 02:08:52 +02:00
|
|
|
util.SendToSlackInfo("disk usage: %.1f%%", usedPctile*100)
|
2018-04-27 15:14:23 +02:00
|
|
|
|
|
|
|
ytAPIKey := args[0]
|
|
|
|
authToken := args[1]
|
|
|
|
|
2018-05-22 23:47:03 +02:00
|
|
|
status := StatusQueued
|
|
|
|
if len(args) > 2 {
|
|
|
|
if util.InSlice(args[2], SyncStatuses) {
|
|
|
|
status = args[2]
|
|
|
|
} else {
|
|
|
|
log.Errorf("status must be one of the following: %v\n", SyncStatuses)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-04-27 15:14:23 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
if limit < 0 {
|
|
|
|
log.Errorln("setting --limit less than 0 (unlimited) doesn't make sense")
|
|
|
|
return
|
|
|
|
}
|
2018-05-22 23:47:03 +02:00
|
|
|
channelsToSync, err := fetchChannels(authToken, status)
|
2018-04-27 15:14:23 +02:00
|
|
|
if err != nil {
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackError("failed to fetch channels: %v", err)
|
2018-04-27 15:14:23 +02:00
|
|
|
return
|
|
|
|
}
|
2018-05-05 13:22:33 +02:00
|
|
|
host, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
host = ""
|
|
|
|
}
|
|
|
|
for loops := 0; loops < len(channelsToSync) && (limit != 0 && loops < limit); loops++ {
|
2018-04-27 15:14:23 +02:00
|
|
|
//avoid dereferencing
|
|
|
|
channel := channelsToSync[loops]
|
|
|
|
channelID := channel.ChannelId
|
|
|
|
lbryChannelName := channel.DesiredChannelName
|
|
|
|
if channel.TotalVideos < 1 {
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackInfo("Channnel %s has no videos. Skipping", lbryChannelName)
|
2018-04-27 15:14:23 +02:00
|
|
|
continue
|
|
|
|
}
|
2018-05-05 13:22:33 +02:00
|
|
|
if !channel.SyncServer.IsNull() && channel.SyncServer.String != host {
|
|
|
|
util.SendToSlackInfo("Channnel %s is being synced by another server: %s", lbryChannelName, channel.SyncServer.String)
|
2018-04-27 15:14:23 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
//acquire the lock on the channel
|
|
|
|
err := setChannelSyncStatus(authToken, channelID, StatusSyncing)
|
|
|
|
if err != nil {
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackError("Failed aquiring sync rights for channel %s: %v", lbryChannelName, err)
|
2018-04-27 15:14:23 +02:00
|
|
|
continue
|
|
|
|
}
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackInfo("Syncing %s to LBRY! (iteration %d)", lbryChannelName, loops)
|
2018-04-27 15:14:23 +02:00
|
|
|
|
|
|
|
s := sync.Sync{
|
|
|
|
YoutubeAPIKey: ytAPIKey,
|
|
|
|
YoutubeChannelID: channelID,
|
|
|
|
LbryChannelName: lbryChannelName,
|
|
|
|
StopOnError: stopOnError,
|
|
|
|
MaxTries: maxTries,
|
|
|
|
ConcurrentVideos: 1,
|
|
|
|
TakeOverExistingChannel: takeOverExistingChannel,
|
|
|
|
Refill: refill,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = s.FullCycle()
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackInfo("Syncing " + lbryChannelName + " reached an end.")
|
2018-04-27 15:14:23 +02:00
|
|
|
if err != nil {
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackError(errors.FullTrace(err))
|
2018-05-17 01:42:06 +02:00
|
|
|
fatalErrors := []string{
|
|
|
|
"default_wallet already exists",
|
|
|
|
"WALLET HAS NOT BEEN MOVED TO THE WALLET BACKUP DIR",
|
|
|
|
}
|
|
|
|
if util.InSliceContains(err.Error(), fatalErrors) {
|
|
|
|
util.SendToSlackError("@Nikooo777 this requires manual intervention! Exiting...")
|
|
|
|
break
|
|
|
|
}
|
2018-04-27 15:48:34 +02:00
|
|
|
//mark video as failed
|
|
|
|
err := setChannelSyncStatus(authToken, channelID, StatusFailed)
|
|
|
|
if err != nil {
|
|
|
|
msg := fmt.Sprintf("Failed setting failed state for channel %s: %v", lbryChannelName, err)
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackError(msg)
|
2018-05-17 01:42:06 +02:00
|
|
|
util.SendToSlackError("@Nikooo777 this requires manual intervention! Exiting...")
|
|
|
|
break
|
2018-04-27 15:48:34 +02:00
|
|
|
}
|
2018-05-17 01:42:06 +02:00
|
|
|
continue
|
2018-04-27 15:14:23 +02:00
|
|
|
}
|
2018-04-27 15:48:34 +02:00
|
|
|
//mark video as synced
|
|
|
|
err = setChannelSyncStatus(authToken, channelID, StatusSynced)
|
|
|
|
if err != nil {
|
|
|
|
msg := fmt.Sprintf("Failed setting synced state for channel %s: %v", lbryChannelName, err)
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackError(msg)
|
2018-05-17 01:42:06 +02:00
|
|
|
util.SendToSlackError("@Nikooo777 this requires manual intervention! Exiting...")
|
2018-04-27 15:48:34 +02:00
|
|
|
//this error is very bad. it requires manual intervention
|
2018-05-17 01:42:06 +02:00
|
|
|
break
|
2018-04-27 15:48:34 +02:00
|
|
|
}
|
2018-04-27 15:14:23 +02:00
|
|
|
}
|
2018-05-05 13:22:33 +02:00
|
|
|
util.SendToSlackInfo("Syncing process terminated!")
|
2018-04-27 15:14:23 +02:00
|
|
|
}
|