-
Notifications
You must be signed in to change notification settings - Fork 0
/
cleanup.go
81 lines (65 loc) · 1.28 KB
/
cleanup.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
package main
import (
"os"
"github.com/urfave/cli/v2"
)
type Cleanup struct {
ctx *Context
}
func (me *Cleanup) Flags() []cli.Flag {
return []cli.Flag{}
}
func (me *Cleanup) Run(c *cli.Context) error {
configfiles := getConfigFiles(c)
for _, filename := range configfiles {
err := me.RunFile(filename)
if err != nil {
log.Warnf("RunFile %s: %s", filename, err)
}
}
return nil
}
func (me *Cleanup) RunFile(path string) error {
log.Tracef("runfile %s", path)
cfg := GetDefaultConfig()
err := cfg.LoadYaml(path)
if err != nil {
return err
}
if log.IsTrace() {
cfg.PrintConfig()
}
run, err := CompileRun(cfg.Symlinks)
if err != nil {
return err
}
configRef := make(map[string]bool, 0)
for _, l := range run.Links {
configRef[l.Link] = true
}
log.Infof("Finding files that are not referenced in config")
pwd, err := os.Getwd()
if err != nil {
return err
}
names, err := ListDir(pwd)
for _, name := range names {
_, found := configRef[name]
if found == false {
log.Infof("%s not mentioned in config", name)
}
}
return nil
}
func ListDir(path string) ([]string, error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
names, err := f.Readdirnames(1000)
if err != nil {
return nil, err
}
return names, nil
}