/* Copyright © 2023 Laura Kalb */ package cmd import ( "fmt" "os" "github.com/spf13/cobra" "github.com/spf13/viper" ) // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ Use: "ipam", Short: "A cli based ipam", Long: `A cli based ipam. You can manage subnets, single ip addresses within those, and the corresponding A records. PowerDNS and IPV6-Support will follow`, // Uncomment the following line if your bare application // has an action associated with it: // Run: func(cmd *cobra.Command, args []string) { }, } // 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() { err := rootCmd.Execute() if err != nil { os.Exit(1) } } func init() { // 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().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.ipam.yaml)") // Cobra also supports local flags, which will only run // when this action is called directly. cobra.OnInitialize(initConfig) rootCmd.Flags().BoolP("debug", "d", false, "Enable debug mode. (may print sensitive Information, so please watch out!)") // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)") } func initConfig() { // Find home directory. homedir, err := os.UserHomeDir() if err != nil { fmt.Println(err) os.Exit(1) } // Search config in home directory with name ".cobra" (without extension). viper.AddConfigPath(homedir + "/.ipam/") viper.SetConfigName("ipam.yml") viper.SetDefault("EnablePowerDNS", false) viper.SetDefault("DataPath", homedir+"/.ipam/data/") println(homedir + "/.ipam/") if err := viper.ReadInConfig(); err != nil { //if errfolder := os.MkdirAll(homedir+"/.ipam/", 0664); err != nil { // println("[ERROR] Can't create config dir!", errfolder) // os.Exit(1) //} //if errconfig := viper.WriteConfig(); err != nil { // println("[ERROR] Can't create config file!", errconfig) // os.Exit(1) //} println("[ERROR] Can't read config file!", err) } }