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"
|
2021-12-03 14:34:25 +00:00
|
|
|
"path/filepath"
|
2019-02-06 12:27:30 +00:00
|
|
|
"strings"
|
2018-01-25 19:21:55 +00:00
|
|
|
|
2021-12-03 14:34:25 +00:00
|
|
|
"github.com/joho/godotenv"
|
2018-01-25 19:21:55 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
2021-12-03 14:34:25 +00:00
|
|
|
|
2023-04-14 06:26:46 +00:00
|
|
|
"github.com/cerc-io/ipld-eth-server/v5/pkg/log"
|
|
|
|
"github.com/cerc-io/ipld-eth-server/v5/pkg/prom"
|
2018-01-25 19:21:55 +00:00
|
|
|
)
|
|
|
|
|
2018-02-08 16:12:08 +00:00
|
|
|
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
|
2018-02-08 16:12:08 +00:00
|
|
|
)
|
2018-01-25 19:21:55 +00:00
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
2020-08-31 15:58:16 +00:00
|
|
|
Use: "ipld-eth-server",
|
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) {
|
2023-01-21 01:39:26 +00:00
|
|
|
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)
|
|
|
|
}
|
2019-06-26 00:24:56 +00:00
|
|
|
}
|
|
|
|
|
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")
|
2022-01-13 17:44:03 +00:00
|
|
|
rootCmd.PersistentFlags().StringVar(&envFile, "env", "", "environment file location")
|
2021-04-14 15:53:44 +00:00
|
|
|
|
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")
|
2018-01-25 19:21:55 +00:00
|
|
|
|
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
|
|
|
|
2019-06-26 00:24:56 +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"))
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2018-01-25 19:21:55 +00:00
|
|
|
}
|
|
|
|
}
|