-
Notifications
You must be signed in to change notification settings - Fork 110
/
repo.go
249 lines (214 loc) · 4.63 KB
/
repo.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package main
import (
"fmt"
"os"
"path/filepath"
"sort"
"text/tabwriter"
hd "github.com/mitchellh/go-homedir"
cli "github.com/urfave/cli/v2"
gx "github.com/whyrusleeping/gx/gxutil"
. "github.com/whyrusleeping/stump"
)
func cfgPath(global bool) (string, error) {
if global {
home, err := hd.Dir()
if err != nil {
return "", fmt.Errorf("$HOME not set, cannot find global .gxrc")
}
return filepath.Join(home, gx.CfgFileName), nil
}
cwd, err := os.Getwd()
if err != nil {
return "", err
}
return filepath.Join(cwd, gx.CfgFileName), nil
}
var RepoCommand = cli.Command{
Name: "repo",
Usage: "manage set of tracked repositories",
Subcommands: []*cli.Command{
&RepoAddCommand,
&RepoRmCommand,
&RepoListCommand,
&RepoQueryCommand,
&RepoUpdateCommand,
},
}
var RepoAddCommand = cli.Command{
Name: "add",
Usage: "add a naming repository",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "global",
Usage: "add repository to global set",
},
},
Action: func(c *cli.Context) error {
global := c.Bool("global")
cfp, err := cfgPath(global)
if err != nil {
return err
}
cfg, err := gx.LoadConfigFrom(cfp)
if err != nil {
return err
}
if c.NArg() != 2 {
Fatal("Must specify name and repo-path")
}
name := c.Args().Get(0)
rpath := c.Args().Get(1)
// make sure we can fetch it
_, err = pm.FetchRepo(rpath, false)
if err != nil {
return fmt.Errorf("finding repo: %s", err)
}
if global {
cfg.Repos[name] = rpath
} else {
cfg.ExtraRepos[name] = rpath
}
return gx.WriteConfig(cfg, cfp)
},
}
var RepoRmCommand = cli.Command{
Name: "rm",
Usage: "remove a repo from tracking",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "global",
Usage: "remove repository from global set",
},
},
Action: func(c *cli.Context) error {
global := c.Bool("global")
cfp, err := cfgPath(global)
if err != nil {
return err
}
cfg, err := gx.LoadConfigFrom(cfp)
if err != nil {
return err
}
if !c.Args().Present() {
return fmt.Errorf("specify repo to remove")
}
name := c.Args().First()
if global {
if _, ok := cfg.Repos[name]; !ok {
return fmt.Errorf("no repo named %s", name)
}
delete(cfg.Repos, name)
} else {
if _, ok := cfg.ExtraRepos[name]; !ok {
return fmt.Errorf("no repo named %s", name)
}
delete(cfg.ExtraRepos, name)
}
return gx.WriteConfig(cfg, cfp)
},
}
var RepoListCommand = cli.Command{
Name: "list",
Usage: "list tracked repos or packages in a repo",
Action: func(c *cli.Context) error {
cfg, err := gx.LoadConfig()
if err != nil {
return err
}
if !c.Args().Present() {
tabPrintSortedMap(nil, cfg.GetRepos())
return nil
}
rname := c.Args().First()
r, ok := cfg.GetRepos()[rname]
if !ok {
return fmt.Errorf("no such repo: %s", rname)
}
repo, err := pm.FetchRepo(r, true)
if err != nil {
return err
}
tabPrintSortedMap(nil, repo)
return nil
},
}
func tabPrintSortedMap(headers []string, m map[string]string) {
var names []string
for k := range m {
names = append(names, k)
}
sort.Strings(names)
w := tabwriter.NewWriter(os.Stdout, 12, 4, 1, ' ', 0)
if headers != nil {
fmt.Fprintf(w, "%s\t%s\n", headers[0], headers[1])
}
for _, n := range names {
fmt.Fprintf(w, "%s\t%s\n", n, m[n])
}
w.Flush()
}
var RepoQueryCommand = cli.Command{
Name: "query",
Usage: "search for a package in repos",
Action: func(c *cli.Context) error {
if !c.Args().Present() {
return fmt.Errorf("must specify search criteria")
}
searcharg := c.Args().First()
out, err := pm.QueryRepos(searcharg)
if err != nil {
return err
}
if len(out) > 0 {
tabPrintSortedMap([]string{"repo", "ref"}, out)
} else {
return fmt.Errorf("not found")
}
return nil
},
}
var RepoUpdateCommand = cli.Command{
Name: "update",
Usage: "update cached versions of repos",
Action: func(c *cli.Context) error {
cfg, err := gx.LoadConfig()
if err != nil {
return err
}
repos := cfg.GetRepos()
var args []string
if c.Args().Present() {
args = c.Args().Slice()
} else {
for k := range repos {
args = append(args, k)
}
}
for _, r := range args {
path, ok := repos[r]
if !ok {
return fmt.Errorf("unknown repo: %s", r)
}
val, ok, err := gx.CheckCacheFile(path)
if err != nil {
return fmt.Errorf("checking cache: %s", err)
}
nval, err := pm.ResolveRepoName(path, false)
if err != nil {
return fmt.Errorf("resolving repo: %s", err)
}
if ok {
if nval == val {
Log("%s: up to date", r)
} else {
Log("%s: updated from %s to %s", r, val, nval)
}
} else if !ok {
Log("%s: %s", r, nval)
}
}
return nil
},
}