ipam/cmd/root.go

90 lines
2.5 KiB
Go
Raw Normal View History

2023-03-10 17:52:20 +01:00
/*
Copyright © 2023 Laura Kalb <dev@lauka.net>
*/
package cmd
import (
2023-03-12 16:58:30 +01:00
"fmt"
2023-03-10 17:52:20 +01:00
"os"
"github.com/spf13/cobra"
2023-03-12 16:58:30 +01:00
"github.com/spf13/viper"
2023-03-10 17:52:20 +01:00
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
2023-03-12 16:58:30 +01:00
Use: "ipam",
Short: "A cli based ipam",
Long: `A cli based ipam.
2023-03-11 13:49:35 +01:00
You can manage subnets, single ip addresses within those, and the corresponding A records.
2023-03-12 16:58:30 +01:00
PowerDNS and IPV6-Support will follow`,
2023-03-10 17:52:20 +01:00
// 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.
2023-03-12 16:58:30 +01:00
// rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.ipam.yaml)")
2023-03-10 17:52:20 +01:00
// Cobra also supports local flags, which will only run
// when this action is called directly.
2023-03-12 16:58:30 +01:00
cobra.OnInitialize(initConfig)
2023-03-10 17:52:20 +01:00
rootCmd.Flags().BoolP("debug", "d", false, "Enable debug mode. (may print sensitive Information, so please watch out!)")
2023-03-12 16:58:30 +01:00
// 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)
}
2023-03-12 21:27:02 +01:00
var ipamdir string = homedir + "/.ipam/"
2023-03-12 16:58:30 +01:00
// Search config in home directory with name ".cobra" (without extension).
2023-03-12 21:27:02 +01:00
viper.AddConfigPath(ipamdir)
viper.SetConfigName("ipam")
viper.SetConfigType("yaml")
2023-03-12 16:58:30 +01:00
viper.SetDefault("DataPath", ipamdir+"data/")
2023-03-16 20:57:21 +01:00
viper.SetDefault("PowerDNSEnabled", false)
viper.SetDefault("PowerDNSEndpoint", "")
viper.SetDefault("PowerDNSApiKey", "")
2023-03-12 16:58:30 +01:00
if err := viper.ReadInConfig(); err != nil {
2023-03-12 21:27:02 +01:00
_, patherr := os.Stat(ipamdir)
if patherr != nil {
mkerr := os.MkdirAll(ipamdir, 0755)
if mkerr != nil {
println("[ERROR] Can't create ipam config directory!", mkerr)
}
}
// I have no idea what's happening here...
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
writeerr := viper.SafeWriteConfig()
if writeerr != nil {
println("[ERROR] Can't write config file!", writeerr)
}
} else {
println("[ERROR] Can't read config file!", err)
}
2023-03-12 16:58:30 +01:00
}
2023-03-10 17:52:20 +01:00
}