schnutibox/cmd/root.go

161 lines
4.5 KiB
Go
Raw Normal View History

2021-08-05 09:43:35 +02:00
//nolint:exhaustivestruct,gochecknoglobals,gochecknoinits,gomnd
2021-03-30 19:59:26 +02:00
package cmd
import (
"fmt"
"os"
"strings"
"github.com/fsnotify/fsnotify"
"github.com/rs/zerolog"
2021-03-30 19:59:26 +02:00
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.xsfx.dev/schnutibox/internal/config"
"go.xsfx.dev/schnutibox/pkg/prepare"
2021-03-30 19:59:26 +02:00
)
var cfgFile string
var rootCmd = &cobra.Command{
Use: "schnutibox",
Run: func(cmd *cobra.Command, args []string) {
if err := cmd.Usage(); err != nil {
log.Error().Msg(err.Error())
}
},
}
// init initializes the command line interface.
2021-08-05 09:43:35 +02:00
//
// nolint:funlen
2021-03-30 19:59:26 +02:00
func init() {
2021-08-05 09:43:35 +02:00
// Root.
rootCmd.PersistentFlags().Bool("pprof", false, "Enables pprof for debugging")
// Run.
rootCmd.AddCommand(runCmd)
runCmd.Flags().StringVarP(&cfgFile, "config", "c", "", "config file")
if err := runCmd.MarkFlagRequired("config"); err != nil {
log.Fatal().Err(err).Msg("missing flag")
}
2021-08-05 09:43:35 +02:00
runCmd.Flags().Bool("ignore-reader", false, "Ignoring that the reader is missing")
// Prepare.
rootCmd.AddCommand(prepareCmd)
prepareCmd.Flags().BoolVar(&prepare.Cfg.ReadOnly, "read-only", false, "Setup read-only system")
prepareCmd.Flags().StringVarP(&prepare.Cfg.System, "system", "s", "raspbian", "Which kind of system to prepare")
prepareCmd.Flags().StringVar(&prepare.Cfg.SpotifyUsername, "spotify-username", "", "Spotify username")
prepareCmd.Flags().StringVar(&prepare.Cfg.SpotifyPassword, "spotify-password", "", "Spotify password")
prepareCmd.Flags().StringVar(&prepare.Cfg.SpotifyClientID, "spotify-client-id", "", "Spotify client ID")
prepareCmd.Flags().StringVar(&prepare.Cfg.SpotifyClientSecret, "spotify-client-secret", "", "Spotify client secret")
prepareCmd.Flags().StringVar(&prepare.Cfg.RFIDReader, "rfid-reader", "/dev/hidraw0", "dev path of rfid reader")
prepareCmd.Flags().StringVar(&prepare.Cfg.StopID, "stop-id", "", "ID of stop tag")
// Version.
rootCmd.AddCommand(versionCmd)
2021-05-03 14:51:53 +02:00
// Web.
rootCmd.AddCommand(webCmd)
webCmd.Flags().StringVarP(&cfgFile, "config", "c", "", "config file")
if err := webCmd.MarkFlagRequired("config"); err != nil {
log.Fatal().Err(err).Msg("missing flag")
}
2021-03-30 19:59:26 +02:00
2021-08-05 09:43:35 +02:00
// Timer.
rootCmd.AddCommand(timerCmd)
// Defaults.
viper.SetDefault("box.hostname", "localhost")
viper.SetDefault("box.port", 9999)
2021-05-05 08:32:35 +02:00
viper.SetDefault("box.grpc", 9998)
viper.SetDefault("mpd.hostname", "localhost")
viper.SetDefault("mpd.port", 6600)
viper.SetDefault("reader.dev", "/dev/hidraw0")
2021-08-05 09:43:35 +02:00
viper.SetDefault("reader.ignore", false)
viper.SetDefault("pprof", false)
// Environment handling.
2021-03-30 19:59:26 +02:00
viper.SetEnvPrefix("SCHNUTIBOX")
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
// Flags.
2021-08-05 09:43:35 +02:00
if err := viper.BindPFlag("pprof", rootCmd.PersistentFlags().Lookup("pprof")); err != nil {
log.Fatal().Err(err).Msg("could not bind flag")
}
2021-04-16 09:23:11 +02:00
if err := viper.BindPFlag("reader.dev", prepareCmd.Flags().Lookup("rfid-reader")); err != nil {
2021-08-05 09:43:35 +02:00
log.Fatal().Err(err).Msg("could not bind flag")
2021-04-16 09:23:11 +02:00
}
2021-08-05 09:43:35 +02:00
if err := viper.BindPFlag("reader.ignore", runCmd.Flags().Lookup("ignore-reader")); err != nil {
log.Fatal().Err(err).Msg("could not bind flag")
}
}
// initConfig loads the config file.
// fatal defines if config parsing should end in a fatal error or not.
func initConfig(fatal bool) {
logger := log.With().Str("config", cfgFile).Logger()
// Parse config file.
2021-03-30 19:59:26 +02:00
if cfgFile != "" {
viper.SetConfigFile(cfgFile)
2021-05-03 14:51:53 +02:00
parseConfig(logger, fatal)
2021-03-30 19:59:26 +02:00
} else {
logger.Fatal().Msg("missing config file")
}
viper.WatchConfig()
viper.OnConfigChange(func(e fsnotify.Event) {
logger.Info().Msg("config file changed")
parseConfig(logger, false)
})
}
// parseConfig parses the config and does some tests if required fields are there.
// Its also possible to decide if parsing should end up in a fatal or just an error.
func parseConfig(logger zerolog.Logger, fatal bool) {
if err := viper.ReadInConfig(); err != nil {
if fatal {
logger.Fatal().Err(err).Msg("error loading config file")
}
logger.Error().Err(err).Msg("error loading config file")
return
}
if err := viper.Unmarshal(&config.Cfg); err != nil {
if fatal {
logger.Fatal().Err(err).Msg("could not unmarshal config")
}
logger.Error().Err(err).Msg("could not unmarshal config")
return
}
if err := config.Cfg.Require(); err != nil {
if fatal {
logger.Fatal().Err(err).Msg("missing config parts")
}
logger.Error().Err(err).Msg("missing config parts")
return
}
2021-03-30 19:59:26 +02:00
}
// Execute executes the commandline interface.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}