-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
382 lines (345 loc) · 8.53 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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
package main
import (
"crhuber/kelp/pkg/config"
"crhuber/kelp/pkg/install"
"crhuber/kelp/pkg/utils"
"errors"
"fmt"
"log"
"os"
"path/filepath"
"strings"
"github.com/urfave/cli/v2"
)
var (
version = "dev"
commit = "none"
date = "unknown"
)
func main() {
// default config
var home, _ = os.UserHomeDir()
var KelpConf = filepath.Join(home, "/.kelp/kelp.json")
app := &cli.App{
Name: "kelp",
Version: version,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "config",
Aliases: []string{"c"},
Value: KelpConf,
Usage: "path to kelp config file",
EnvVars: []string{"KELP_CONFIG"},
},
},
Commands: []*cli.Command{
{
Name: "add",
Usage: "add a new package to config",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "release",
Aliases: []string{"r"},
Value: "latest",
Usage: "release for package",
},
&cli.BoolFlag{
Name: "install",
Aliases: []string{"i"},
Value: false,
Usage: "also install package",
},
},
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
ownerRepo := strings.Split(project, "/")
if len(ownerRepo) < 2 {
return fmt.Errorf("use owner/repo format")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
err = kc.AddPackage(ownerRepo[0], ownerRepo[1], cCtx.String("release"))
if err != nil {
return fmt.Errorf("%s", err)
}
// save config
err = kc.Save()
if err != nil {
return fmt.Errorf("%s", err)
}
// auto install
if cCtx.Bool("install") {
err = install.Install(ownerRepo[0], ownerRepo[1], cCtx.String("release"))
if err != nil {
return err
}
}
return nil
},
},
{
Name: "browse",
Usage: "browse to project github page",
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
p, err := kc.GetPackage(project)
if err != nil {
return fmt.Errorf("%s", err)
}
config.Browse(p.Owner, p.Repo)
return nil
},
},
{
Name: "doctor",
Usage: "checks if packages are installed properly",
Action: func(cCtx *cli.Context) error {
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
kc.Doctor()
return nil
},
},
{
Name: "get",
Usage: "get package details",
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
p, err := kc.GetPackage(project)
if err != nil {
return fmt.Errorf("%s", err)
}
fmt.Printf("[%s/%s]\n", p.Owner, p.Repo)
fmt.Printf("Release: %s\n", p.Release)
fmt.Printf("Description: %s\n", p.Description)
fmt.Printf("Url: https://github.com/%s/%s\n", p.Owner, p.Repo)
fmt.Printf("Binary: %s\n", p.Binary)
fmt.Printf("Updated At: %s\n", p.UpdatedAt)
return nil
},
},
{
Name: "init",
Usage: "initialize kelp",
Action: func(cCtx *cli.Context) error {
err := config.Initialize(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
return nil
},
},
{
Name: "inspect",
Usage: "inspect kelp bin directory",
Action: func(cCtx *cli.Context) error {
config.Inspect()
return nil
},
},
{
Name: "install",
Usage: "install kelp package",
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
kp, err := kc.GetPackage(project)
if err != nil {
return fmt.Errorf("%s", err)
}
err = install.Install(kp.Owner, kp.Repo, kp.Release)
if err != nil {
return err
}
return nil
},
},
{
Name: "list",
Aliases: []string{"ls"},
Usage: "list kelp packages",
Action: func(cCtx *cli.Context) error {
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
kc.List()
return nil
},
},
{
Name: "remove",
Aliases: []string{"rm"},
Usage: "remove a package from config and disk",
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
kp, err := kc.GetPackage(project)
if err != nil {
return fmt.Errorf("%s", err)
}
// remove from config
err = kc.RemovePackage(kp.Repo)
if err != nil {
return fmt.Errorf("%s", err)
}
// save config
err = kc.Save()
if err != nil {
return fmt.Errorf("error saving: %s", err)
}
return nil
},
},
{
Name: "set",
Usage: "set package configuration in config",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "release",
Aliases: []string{"r"},
Value: "latest",
Usage: "release for package",
},
&cli.StringFlag{
Name: "description",
Aliases: []string{"d"},
Value: "",
Usage: "description of package",
},
&cli.StringFlag{
Name: "binary",
Aliases: []string{"b"},
Value: "",
Usage: "alias of binary",
},
},
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
err = kc.SetPackage(project, cCtx.String("release"), cCtx.String("description"), cCtx.String("binary"))
if err != nil {
return fmt.Errorf("%s", err)
}
// save config
err = kc.Save()
if err != nil {
return fmt.Errorf("%s", err)
}
return nil
},
},
{
Name: "update",
Usage: "update kelp package in config",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "install",
Aliases: []string{"i"},
Value: false,
Usage: "also install package",
},
},
Action: func(cCtx *cli.Context) error {
project := cCtx.Args().First()
if project == "" {
return errors.New("project argument required")
}
// load config
kc, err := config.Load(cCtx.String("config"))
if err != nil {
return fmt.Errorf("%s", err)
}
kp, err := kc.GetPackage(project)
if err != nil {
return fmt.Errorf("%s", err)
}
// handle http packages
if strings.HasPrefix(kp.Release, "http") {
return errors.New("update functionality not supported for http packages")
}
ghr, err := utils.GetGithubRelease(kp.Owner, kp.Repo, "latest")
if err != nil {
return fmt.Errorf("%s", err)
}
if ghr.TagName == kp.Release {
fmt.Printf("Latest release %s already matches release %s in kelp config", ghr.TagName, kp.Release)
return nil
}
fmt.Printf("Latest release %s. Kelp configured release %s. Update config [y/n] ? : ", ghr.TagName, kp.Release)
var confirmation string
confirmation = strings.TrimSpace(confirmation)
confirmation = strings.ToLower(confirmation)
// Taking input from user
fmt.Scanln(&confirmation)
if confirmation == "y" || confirmation == "yes" {
err = kc.SetPackage(kp.Repo, ghr.TagName, "", "")
if err != nil {
return fmt.Errorf("%s", err)
}
// save config
err = kc.Save()
if err != nil {
return fmt.Errorf("%s", err)
}
}
// auto install
if cCtx.Bool("install") {
err = install.Install(kp.Owner, kp.Repo, ghr.TagName)
if err != nil {
return err
}
}
return nil
},
},
},
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}