Merge pull request #262 from MichaelMure/bridge

bridge: trim inputs during bridge configuration
This commit is contained in:
Michael Muré 2019-11-26 19:07:14 +01:00 committed by GitHub
commit 26a6269241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

View File

@ -101,7 +101,7 @@ func (g *Github) Configure(repo repository.RepoCommon, params core.BridgeParams)
if err != nil {
return nil, fmt.Errorf("reading from stdin: %v", err)
}
token = strings.TrimSuffix(token, "\n")
token = strings.TrimSpace(token)
} else if params.TokenId != "" {
tokenId = entity.Id(params.TokenId)
} else {
@ -268,7 +268,7 @@ func promptTokenOptions(repo repository.RepoCommon, owner, project string) (*cor
return nil, err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || index < 1 || index > len(tokens)+2 {
@ -320,7 +320,7 @@ func promptToken() (string, error) {
return "", err
}
token := strings.TrimRight(line, "\n")
token := strings.TrimSpace(line)
if re.MatchString(token) {
return token, nil
}
@ -409,7 +409,7 @@ func promptUsername() (string, error) {
return "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
ok, err := validateUsername(line)
if err != nil {
@ -442,7 +442,7 @@ func promptURL(remotes map[string]string) (string, string, error) {
return "", "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || index < 0 || index > len(validRemotes) {
@ -470,7 +470,7 @@ func promptURL(remotes map[string]string) (string, string, error) {
return "", "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
if line == "" {
fmt.Println("URL is empty")
continue
@ -643,7 +643,7 @@ func promptProjectVisibility() (bool, error) {
return false, err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || (index != 1 && index != 2) {

View File

@ -67,7 +67,7 @@ func (g *Gitlab) Configure(repo repository.RepoCommon, params core.BridgeParams)
if err != nil {
return nil, fmt.Errorf("reading from stdin: %v", err)
}
token = strings.TrimSuffix(token, "\n")
token = strings.TrimSpace(token)
} else if params.TokenId != "" {
tokenId = entity.Id(params.TokenId)
} else {
@ -154,7 +154,7 @@ func promptTokenOptions(repo repository.RepoCommon) (*core.Token, error) {
return nil, err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || index < 1 || index > len(tokens)+1 {
fmt.Println("invalid input")
@ -196,7 +196,7 @@ func promptToken() (string, error) {
return "", err
}
token := strings.TrimRight(line, "\n")
token := strings.TrimSpace(line)
if re.MatchString(token) {
return token, nil
}
@ -224,7 +224,7 @@ func promptURL(remotes map[string]string) (string, error) {
return "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || index < 0 || index > len(validRemotes) {
@ -250,7 +250,7 @@ func promptURL(remotes map[string]string) (string, error) {
return "", err
}
url := strings.TrimRight(line, "\n")
url := strings.TrimSpace(line)
if line == "" {
fmt.Println("URL is empty")
continue

View File

@ -82,7 +82,7 @@ func promptTarget() (string, error) {
return "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
index, err := strconv.Atoi(line)
if err != nil || index <= 0 || index > len(targets) {
@ -109,7 +109,7 @@ func promptName(repo repository.RepoCommon) (string, error) {
return "", err
}
line = strings.TrimRight(line, "\n")
line = strings.TrimSpace(line)
name := line
if defaultExist && name == "" {