-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.go
75 lines (65 loc) · 1.75 KB
/
root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package main
import (
"io"
"os"
"strings"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/stenic/go-git-backup/pkg/app"
)
var (
v string
logFormat string
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "git-backup",
RunE: func(cmd *cobra.Command, args []string) error {
return app.Run(cmd.Context(), app.Platform{
Name: "github",
Organisation: viper.GetString("github.organisation"),
})
},
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
return setUpLogs(os.Stdout, v)
},
}
// 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() {
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
viper.SetDefault("log.level", "info")
rootCmd.PersistentFlags().StringVarP(&v, "verbosity", "v", viper.GetString("log.level"), "Log level (debug, info, warn, error, fatal, panic")
rootCmd.PersistentFlags().StringVar(&logFormat, "log-format", "text", "Log format (text, json)")
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func main() {
Execute()
}
func setUpLogs(out io.Writer, level string) error {
logrus.SetOutput(out)
lvl, err := logrus.ParseLevel(level)
if err != nil {
return err
}
logrus.SetLevel(lvl)
switch logFormat {
case "json":
logrus.SetFormatter(&logrus.JSONFormatter{})
case "text":
customFormatter := new(logrus.TextFormatter)
customFormatter.DisableTimestamp = true
logrus.SetFormatter(customFormatter)
default:
logrus.Error("Unknown log format: ", logFormat)
}
return nil
}