-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathconfigs.go
229 lines (184 loc) · 4.37 KB
/
configs.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
package github
import (
"encoding/json"
"fmt"
"github.com/howeyc/gopass"
"github.com/jingweno/gh/utils"
"io"
"io/ioutil"
"os"
"path/filepath"
"strconv"
)
var (
defaultConfigsFile = filepath.Join(os.Getenv("HOME"), ".config", "gh")
)
type Credentials struct {
Host string `json:"host"`
User string `json:"user"`
AccessToken string `json:"access_token"`
}
type Configs struct {
Credentials []Credentials `json:"credentials"`
}
func (c *Configs) PromptFor(host string) *Credentials {
cc := c.find(host)
if cc == nil {
user := c.PromptForUser()
pass := c.PromptForPassword(host, user)
// Create Client with a stub Credentials
client := Client{Credentials: &Credentials{Host: host}}
token, err := client.FindOrCreateToken(user, pass, "")
if err != nil {
if ce, ok := err.(*ClientError); ok && ce.Is2FAError() {
code := c.PromptForOTP()
token, err = client.FindOrCreateToken(user, pass, code)
}
}
utils.Check(err)
cc = &Credentials{Host: host, User: user, AccessToken: token}
c.Credentials = append(c.Credentials, *cc)
err = saveTo(configsFile(), c)
utils.Check(err)
}
return cc
}
func (c *Configs) PromptForUser() (user string) {
user = os.Getenv("GITHUB_USER")
if user != "" {
return
}
fmt.Printf("%s username: ", GitHubHost)
fmt.Scanln(&user)
return
}
func (c *Configs) PromptForPassword(host, user string) (pass string) {
pass = os.Getenv("GITHUB_PASSWORD")
if pass != "" {
return
}
fmt.Printf("%s password for %s (never stored): ", host, user)
if isTerminal(os.Stdout.Fd()) {
pass = string(gopass.GetPasswd())
} else {
fmt.Scanln(&pass)
}
return
}
func (c *Configs) PromptForOTP() string {
var code string
fmt.Print("two-factor authentication code: ")
fmt.Scanln(&code)
return code
}
func (c *Configs) find(host string) *Credentials {
for _, t := range c.Credentials {
if t.Host == host {
return &t
}
}
return nil
}
func saveTo(filename string, v interface{}) error {
err := os.MkdirAll(filepath.Dir(filename), 0771)
if err != nil {
return err
}
f, err := os.Create(filename)
if err != nil {
return err
}
defer f.Close()
enc := json.NewEncoder(f)
return enc.Encode(v)
}
func loadFrom(filename string, c *Configs) error {
return loadFromFile(filename, c)
}
// Function to load deprecated configuration.
// It's not intended to be used.
func loadFromDeprecated(filename string, c *[]Credentials) error {
return loadFromFile(filename, c)
}
func loadFromFile(filename string, v interface{}) error {
f, err := os.Open(filename)
if err != nil {
return err
}
defer f.Close()
dec := json.NewDecoder(f)
for {
if err := dec.Decode(v); err == io.EOF {
break
} else if err != nil {
return err
}
}
return nil
}
func configsFile() string {
configsFile := os.Getenv("GH_CONFIG")
if configsFile == "" {
configsFile = defaultConfigsFile
}
return configsFile
}
func CurrentConfigs() *Configs {
c := &Configs{}
configFile := configsFile()
err := loadFrom(configFile, c)
if err != nil {
// Try deprecated configuration
var creds []Credentials
err := loadFromDeprecated(configsFile(), &creds)
if err != nil {
creds = make([]Credentials, 0)
}
c.Credentials = creds
saveTo(configFile, c)
}
return c
}
func (c *Configs) DefaultCredentials() (credentials *Credentials) {
if GitHubHostEnv != "" {
credentials = c.PromptFor(GitHubHostEnv)
} else if len(c.Credentials) > 0 {
credentials = c.selectCredentials()
} else {
credentials = c.PromptFor(DefaultHost())
}
return
}
func (c *Configs) selectCredentials() *Credentials {
options := len(c.Credentials)
if options == 1 {
return &c.Credentials[0]
}
prompt := "Select host:\n"
for idx, creds := range c.Credentials {
prompt += fmt.Sprintf(" %d. %s\n", idx+1, creds.Host)
}
prompt += fmt.Sprint("> ")
fmt.Printf(prompt)
var index string
fmt.Scanln(&index)
i, err := strconv.Atoi(index)
if err != nil || i < 1 || i > options {
utils.Check(fmt.Errorf("Error: must enter a number [1-%d]", options))
}
return &c.Credentials[i-1]
}
func (c *Configs) Save() error {
return saveTo(configsFile(), c)
}
// Public for testing purpose
func CreateTestConfigs(user, token string) *Configs {
f, _ := ioutil.TempFile("", "test-config")
defaultConfigsFile = f.Name()
creds := []Credentials{
{User: "jingweno", AccessToken: "123", Host: GitHubHost},
}
c := &Configs{Credentials: creds}
saveTo(f.Name(), c)
return c
}