mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
62 lines
1.4 KiB
Go
62 lines
1.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/cupcakearmy/autorestic/internal"
|
|
"github.com/cupcakearmy/autorestic/internal/colors"
|
|
"github.com/cupcakearmy/autorestic/internal/lock"
|
|
"github.com/spf13/cobra"
|
|
|
|
homedir "github.com/mitchellh/go-homedir"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func CheckErr(err error) {
|
|
if err != nil {
|
|
colors.Error.Fprintln(os.Stderr, "Error:", err)
|
|
lock.Unlock()
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
var cfgFile string
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Version: internal.VERSION,
|
|
Use: "autorestic",
|
|
Short: "CLI Wrapper for restic",
|
|
Long: "Documentation: https://autorestic.vercel.app",
|
|
}
|
|
|
|
func Execute() {
|
|
CheckErr(rootCmd.Execute())
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", "", "config file (default is $HOME/.autorestic.yml or ./.autorestic.yml)")
|
|
rootCmd.PersistentFlags().BoolVar(&internal.CI, "ci", false, "CI mode disabled interactive mode and colors and enables verbosity")
|
|
rootCmd.PersistentFlags().BoolVarP(&internal.VERBOSE, "verbose", "v", false, "verbose mode")
|
|
cobra.OnInitialize(initConfig)
|
|
}
|
|
|
|
func initConfig() {
|
|
if ci, _ := rootCmd.Flags().GetBool("ci"); ci {
|
|
colors.DisableColors(true)
|
|
internal.VERBOSE = true
|
|
}
|
|
|
|
if cfgFile != "" {
|
|
viper.SetConfigFile(cfgFile)
|
|
} else {
|
|
home, err := homedir.Dir()
|
|
CheckErr(err)
|
|
|
|
viper.AddConfigPath(".")
|
|
viper.AddConfigPath(home)
|
|
viper.SetConfigName(".autorestic")
|
|
}
|
|
viper.AutomaticEnv()
|
|
internal.GetConfig()
|
|
}
|