-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.go
222 lines (189 loc) · 4.19 KB
/
app.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package cmd
import (
"bytes"
"fmt"
"io"
"os"
"github.com/goodhosts/hostsfile"
"github.com/olekukonko/tablewriter"
"github.com/sirupsen/logrus"
easy "github.com/t-tomalak/logrus-easy-formatter"
"github.com/urfave/cli/v2"
)
var (
version string
App = &cli.App{
Name: "goodhosts",
Usage: "manage your hosts file goodly",
Action: DefaultAction,
Commands: append(Commands(), &cli.Command{
Name: "version",
Usage: "",
Aliases: []string{"v", "ver"},
Action: func(c *cli.Context) error {
logrus.Infof(version)
return nil
},
}),
Before: func(ctx *cli.Context) error {
if ctx.Bool("debug") {
logrus.SetLevel(logrus.DebugLevel)
logrus.SetFormatter(&logrus.TextFormatter{})
} else {
// treat logrus like fmt.Print
logrus.SetFormatter(&easy.Formatter{
LogFormat: "%msg%",
})
}
if ctx.Bool("quiet") {
logrus.SetOutput(io.Discard)
}
return nil
},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Value: "",
Usage: fmt.Sprintf("override the default hosts: %s", hostsfile.HostsFilePath),
},
&cli.BoolFlag{
Name: "debug",
Aliases: []string{"d"},
Usage: "Turn on verbose debug logging",
},
&cli.BoolFlag{
Name: "quiet",
Aliases: []string{"q"},
Usage: "Turn on off all logging",
},
},
}
)
func Commands() []*cli.Command {
return []*cli.Command{
Add(),
Backup(),
Check(),
Clean(),
Debug(),
Edit(),
List(),
Remove(),
Restore(),
}
}
func Version(v, c, d string) {
version = fmt.Sprintf("goodhosts %s@%s built on %s", v, c, d)
}
func DefaultAction(c *cli.Context) error {
return list(c)
}
func loadHostsfile(c *cli.Context, readOnly bool) (*hostsfile.Hosts, error) {
customHostsfile := c.String("file")
var hf *hostsfile.Hosts
var err error
if customHostsfile != "" {
logrus.Debugf("loading custom hosts file: %s\n", customHostsfile)
hf, err = hostsfile.NewCustomHosts(customHostsfile)
} else {
logrus.Debugf("loading default hosts file: %s\n", hostsfile.HostsFilePath)
hf, err = hostsfile.NewHosts()
}
if err != nil {
return hf, err
}
if !readOnly && !hf.IsWritable() {
return hf, fmt.Errorf("Hostsfile %s not writable. Try running with elevated privileges.", hf.Path)
}
return hf, nil
}
func outputHostsfile(hf *hostsfile.Hosts, all bool) {
for _, line := range hf.Lines {
if !all {
if line.IsComment() || line.Raw == "" {
continue
}
}
lineOutput := line.Raw
if line.IsMalformed() {
logrus.Debugf("malformed line: %s", line.Err)
if !line.HasComment() {
lineOutput = fmt.Sprintf("%s #", lineOutput)
}
lineOutput = fmt.Sprintf("%s <<< Malformed!", lineOutput)
}
logrus.Info(lineOutput + "\n")
}
}
func debugFooter(c *cli.Context) error {
if c.Command.Name != "debug" && !c.Bool("debug") {
return nil
}
hf, err := loadHostsfile(c, true)
if err != nil {
return err
}
logrus.Infof("hosts file path: %s\n", hf.Path)
var comments, empty, entry, malformed int
for _, line := range hf.Lines {
if line.IsComment() {
comments++
}
if line.Raw == "" {
empty++
}
if line.IsMalformed() {
malformed++
}
if line.IsValid() {
entry++
}
}
data := [][]string{
{"lines", fmt.Sprintf("%d", len(hf.Lines))},
{"entries", fmt.Sprintf("%d", entry)},
{"comments", fmt.Sprintf("%d", comments)},
{"empty", fmt.Sprintf("%d", empty)},
{"malformed", fmt.Sprintf("%d", malformed)},
}
buf := &bytes.Buffer{}
table := tablewriter.NewWriter(buf)
table.SetHeader([]string{"Type", "Count"})
for _, v := range data {
table.Append(v)
}
table.Render()
logrus.Info(buf)
return nil
}
func copyFile(src, dst string) (err error) {
logrus.Debugf("copying file: src %s, dst %s",
src, dst)
var fi os.FileInfo
fi, err = os.Stat(src)
if err != nil {
return err
}
if !fi.Mode().IsRegular() {
return fmt.Errorf("%s is not a regular file", src)
}
var source *os.File
source, err = os.Open(src)
if err != nil {
return err
}
defer func() {
err = source.Close()
}()
var destination *os.File
destination, err = os.Create(dst)
if err != nil {
return err
}
defer func() {
err = destination.Close()
}()
_, err = io.Copy(destination, source)
return
}