forked from gruntwork-io/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
410 lines (345 loc) · 9.86 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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
// Package main is the Highlander of namespaces.
// *There can be only one.*
package main
import (
"fmt"
"os"
"path"
"github.com/urfave/cli"
)
// VERSION : set at build time with -ldflags
var VERSION string
// TIMESTAMP : set at build time with -ldflags
var TIMESTAMP string
// fetchOpts : user defined opts
type fetchOpts struct {
repoUrl string
commitSha string
branch string
tagConstraint string
apiToken string
fromPaths []string
relAssets []string
unpack bool
verbose bool
whichTag bool
gpgPubKey string
destDir string
timeout int
}
// releaseDl : data to complete download of a release asset
type releaseDl struct {
name string
localPath string
tag string
verbose bool
}
const optRepo = "repo"
const optCommit = "commit"
const optBranch = "branch"
const optTag = "tag"
const optApiToken = "api-token"
const optFromPath = "from-path"
const optReleaseAsset = "release-asset"
const optUnpack = "unpack"
const optGpgPubKey = "gpg-public-key"
const optVerbose = "verbose"
const optWhichTag = "which-tag"
const optTimeout = "timeout"
func main() {
app := cli.NewApp()
defaultFlagStringer := cli.FlagStringer
// prefer help text to separate long flag descriptions with newline.
cli.FlagStringer = func(f cli.Flag) string {
return fmt.Sprintf("%s\n\t", defaultFlagStringer(f))
}
app.Name = "ghfetch"
app.Usage = txtUsage + " " + TIMESTAMP
app.UsageText = usageLead
app.Version = VERSION
app.Flags = []cli.Flag{
cli.StringFlag{
Name: optRepo,
Usage: txtRepo,
},
cli.StringFlag{
Name: optCommit,
Usage: txtCommit,
},
cli.StringFlag{
Name: optBranch,
Usage: txtBranch,
},
cli.StringFlag{
Name: optTag,
Usage: txtTag,
},
cli.StringSliceFlag{
Name: optFromPath,
Usage: txtFromPath,
},
cli.StringSliceFlag{
Name: optReleaseAsset,
Usage: txtReleaseAsset,
},
cli.BoolFlag{
Name: optUnpack,
Usage: txtUnpack,
},
cli.BoolFlag{
Name: optVerbose,
Usage: txtVerbose,
},
cli.BoolFlag{
Name: optWhichTag,
Usage: txtWhichTag,
},
cli.StringFlag{
Name: optGpgPubKey,
Usage: txtGpgPubKey,
},
cli.StringFlag{
Name: optApiToken,
Usage: txtToken,
EnvVar: "API_TOKEN,API_OAUTH_TOKEN,GITHUB_TOKEN,GITHUB_OAUTH_TOKEN",
},
cli.IntFlag{
Name: optTimeout,
Value: 120,
Usage: txtTimeout,
},
}
app.Action = runFetchWrapper
// Run the definition of App.Action
app.Run(os.Args)
}
// We just want to call runFetch(), but app.Action won't permit us to return an error, so call a wrapper function instead.
func runFetchWrapper(c *cli.Context) {
err := runFetch(c)
if err != nil {
fmt.Fprintf(os.Stderr, "ERROR: %s\n", err)
os.Exit(1)
}
}
// Run the ghfetch program
func runFetch(c *cli.Context) (err error) {
o := parseOptions(c)
if err := validateOptions(o); err != nil {
return err
}
if o.apiToken == "" {
fmt.Println("WARNING: no api token provided - rate-limited and can't access private repos")
}
o.setTimeout()
// Prepare the vars we'll need to download
r, err := urlToGitHubRepo(o.repoUrl, o.apiToken)
if err != nil {
return fmt.Errorf("Error occurred while parsing GitHub URL: %s", err)
}
if err := o.do(r); err != nil {
return err
}
return
}
func parseOptions(c *cli.Context) fetchOpts {
localDownloadPath := c.Args().First()
return fetchOpts{
repoUrl: c.String(optRepo),
commitSha: c.String(optCommit),
branch: c.String(optBranch),
tagConstraint: c.String(optTag),
apiToken: c.String(optApiToken),
fromPaths: c.StringSlice(optFromPath),
relAssets: c.StringSlice(optReleaseAsset),
timeout: c.Int(optTimeout),
unpack: c.Bool(optUnpack),
verbose: c.Bool(optVerbose),
whichTag: c.Bool(optWhichTag),
gpgPubKey: c.String(optGpgPubKey),
destDir: localDownloadPath,
}
}
func validateOptions(o fetchOpts) error {
if o.repoUrl == "" {
return fmt.Errorf("The --%s flag is required.", optRepo)
}
if o.destDir == "" && !o.whichTag {
return fmt.Errorf("Final argument must be the destination dir (unless calling --which-tag)")
}
if o.tagConstraint == "" && o.commitSha == "" && o.branch == "" {
return fmt.Errorf(
"You must specify only one of --%s, --%s, or --%s.",
optTag, optCommit, optBranch,
)
}
if len(o.relAssets) > 0 && o.tagConstraint == "" {
return fmt.Errorf("The --%s flag can only be used with --%s.", optReleaseAsset, optTag)
}
if o.tagConstraint == "" && o.whichTag {
return fmt.Errorf("The --%s flag makes no sense without --%s.", optWhichTag, optTag)
}
if len(o.relAssets) > 0 && len(o.fromPaths) > 0 {
return fmt.Errorf("Specify only --%s or --%s, not both.", optReleaseAsset, optFromPath)
}
if len(o.relAssets) == 0 && o.unpack {
return fmt.Errorf("The --%s flag can only be used with --%s.", optUnpack, optReleaseAsset)
}
if o.gpgPubKey != "" {
if len(o.relAssets) == 0 {
return fmt.Errorf("The --%s flag can only be used with --%s.", optGpgPubKey, optReleaseAsset)
}
// check file is readable
reader, err := os.Open(o.gpgPubKey)
if err != nil {
return fmt.Errorf("GPG public key %s is not a readable file.", o.gpgPubKey)
}
defer reader.Close()
}
if o.timeout <= 0 {
return fmt.Errorf("--timeout expects a POSITIVE, non-zero number of seconds!, not %d", o.timeout)
}
return nil
}
// Download the specified source files from the given repo
func (o *fetchOpts) downloadFromPaths(r repo, latestTag string) error {
if len(o.fromPaths) == 0 {
return nil
}
// We respect commit Hierarchy: "commitSha > GitTag > branch"
// Note that commitSha and branch are empty unless user passed values.
// bestFitTag() ensures that we have a GitTag value regardless
// of whether the user passed one or not.
// So if the user specified nothing, we'd download the latest valid tag.
c := commit{
Repo: r,
GitTag: latestTag,
branch: o.branch,
commitSha: o.commitSha,
}
// Download that release as a .zip file
if c.commitSha != "" {
fmt.Printf("Downloading git commit \"%s\" of %s ...\n", c.commitSha, r.Url)
} else if c.branch != "" {
fmt.Printf("Downloading latest commit from branch \"%s\" of %s ...\n", c.branch, r.Url)
} else if c.GitTag != "" {
fmt.Printf("Downloading tag \"%s\" of %s ...\n", latestTag, r.Url)
} else {
return fmt.Errorf("The commit sha, tag, and branch name are all empty.")
}
localZipFilePath, _, err := getSrcZip(c, r.Token)
if err != nil {
return fmt.Errorf("Error occurred while downloading zip file from GitHub repo: %s", err)
}
defer cleanupZipFile(localZipFilePath)
// Unzip and move the files we need to our destination
for _, fromPath := range o.fromPaths {
fmt.Printf("Extracting files from <repo>%s to %s ...\n", fromPath, o.destDir)
if err := extractFiles(localZipFilePath, fromPath, o.destDir); err != nil {
return fmt.Errorf("Error occurred while extracting files from GitHub zip file: %s", err)
}
}
fmt.Println("Download and file extraction complete.")
return nil
}
// newAsset ():
//
func newAsset(name string, path string, tag string, verbose bool) releaseDl {
return releaseDl{name, path, tag, verbose}
}
// downloadReleaseAssetts ():
// Download the user-defined release attachments.
// Also performs GPG check if needed.
func (o *fetchOpts) downloadReleaseAssets(r repo, tag string) error {
if len(o.relAssets) == 0 {
return nil
}
release, err := GetGitHubReleaseInfo(r, tag)
if err != nil {
fmt.Println("getting release info")
return err
}
// ... create download dir
os.MkdirAll(o.destDir, 0755)
for _, assetName := range o.relAssets {
asset := findAssetInRelease(assetName, release)
if asset == nil {
return fmt.Errorf("Could not find asset %s in release %s", assetName, tag)
}
assetPath := path.Join(o.destDir, asset.Name)
a := newAsset(assetName, assetPath, tag, o.verbose)
fmt.Printf("Downloading release asset %s to %s\n", asset.Name, assetPath)
if err := FetchReleaseAsset(r, asset.Id, assetPath); err != nil {
return err
}
if o.gpgPubKey != "" {
err := a.verifyGpg(o.gpgPubKey, release, r)
if err != nil {
fmt.Printf("Deleting unverified asset %s\n", assetPath)
if remErr := os.Remove(assetPath); remErr != nil {
return fmt.Errorf("%s\nCould not delete it: %s!", err, remErr)
}
return err
}
}
if o.unpack {
if err := o.doUnpack(assetPath); err != nil {
return err
}
}
}
fmt.Println("Download of release assets complete.")
return nil
}
func (a *releaseDl) verifyGpg(gpgKey string, rel release, gr repo) error {
asc := findAscInRelease(a.name, rel)
ascPath := fmt.Sprintf("%s.asc", a.localPath)
if asc == nil {
return fmt.Errorf("No %s.asc or %s.asc.txt in release %s", a.name, a.name, a.tag)
}
if a.verbose {
fmt.Printf("Downloading gpg sig %s to %s\n", asc.Name, ascPath)
}
if err := FetchReleaseAsset(gr, asc.Id, ascPath); err != nil {
return err
}
err := gpgVerify(gpgKey, ascPath, a.localPath)
if warning := os.Remove(ascPath); warning != nil {
fmt.Printf("Could not remove sig file %s\n", ascPath)
}
return err
}
func findAssetInRelease(assetName string, release release) *relAsset {
for _, asset := range release.Assets {
if asset.Name == assetName {
return &asset
}
}
return nil
}
func findAscInRelease(assetName string, release release) *relAsset {
for _, asset := range release.Assets {
asc := fmt.Sprintf("%s.asc", assetName)
ascTxt := fmt.Sprintf("%s.asc.txt", assetName)
if asset.Name == asc || asset.Name == ascTxt {
return &asset
}
}
return nil
}
// Delete the given zip file.
func cleanupZipFile(localZipFilePath string) error {
err := os.Remove(localZipFilePath)
if err != nil {
return fmt.Errorf("Failed to delete local zip file at %s", localZipFilePath)
}
return nil
}
// Return ture if the given slice contains the given string
func stringInSlice(s string, slice []string) bool {
for _, val := range slice {
if val == s {
return true
}
}
return false
}