-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgist.go
120 lines (113 loc) · 3.06 KB
/
gist.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
package main
import (
"context"
"flag"
"fmt"
"github.com/google/go-github/github"
"github.com/mitchellh/go-homedir"
"github.com/pkg/errors"
"golang.org/x/oauth2"
"golang.org/x/sync/errgroup"
"io/ioutil"
"log"
"os"
"path"
)
const config = ".gistrc"
func checkConf(path string) string {
key, err := ioutil.ReadFile(path)
if err != nil {
log.Fatal("set key first, use 'gist -s <key>'")
}
if string(key) == "" {
log.Fatal("set key first, use 'gist -s <key>'")
}
return string(key)
}
func stringAddress(v string) *string { return &v }
func checkError(err error) {
if err != nil {
log.Fatal(err)
}
}
func getFiles(files []string) (map[github.GistFilename]github.GistFile, error) {
eg := errgroup.Group{}
results := map[github.GistFilename]github.GistFile{}
for _, file := range files {
file := file
eg.Go(func() error {
content, err := ioutil.ReadFile(file)
fmt.Fprintf(os.Stdout, "--> Parsing file: %15s\n", file)
if err != nil {
return errors.Wrapf(err,
"failed to get file content: %s", file)
}
results[github.GistFilename(path.Base(file))] = github.GistFile{Filename: stringAddress(string(path.Base(file))), Content: stringAddress(string(content))}
return nil
})
}
if err := eg.Wait(); err != nil {
return nil, errors.Wrap(err, "one of the goroutines failed")
}
return results, nil
}
func main() {
home, err := homedir.Dir()
checkError(err)
configFile := path.Join(home, config)
help := flag.Bool("h", false, "show help")
version := flag.Bool("v", false, "show version")
setKey := flag.Bool("s", false, "set token for auth")
delKey := flag.Bool("r", false, "remove token")
isPublic := flag.Bool("p", false, "create public gist?")
description := flag.String("d", "published by 'zcong1993/gist' with golang", "add custom description")
flag.Parse()
if *version {
Version()
os.Exit(0)
}
if *help {
fmt.Println("\nUsage :\n\tgist [flag] [files...]")
fmt.Println("\nFlags :")
fmt.Println()
fmt.Println("\t -s, \t set token for auth")
fmt.Println("\t -r, \t remove token")
fmt.Println("\t -p, \t create public gist?")
fmt.Println("\t -d, \t add custom description, default is `published by 'zcong1993/gist' with golang`")
fmt.Println("\t -h, \t show help")
os.Exit(0)
}
if *setKey {
if len(flag.Args()) == 0 {
log.Fatal("token is required")
}
err = ioutil.WriteFile(configFile, []byte(flag.Args()[0]), 0644)
checkError(err)
println("token set success")
os.Exit(0)
}
if *delKey {
err = ioutil.WriteFile(configFile, []byte(""), 0644)
checkError(err)
println("token delete success")
os.Exit(0)
}
key := checkConf(configFile)
files := flag.Args()
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: key},
)
tc := oauth2.NewClient(ctx, ts)
client := github.NewClient(tc)
postFiles, err := getFiles(files)
checkError(err)
gist := github.Gist{
Public: isPublic,
Files: postFiles,
Description: description,
}
g, _, err := client.Gists.Create(context.Background(), &gist)
checkError(err)
fmt.Printf("\nDone! The gist url is %s\n", *g.HTMLURL)
}