2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-07-17 21:23:07 +00:00
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2019-01-23 18:44:09 +00:00
|
|
|
"fmt"
|
2020-04-13 18:16:28 +00:00
|
|
|
"os"
|
2019-02-06 12:27:30 +00:00
|
|
|
"strings"
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2018-11-21 04:47:01 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2018-01-25 19:21:55 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2018-02-08 16:12:08 +00:00
|
|
|
var (
|
2020-05-30 03:02:47 +00:00
|
|
|
cfgFile string
|
|
|
|
subCommand string
|
|
|
|
logWithCommand log.Entry
|
2018-02-08 16:12:08 +00:00
|
|
|
)
|
2018-01-25 19:21:55 +00:00
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
2020-07-01 18:44:04 +00:00
|
|
|
Use: "ipfs-blockchain-watcher",
|
2019-06-26 00:24:56 +00:00
|
|
|
PersistentPreRun: initFuncs,
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Execute() {
|
2020-07-01 18:44:04 +00:00
|
|
|
log.Info("----- Starting IPFS blockchain watcher -----")
|
2018-01-25 19:21:55 +00:00
|
|
|
if err := rootCmd.Execute(); err != nil {
|
2018-11-21 04:47:01 +00:00
|
|
|
log.Fatal(err)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-26 00:24:56 +00:00
|
|
|
func initFuncs(cmd *cobra.Command, args []string) {
|
2020-04-13 18:16:28 +00:00
|
|
|
logfile := viper.GetString("logfile")
|
|
|
|
if logfile != "" {
|
|
|
|
file, err := os.OpenFile(logfile,
|
|
|
|
os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0666)
|
|
|
|
if err == nil {
|
|
|
|
log.Infof("Directing output to %s", logfile)
|
|
|
|
log.SetOutput(file)
|
|
|
|
} else {
|
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
log.Info("Failed to log to file, using default stdout")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
}
|
|
|
|
if err := logLevel(); err != nil {
|
|
|
|
log.Fatal("Could not set log level: ", err)
|
2019-07-18 07:21:40 +00:00
|
|
|
}
|
2019-06-26 00:24:56 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 23:57:37 +00:00
|
|
|
func logLevel() error {
|
2019-06-26 00:24:56 +00:00
|
|
|
lvl, err := log.ParseLevel(viper.GetString("log.level"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.SetLevel(lvl)
|
2019-07-11 23:57:37 +00:00
|
|
|
if lvl > log.InfoLevel {
|
|
|
|
log.SetReportCaller(true)
|
|
|
|
}
|
2019-06-26 00:24:56 +00:00
|
|
|
log.Info("Log level set to ", lvl.String())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-25 19:21:55 +00:00
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
2019-02-06 12:27:30 +00:00
|
|
|
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
|
|
viper.AutomaticEnv()
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2019-01-23 18:44:09 +00:00
|
|
|
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file location")
|
2020-03-23 16:57:36 +00:00
|
|
|
rootCmd.PersistentFlags().String("logfile", "", "file path for logging")
|
2018-01-25 21:46:55 +00:00
|
|
|
rootCmd.PersistentFlags().String("database-name", "vulcanize_public", "database name")
|
|
|
|
rootCmd.PersistentFlags().Int("database-port", 5432, "database port")
|
|
|
|
rootCmd.PersistentFlags().String("database-hostname", "localhost", "database hostname")
|
2018-06-22 15:28:34 +00:00
|
|
|
rootCmd.PersistentFlags().String("database-user", "", "database user")
|
|
|
|
rootCmd.PersistentFlags().String("database-password", "", "database password")
|
2018-01-25 21:46:55 +00:00
|
|
|
rootCmd.PersistentFlags().String("client-ipcPath", "", "location of geth.ipc file")
|
2019-06-26 00:24:56 +00:00
|
|
|
rootCmd.PersistentFlags().String("log-level", log.InfoLevel.String(), "Log level (trace, debug, info, warn, error, fatal, panic")
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2020-03-23 16:57:36 +00:00
|
|
|
viper.BindPFlag("logfile", rootCmd.PersistentFlags().Lookup("logfile"))
|
2018-01-25 19:21:55 +00:00
|
|
|
viper.BindPFlag("database.name", rootCmd.PersistentFlags().Lookup("database-name"))
|
|
|
|
viper.BindPFlag("database.port", rootCmd.PersistentFlags().Lookup("database-port"))
|
|
|
|
viper.BindPFlag("database.hostname", rootCmd.PersistentFlags().Lookup("database-hostname"))
|
2018-06-22 15:28:34 +00:00
|
|
|
viper.BindPFlag("database.user", rootCmd.PersistentFlags().Lookup("database-user"))
|
|
|
|
viper.BindPFlag("database.password", rootCmd.PersistentFlags().Lookup("database-password"))
|
2019-06-26 00:24:56 +00:00
|
|
|
viper.BindPFlag("log.level", rootCmd.PersistentFlags().Lookup("log-level"))
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
|
|
|
if cfgFile != "" {
|
|
|
|
viper.SetConfigFile(cfgFile)
|
2020-04-13 18:16:28 +00:00
|
|
|
if err := viper.ReadInConfig(); err == nil {
|
|
|
|
log.Printf("Using config file: %s", viper.ConfigFileUsed())
|
|
|
|
} else {
|
|
|
|
log.Fatal(fmt.Sprintf("Couldn't read config file: %s", err.Error()))
|
|
|
|
}
|
2018-01-25 19:21:55 +00:00
|
|
|
} else {
|
2020-04-13 18:16:28 +00:00
|
|
|
log.Warn("No config file passed with --config flag")
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|