aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/jira
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-09 20:52:19 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-09 20:52:19 +0100
commit2792c85b210e191cc51181bfeda66dee4bb9aa52 (patch)
tree6b12b987cd47752496b0856e70637df28a2d5224 /bridge/jira
parentb3d3612393387c83fa43f908dbb8e2a71068c834 (diff)
downloadgit-bug-2792c85b210e191cc51181bfeda66dee4bb9aa52.tar.gz
jira: use the new generalized prompts
Diffstat (limited to 'bridge/jira')
-rw-r--r--bridge/jira/config.go145
1 files changed, 40 insertions, 105 deletions
diff --git a/bridge/jira/config.go b/bridge/jira/config.go
index 406bed31..077f258a 100644
--- a/bridge/jira/config.go
+++ b/bridge/jira/config.go
@@ -1,13 +1,9 @@
package jira
import (
- "bufio"
"encoding/json"
"fmt"
"io/ioutil"
- "os"
- "strconv"
- "strings"
"github.com/pkg/errors"
@@ -30,33 +26,14 @@ client logs in with an actual username and password, is assigned a session, and
passes the session cookie with each request. JIRA Cloud and servers deployed
after October 1st 2019 must use "TOKEN" authentication. You must create a user
API token and the client will provide this along with your username with each
-request.
-
-Which authentication mechanism should this bridge use?
-[1]: SESSION
-[2]: TOKEN
-`
-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.
-`
+request.`
// Configure sets up the bridge configuration
func (g *Jira) Configure(repo *cache.RepoCache, params core.BridgeParams) (core.Configuration, error) {
conf := make(core.Configuration)
+ conf[core.ConfigKeyTarget] = target
+
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(
@@ -65,73 +42,77 @@ func (g *Jira) Configure(repo *cache.RepoCache, params core.BridgeParams) (core.
// }
if params.Owner != "" {
- return nil, fmt.Errorf("owner doesn't make sense for jira")
+ fmt.Println("warning: --owner is ineffective for a Jira bridge")
}
- serverURL = params.URL
- if url == "" {
+ serverURL := params.URL
+ if serverURL == "" {
// terminal prompt
- serverURL, err = prompt("JIRA server URL", "URL")
+ serverURL, err = input.Prompt("JIRA server URL", "URL", input.Required)
if err != nil {
return nil, err
}
}
+ conf[keyServer] = serverURL
- project = params.Project
+ project := params.Project
if project == "" {
- project, err = prompt("JIRA project key", "project")
+ project, err = input.Prompt("JIRA project key", "project", input.Required)
if err != nil {
return nil, err
}
}
+ conf[keyProject] = project
- credType, err := promptOptions(credTypeText, 1, 2)
- if err != nil {
- return nil, err
- }
-
- choice, err := promptOptions(credentialsText, 1, 3)
+ fmt.Println(credTypeText)
+ credType, err := input.PromptChoice("Authentication mechanism", []string{"SESSION", "TOKEN"})
if err != nil {
return nil, err
}
- if choice == 1 {
- credentialsFile, err = prompt("Credentials file path", "path")
- if err != nil {
- return nil, err
- }
+ switch credType {
+ case 1:
+ conf[keyCredentialsType] = "SESSION"
+ case 2:
+ conf[keyCredentialsType] = "TOKEN"
}
- username, err = prompt("JIRA username", "username")
+ fmt.Println("How would you like to store your JIRA login credentials?")
+ credTargetChoice, err := input.PromptChoice("Credential storage", []string{
+ "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.",
+ "git-config: Your credentials will be stored in the git config. Note that" +
+ "it will contain your JIRA password in clear text.",
+ "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.",
+ })
if err != nil {
return nil, err
}
- password, err = input.PromptPassword("Password", "password", input.Required)
+ username, err := input.Prompt("JIRA username", "username", input.Required)
if err != nil {
return nil, err
}
- jsonData, err := json.Marshal(
- &SessionQuery{Username: username, Password: password})
+ password, err := input.PromptPassword("Password", "password", input.Required)
if err != nil {
return nil, err
}
- conf[core.ConfigKeyTarget] = target
- conf[keyServer] = serverURL
- conf[keyProject] = project
-
- switch credType {
- case 1:
- conf[keyCredentialsType] = "SESSION"
- case 2:
- conf[keyCredentialsType] = "TOKEN"
- }
-
- switch choice {
+ switch credTargetChoice {
case 1:
+ // TODO: a validator to see if the path is writable ?
+ credentialsFile, err := input.Prompt("Credentials file path", "path", input.Required)
+ if err != nil {
+ return nil, err
+ }
conf[keyCredentialsFile] = credentialsFile
+ jsonData, err := json.Marshal(&SessionQuery{Username: username, Password: password})
+ if err != nil {
+ return nil, err
+ }
err = ioutil.WriteFile(credentialsFile, jsonData, 0644)
if err != nil {
return nil, errors.Wrap(
@@ -184,49 +165,3 @@ func (*Jira) ValidateConfig(conf core.Configuration) error {
return nil
}
-
-func promptOptions(description string, minVal, maxVal int) (int, error) {
- fmt.Print(description)
- 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 {
- fmt.Println("invalid input")
- continue
- }
- if index < minVal || index > maxVal {
- fmt.Println("invalid choice")
- 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
- }
-}