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
|
package jira
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"strconv"
"strings"
"syscall"
"time"
"github.com/pkg/errors"
"golang.org/x/crypto/ssh/terminal"
"github.com/MichaelMure/git-bug/bridge/core"
"github.com/MichaelMure/git-bug/repository"
"github.com/MichaelMure/git-bug/util/interrupt"
)
const (
target = "jira"
keyServer = "server"
keyProject = "project"
keyCredentialsFile = "credentials-file"
keyUsername = "username"
keyPassword = "password"
keyMapOpenID = "bug-open-id"
keyMapCloseID = "bug-closed-id"
keyCreateDefaults = "create-issue-defaults"
keyCreateGitBug = "create-issue-gitbug-id"
defaultTimeout = 60 * time.Second
)
// Configure sets up the bridge configuration
func (g *Jira) Configure(
repo repository.RepoCommon, params core.BridgeParams) (
core.Configuration, error) {
conf := make(core.Configuration)
var err error
var url string
var project string
var credentialsFile string
var username string
var password string
var serverURL string
if params.Token != "" || params.TokenStdin {
return nil, fmt.Errorf(
"JIRA session tokens are extremely short lived. We don't store them " +
"in the configuration, so they are not valid for this bridge.")
}
if params.Owner != "" {
return nil, fmt.Errorf("owner doesn't make sense for jira")
}
serverURL = params.URL
if url == "" {
// terminal prompt
serverURL, err = prompt("JIRA server URL", "URL")
if err != nil {
return nil, err
}
}
project = params.Project
if project == "" {
project, err = prompt("JIRA project key", "project")
if err != nil {
return nil, err
}
}
choice, err := promptCredentialOptions(serverURL)
if err != nil {
return nil, err
}
if choice == 1 {
credentialsFile, err = prompt("Credentials file path", "path")
if err != nil {
return nil, err
}
}
username, err = prompt("JIRA username", "username")
if err != nil {
return nil, err
}
password, err = PromptPassword()
if err != nil {
return nil, err
}
jsonData, err := json.Marshal(
&SessionQuery{Username: username, Password: password})
if err != nil {
return nil, err
}
fmt.Printf("Attempting to login with credentials...\n")
client := NewClient(serverURL, nil)
err = client.RefreshTokenRaw(jsonData)
if err != nil {
return nil, err
}
// verify access to the project with credentials
_, err = client.GetProject(project)
if err != nil {
return nil, fmt.Errorf(
"Project %s doesn't exist on %s, or authentication credentials for (%s)"+
" are invalid",
project, serverURL, username)
}
conf[core.KeyTarget] = target
conf[keyServer] = serverURL
conf[keyProject] = project
if choice == 1 {
conf[keyCredentialsFile] = credentialsFile
err = ioutil.WriteFile(credentialsFile, jsonData, 0644)
if err != nil {
return nil, errors.Wrap(
err, fmt.Sprintf("Unable to write credentials to %s", credentialsFile))
}
} else if choice == 2 {
conf[keyUsername] = username
conf[keyPassword] = password
} else if choice == 3 {
conf[keyUsername] = username
}
err = g.ValidateConfig(conf)
if err != nil {
return nil, err
}
return conf, nil
}
// ValidateConfig returns true if all required keys are present
func (*Jira) ValidateConfig(conf core.Configuration) error {
if v, ok := conf[core.KeyTarget]; !ok {
return fmt.Errorf("missing %s key", core.KeyTarget)
} else if v != target {
return fmt.Errorf("unexpected target name: %v", v)
}
if _, ok := conf[keyProject]; !ok {
return fmt.Errorf("missing %s key", keyProject)
}
return nil
}
const credentialsText = `
How would you like to store your JIRA login credentials?
[1]: sidecar JSON file: Your credentials will be stored in a JSON sidecar next
to your git config. Note that it will contain your JIRA password in clear
text.
[2]: git-config: Your credentials will be stored in the git config. Note that
it will contain your JIRA password in clear text.
[3]: username in config, askpass: Your username will be stored in the git
config. We will ask you for your password each time you execute the bridge.
`
func promptCredentialOptions(serverURL string) (int, error) {
fmt.Print(credentialsText)
for {
fmt.Print("Select option: ")
line, err := bufio.NewReader(os.Stdin).ReadString('\n')
fmt.Println()
if err != nil {
return -1, err
}
line = strings.TrimRight(line, "\n")
index, err := strconv.Atoi(line)
if err != nil || (index != 1 && index != 2 && index != 3) {
fmt.Println("invalid input")
continue
}
return index, nil
}
}
func prompt(description, name string) (string, error) {
for {
fmt.Printf("%s: ", description)
line, err := bufio.NewReader(os.Stdin).ReadString('\n')
if err != nil {
return "", err
}
line = strings.TrimRight(line, "\n")
if line == "" {
fmt.Printf("%s is empty\n", name)
continue
}
return line, nil
}
}
// PromptPassword performs interactive input collection to get the user password
func PromptPassword() (string, error) {
termState, err := terminal.GetState(int(syscall.Stdin))
if err != nil {
return "", err
}
cancel := interrupt.RegisterCleaner(func() error {
return terminal.Restore(int(syscall.Stdin), termState)
})
defer cancel()
for {
fmt.Print("password: ")
bytePassword, err := terminal.ReadPassword(int(syscall.Stdin))
// new line for coherent formatting, ReadPassword clip the normal new line
// entered by the user
fmt.Println()
if err != nil {
return "", err
}
if len(bytePassword) > 0 {
return string(bytePassword), nil
}
fmt.Println("password is empty")
}
}
|