add cobra cmd
This commit is contained in:
parent
5114af97f6
commit
5484e143e6
4 changed files with 104 additions and 32 deletions
|
@ -1,4 +1,4 @@
|
||||||
package main
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strconv"
|
"strconv"
|
||||||
|
@ -9,8 +9,20 @@ import (
|
||||||
|
|
||||||
"github.com/go-errors/errors"
|
"github.com/go-errors/errors"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var franklinCmd = &cobra.Command{
|
||||||
|
Use: "franklin",
|
||||||
|
Short: "Test availability of homepage content",
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
franklin()
|
||||||
|
},
|
||||||
|
}
|
||||||
|
RootCmd.AddCommand(franklinCmd)
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxPrice = float64(999)
|
maxPrice = float64(999)
|
||||||
waitForStart = 5 * time.Second
|
waitForStart = 5 * time.Second
|
66
cmd/root.go
Normal file
66
cmd/root.go
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
package cmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
homedir "github.com/mitchellh/go-homedir"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
"github.com/spf13/viper"
|
||||||
|
)
|
||||||
|
|
||||||
|
var cfgFile string
|
||||||
|
|
||||||
|
// RootCmd represents the base command when called without any subcommands
|
||||||
|
var RootCmd = &cobra.Command{
|
||||||
|
Use: "lbry",
|
||||||
|
Short: "A command-line swiss army knife for LBRY",
|
||||||
|
// Uncomment the following line if your bare application
|
||||||
|
// has an action associated with it:
|
||||||
|
// Run: func(cmd *cobra.Command, args []string) { },
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
||||||
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
||||||
|
func Execute() {
|
||||||
|
if err := RootCmd.Execute(); err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
// connect viper config
|
||||||
|
//cobra.OnInitialize(initConfig)
|
||||||
|
|
||||||
|
// Here you will define your flags and configuration settings.
|
||||||
|
// Cobra supports persistent flags, which, if defined here,
|
||||||
|
// will be global for your application.
|
||||||
|
//RootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.lbry.yaml)")
|
||||||
|
}
|
||||||
|
|
||||||
|
// initConfig reads in config file and ENV variables if set.
|
||||||
|
func initConfig() {
|
||||||
|
if cfgFile != "" {
|
||||||
|
// Use config file from the flag.
|
||||||
|
viper.SetConfigFile(cfgFile)
|
||||||
|
} else {
|
||||||
|
// Find home directory.
|
||||||
|
home, err := homedir.Dir()
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Search config in home directory with name ".cmd" (without extension).
|
||||||
|
viper.AddConfigPath(home)
|
||||||
|
viper.SetConfigName(".lbry")
|
||||||
|
}
|
||||||
|
|
||||||
|
viper.AutomaticEnv() // read in environment variables that match
|
||||||
|
|
||||||
|
// If a config file is found, read it in.
|
||||||
|
if err := viper.ReadInConfig(); err == nil {
|
||||||
|
fmt.Println("Using config file:", viper.ConfigFileUsed())
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,9 +1,8 @@
|
||||||
package main
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"flag"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -20,10 +19,21 @@ import (
|
||||||
"github.com/garyburd/redigo/redis"
|
"github.com/garyburd/redigo/redis"
|
||||||
ytdl "github.com/kkdai/youtube"
|
ytdl "github.com/kkdai/youtube"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
"google.golang.org/api/googleapi/transport"
|
"google.golang.org/api/googleapi/transport"
|
||||||
"google.golang.org/api/youtube/v3"
|
"google.golang.org/api/youtube/v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
var ytSyncCmd = &cobra.Command{
|
||||||
|
Use: "ytsync <youtube_api_key> <youtube_channel_id> [<lbry_channel_name>]",
|
||||||
|
Args: cobra.RangeArgs(2, 3),
|
||||||
|
Short: "Publish youtube channel into LBRY network.",
|
||||||
|
Run: ytsync,
|
||||||
|
}
|
||||||
|
RootCmd.AddCommand(ytSyncCmd)
|
||||||
|
}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
concurrentVideos = 1
|
concurrentVideos = 1
|
||||||
redisHashKey = "ytsync"
|
redisHashKey = "ytsync"
|
||||||
|
@ -58,27 +68,23 @@ func (a byPlaylistPosition) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
||||||
func (a byPlaylistPosition) Less(i, j int) bool { return a[i].playlistPosition < a[j].playlistPosition }
|
func (a byPlaylistPosition) Less(i, j int) bool { return a[i].playlistPosition < a[j].playlistPosition }
|
||||||
|
|
||||||
var (
|
var (
|
||||||
daemon *jsonrpc.Client
|
ytAPIKey string
|
||||||
channelID string
|
channelID string
|
||||||
lbryChannelName string
|
lbryChannelName string
|
||||||
claimAddress string
|
|
||||||
videoDirectory string
|
daemon *jsonrpc.Client
|
||||||
ytAPIKey string
|
claimAddress string
|
||||||
redisPool *redis.Pool
|
videoDirectory string
|
||||||
|
redisPool *redis.Pool
|
||||||
)
|
)
|
||||||
|
|
||||||
func ytsync() {
|
func ytsync(cmd *cobra.Command, args []string) {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
flagSet := flag.NewFlagSet("", flag.ExitOnError)
|
ytAPIKey = args[0]
|
||||||
flagSet.StringVar(&ytAPIKey, "ytApiKey", "", "Youtube API key (required)")
|
channelID = args[1]
|
||||||
flagSet.StringVar(&channelID, "channelID", "", "ID of the youtube channel to sync (required)")
|
if len(args) > 2 {
|
||||||
flagSet.StringVar(&lbryChannelName, "lbryChannel", "", "Publish videos into this channel")
|
lbryChannelName = args[2]
|
||||||
flagSet.Parse(os.Args[2:])
|
|
||||||
|
|
||||||
if channelID == "" || ytAPIKey == "" {
|
|
||||||
flag.Usage()
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
redisPool = &redis.Pool{
|
redisPool = &redis.Pool{
|
16
main.go
16
main.go
|
@ -1,24 +1,12 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"github.com/lbryio/lbry.go/cmd"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
log.SetLevel(log.DebugLevel)
|
log.SetLevel(log.DebugLevel)
|
||||||
|
cmd.Execute()
|
||||||
if len(os.Args) < 2 {
|
|
||||||
log.Errorln("Usage: " + os.Args[0] + " COMMAND [options]")
|
|
||||||
}
|
|
||||||
|
|
||||||
switch os.Args[1] {
|
|
||||||
case "ytsync":
|
|
||||||
ytsync()
|
|
||||||
case "franklin":
|
|
||||||
franklin()
|
|
||||||
default:
|
|
||||||
log.Errorln("Unknown command: " + os.Args[1])
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue