2017-09-17 03:26:19 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2019-01-17 13:26:16 +01:00
|
|
|
"github.com/bdlm/log"
|
|
|
|
"github.com/bdlm/std/logger"
|
2017-09-17 03:26:19 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
timestamps bool
|
2019-01-17 13:26:16 +01:00
|
|
|
loglevel uint32
|
2017-09-17 03:26:19 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// RootCmd represents the base command when called without any subcommands
|
|
|
|
var RootCmd = &cobra.Command{
|
|
|
|
Use: "yanic",
|
|
|
|
Short: "Yet another node info collector",
|
|
|
|
Long: `A respondd client that fetches, stores and publishes information about a Freifunk network.`,
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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() {
|
|
|
|
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().BoolVar(×tamps, "timestamps", false, "Enables timestamps for log output")
|
2019-01-17 13:26:16 +01:00
|
|
|
RootCmd.PersistentFlags().Uint32Var(&loglevel, "loglevel", 40, "Show log message starting at level")
|
2017-09-17 03:26:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
2019-01-17 13:26:16 +01:00
|
|
|
log.SetLevel(logger.Level(loglevel))
|
|
|
|
log.SetFormatter(&log.TextFormatter{
|
|
|
|
DisableTimestamp: timestamps,
|
|
|
|
})
|
2017-09-17 03:26:19 +02:00
|
|
|
}
|