ipld-eth-server/cmd/root.go

126 lines
3.7 KiB
Go
Raw Normal View History

// VulcanizeDB
// Copyright © 2019 Vulcanize
// 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/>.
package cmd
import (
"fmt"
2021-12-03 14:34:25 +00:00
"path/filepath"
"strings"
2021-12-03 14:34:25 +00:00
"github.com/joho/godotenv"
"github.com/spf13/cobra"
"github.com/spf13/viper"
2021-12-03 14:34:25 +00:00
"github.com/cerc-io/ipld-eth-server/v5/pkg/log"
"github.com/cerc-io/ipld-eth-server/v5/pkg/prom"
)
var (
2020-05-30 03:02:47 +00:00
cfgFile string
2022-01-13 17:44:03 +00:00
envFile string
2020-05-30 03:02:47 +00:00
subCommand string
logWithCommand log.Entry
)
var rootCmd = &cobra.Command{
2020-08-31 15:58:16 +00:00
Use: "ipld-eth-server",
PersistentPreRun: initFuncs,
}
func Execute() {
log.Info("----- Starting IPFS blockchain watcher -----")
if err := rootCmd.Execute(); err != nil {
2018-11-21 04:47:01 +00:00
log.Fatal(err)
}
}
func initFuncs(cmd *cobra.Command, args []string) {
log.Init()
2020-10-19 13:07:29 +00:00
if viper.GetBool("metrics") {
prom.Init()
}
2020-10-27 17:42:38 +00:00
if viper.GetBool("prom.http") {
2020-10-19 13:07:29 +00:00
addr := fmt.Sprintf(
"%s:%s",
2020-10-27 17:42:38 +00:00
viper.GetString("prom.http.addr"),
viper.GetString("prom.http.port"),
2020-10-19 13:07:29 +00:00
)
prom.Serve(addr)
}
}
func init() {
cobra.OnInitialize(initConfig)
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file location")
2022-01-13 17:44:03 +00:00
rootCmd.PersistentFlags().StringVar(&envFile, "env", "", "environment file location")
2018-01-25 21:46:55 +00:00
rootCmd.PersistentFlags().String("client-ipcPath", "", "location of geth.ipc file")
2020-10-27 17:42:38 +00:00
rootCmd.PersistentFlags().String("log-level", log.InfoLevel.String(), "log level (trace, debug, info, warn, error, fatal, panic)")
rootCmd.PersistentFlags().String("log-file", "", "file path for logging")
2020-10-19 13:07:29 +00:00
rootCmd.PersistentFlags().Bool("metrics", false, "enable metrics")
2020-10-27 17:42:38 +00:00
rootCmd.PersistentFlags().Bool("prom-http", false, "enable http service for prometheus")
rootCmd.PersistentFlags().String("prom-http-addr", "127.0.0.1", "http host for prometheus")
rootCmd.PersistentFlags().String("prom-http-port", "8090", "http port for prometheus")
2020-10-19 13:07:29 +00:00
viper.BindPFlag("log.level", rootCmd.PersistentFlags().Lookup("log-level"))
2020-10-27 17:42:38 +00:00
viper.BindPFlag("log.file", rootCmd.PersistentFlags().Lookup("log-file"))
2020-10-19 13:07:29 +00:00
viper.BindPFlag("metrics", rootCmd.PersistentFlags().Lookup("metrics"))
2020-10-27 17:42:38 +00:00
viper.BindPFlag("prom.http", rootCmd.PersistentFlags().Lookup("prom-http"))
viper.BindPFlag("prom.http.addr", rootCmd.PersistentFlags().Lookup("prom-http-addr"))
viper.BindPFlag("prom.http.port", rootCmd.PersistentFlags().Lookup("prom-http-port"))
}
func initConfig() {
2022-01-13 17:44:03 +00:00
if cfgFile == "" && envFile == "" {
log.Fatal("No configuration file specified, use --config , --env flag to provide configuration")
2021-12-03 14:34:25 +00:00
}
2022-01-13 17:44:03 +00:00
if cfgFile != "" {
if filepath.Ext(cfgFile) != ".toml" {
log.Fatal("Provide .toml file for --config flag")
}
viper.SetConfigFile(cfgFile)
if err := viper.ReadInConfig(); err != nil {
log.Fatalf("Couldn't read config file: %s", err.Error())
}
log.Infof("Using config file: %s", viper.ConfigFileUsed())
2021-12-03 14:34:25 +00:00
}
2022-01-13 17:44:03 +00:00
if envFile != "" {
if filepath.Ext(envFile) != ".env" {
log.Fatal("Provide .env file for --env flag")
}
2021-12-03 14:34:25 +00:00
2022-01-13 17:44:03 +00:00
if err := godotenv.Load(envFile); err != nil {
log.Fatalf("Failed to set environment variable from env file: %s", err.Error())
2021-12-03 14:34:25 +00:00
}
2022-01-13 17:44:03 +00:00
log.Infof("Using env file: %s", envFile)
}
}