-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
161 lines (139 loc) · 3.6 KB
/
main.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
* Copyright 2020 Sebastian Werner
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package main
import (
"os"
"github.com/sirupsen/logrus"
lib "github.com/tawalaya/GoGitBackup/backup"
"github.com/urfave/cli/v2"
prefixed "github.com/x-cray/logrus-prefixed-formatter"
"gopkg.in/yaml.v2"
)
var (
Build string
)
var logger = logrus.New()
var log *logrus.Entry
func init() {
if Build == "" {
Build = "Debug"
}
logger.Formatter = new(prefixed.TextFormatter)
logger.SetLevel(logrus.InfoLevel)
log = logger.WithFields(logrus.Fields{
"prefix": "git-backup",
"build": Build,
})
}
func main() {
app := &cli.App{
Name: "gitback",
Usage: "Utility to backup your git(Hub|lab) accounts.",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Aliases: []string{"c"},
Usage: "Load configuration from `FILE`",
Value: "./config.yml",
},
&cli.BoolFlag{
Name: "verbose",
Aliases: []string{"v"},
Usage: "Enables verbose logging",
},
&cli.StringFlag{
Name: "log-file",
Aliases: []string{"l"},
Usage: "Log to `FILE` as well as stdout",
Required: false,
},
},
Commands: []*cli.Command{
{
Name: "backup",
Aliases: []string{"b"},
Usage: "performs backup of all git(hub/lab) accounts that can be accessed.",
Action: func(c *cli.Context) error {
client := preflight(c)
defer client.Close()
client.Do()
return nil
},
},
{
Name: "check",
Aliases: []string{"c"},
Usage: "check what we can backup using this utility and also validates your config ;)",
Action: func(c *cli.Context) error {
client := preflight(c)
defer client.Close()
return client.Check()
},
},
{
Name: "update",
Aliases: []string{"u"},
Usage: "updates all repos with new remotes based on the config",
Action: func(c *cli.Context) error {
client := preflight(c)
defer client.Close()
return client.Update()
},
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}
func preflight(c *cli.Context) *lib.GoGitBackup {
bytes, err := os.ReadFile(c.String("config"))
if err != nil {
log.Fatalf("failed to read config at %s %+v", c.String("config"), err)
}
var config lib.Config
err = yaml.Unmarshal(bytes, &config)
if err != nil {
log.Fatalf("failed to parse config, %+v", err)
}
if c.Bool("verbose") {
logger.SetLevel(logrus.DebugLevel)
log.Debugf("using config:\n %+v", config)
} else {
logger.SetLevel(logrus.ErrorLevel)
}
var logfile *os.File
if c.String("log-file") != "" {
logfile, err = os.OpenFile(c.String("log-file"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
log.Debugf("failed to open error log file %e", err)
}
} else {
logfile, err = os.OpenFile("error.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
log.Error("failed to open error log file %e", err)
}
}
client, err := lib.NewGoBackup(&config, logfile)
lib.SetLogger(logger)
lib.SetLog(log)
if err != nil {
log.Fatalf("failed to create backup client due to %+v", err)
}
return client
}