88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"github.com/mitchellh/go-homedir"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var cfgFile string
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
var rootCmd = &cobra.Command{
|
|
Use: "dive",
|
|
Short: "Docker Image Visualizer & Explorer",
|
|
Long: `Docker Image Visualizer & Explorer`,
|
|
Args: cobra.ExactArgs(1),
|
|
Run: analyze,
|
|
}
|
|
|
|
// 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)
|
|
cobra.OnInitialize(initLogging)
|
|
|
|
// 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/.dive.yaml)")
|
|
|
|
// Cobra also supports local flags, which will only run
|
|
// when this action is called directly.
|
|
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
}
|
|
|
|
// initConfig reads in config file and ENV variables if set.
|
|
func initConfig() {
|
|
if cfgFile != "" {
|
|
// Use config file from the flag.
|
|
viper.SetConfigFile(cfgFile)
|
|
} else {
|
|
// Find home directory.
|
|
home, err := homedir.Dir()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// Search config in home directory with name ".dive" (without extension).
|
|
viper.AddConfigPath(home)
|
|
viper.SetConfigName(".dive")
|
|
}
|
|
|
|
viper.AutomaticEnv() // read in environment variables that match
|
|
|
|
// If a config file is found, read it in.
|
|
if err := viper.ReadInConfig(); err == nil {
|
|
fmt.Println("Using config file:", viper.ConfigFileUsed())
|
|
}
|
|
}
|
|
|
|
func initLogging() {
|
|
// TODO: clean this up and make more configurable
|
|
var filename string = "dive.log"
|
|
// create the log file if doesn't exist. And append to it if it already exists.
|
|
f, err := os.OpenFile(filename, os.O_WRONLY | os.O_APPEND | os.O_CREATE, 0644)
|
|
Formatter := new(log.TextFormatter)
|
|
Formatter.DisableTimestamp = true
|
|
log.SetFormatter(Formatter)
|
|
log.SetLevel(log.DebugLevel)
|
|
if err != nil {
|
|
// cannot open log file. Logging to stderr
|
|
fmt.Println(err)
|
|
}else{
|
|
log.SetOutput(f)
|
|
}
|
|
log.Info("Starting Dive...")
|
|
} |