Skip to content
Snippets Groups Projects
root.go 4.22 KiB
Newer Older
  • Learn to ignore specific revisions
  • Manuel Kieweg's avatar
    Manuel Kieweg committed
    /*
    Copyright © 2021 Manuel Kieweg <mail@manuelkieweg.de>
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.
    
    3. Neither the name of the copyright holder nor the names of its contributors
       may be used to endorse or promote products derived from this software
       without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
    */
    
    package cmd
    
    import (
    	"fmt"
    	"os"
    
    	"time"
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    
    	"code.fbi.h-da.de/danet/csbi"
    	log "github.com/sirupsen/logrus"
    	"github.com/spf13/cobra"
    
    	homedir "github.com/mitchellh/go-homedir"
    	"github.com/spf13/viper"
    )
    
    var cfgFile string
    var bindAddr string
    var accessToken string
    var logLevel string
    
    
    var repoBasePath string
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    
    // rootCmd represents the base command when called without any subcommands
    var rootCmd = &cobra.Command{
    	Use:   "csbi",
    	Short: "start the csbi orchestrator",
    	Run: func(cmd *cobra.Command, args []string) {
    		csbi.Run(bindAddr)
    	},
    }
    
    // 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)
    
    	rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.csbi.yaml)")
    	rootCmd.PersistentFlags().StringVar(&bindAddr, "address", ":55056", "address to listen on")
    	rootCmd.PersistentFlags().StringVar(&accessToken, "access-token", "", "access token for private repositories")
    	rootCmd.PersistentFlags().StringVar(&logLevel, "log-level", "", "log level 'debug' or 'trace'")
    
    	rootCmd.PersistentFlags().StringVar(&repoBasePath, "repository-base-path", "./models", "path to the repository base path (default is ./models)")
    
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    }
    
    // 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 ".csbi" (without extension).
    		viper.AddConfigPath(home)
    		viper.SetConfigName(".csbi")
    	}
    
    	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())
    	}
    
    	log.SetReportCaller(true)
    	switch logLevel {
    	case "trace":
    		log.SetLevel(log.TraceLevel)
    	case "debug":
    		log.SetLevel(log.DebugLevel)
    	default:
    		log.SetLevel(log.InfoLevel)
    		log.SetFormatter(&log.JSONFormatter{})
    		log.SetReportCaller(false)
    	}
    
    	if accessToken != "" {
    
    		log.Info("set $REPOSITORY_ACCESS_TOKEN")
    		viper.Set("repository-access-token", accessToken)
    	}
    	if err := viper.BindPFlags(rootCmd.Flags()); err != nil {
    		log.Fatal(err)
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    	}
    
    	viper.SetDefault("repository-base-path", "./models")
    	viper.SetDefault("orchestrator-shutown-timeout", time.Duration(1)*time.Minute)
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    	viper.SetDefault("docker-orchestrator-network", "csbi_csbi-dev-net")
    
    	log.WithFields(viper.AllSettings()).Debug("current viper config")
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    }