mirror of
https://gitea.com/gitea/tea.git
synced 2024-12-04 14:46:40 -05:00
32b7b771cc
show comments of PR TODO: there needs to be a way to force running non-interactively add `tea comment` to post a comment add --comments flag, prompt only if necessary don't prompt if --comments is provided, or output is piped show comments for issues, add --comments flag tea comment: print resulting comment Merge branch 'master' into issue-172-comments remove debug print statement unrelated, but better than opening another PR for this ;) Merge remote-tracking branch 'upstream/master' into issue-172-comments ret err fix lint Co-authored-by: Norwin Roosen <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/313 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package interact
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/AlecAivazis/survey/v2"
|
|
)
|
|
|
|
// PromptMultiline runs a textfield-style prompt and blocks until input was made.
|
|
func PromptMultiline(message string) (content string, err error) {
|
|
err = survey.AskOne(&survey.Multiline{Message: message}, &content)
|
|
return
|
|
}
|
|
|
|
// PromptPassword asks for a password and blocks until input was made.
|
|
func PromptPassword(name string) (pass string, err error) {
|
|
promptPW := &survey.Password{Message: name + " password:"}
|
|
err = survey.AskOne(promptPW, &pass, survey.WithValidator(survey.Required))
|
|
return
|
|
}
|
|
|
|
// promptRepoSlug interactively prompts for a Gitea repository or returns the current one
|
|
func promptRepoSlug(defaultOwner, defaultRepo string) (owner, repo string, err error) {
|
|
prompt := "Target repo:"
|
|
required := true
|
|
if len(defaultOwner) != 0 && len(defaultRepo) != 0 {
|
|
prompt = fmt.Sprintf("Target repo [%s/%s]:", defaultOwner, defaultRepo)
|
|
required = false
|
|
}
|
|
var repoSlug string
|
|
|
|
owner = defaultOwner
|
|
repo = defaultRepo
|
|
|
|
err = survey.AskOne(
|
|
&survey.Input{Message: prompt},
|
|
&repoSlug,
|
|
survey.WithValidator(func(input interface{}) error {
|
|
if str, ok := input.(string); ok {
|
|
if !required && len(str) == 0 {
|
|
return nil
|
|
}
|
|
split := strings.Split(str, "/")
|
|
if len(split) != 2 || len(split[0]) == 0 || len(split[1]) == 0 {
|
|
return fmt.Errorf("must follow the <owner>/<repo> syntax")
|
|
}
|
|
} else {
|
|
return fmt.Errorf("invalid result type")
|
|
}
|
|
return nil
|
|
}),
|
|
)
|
|
|
|
if err == nil && len(repoSlug) != 0 {
|
|
repoSlugSplit := strings.Split(repoSlug, "/")
|
|
owner = repoSlugSplit[0]
|
|
repo = repoSlugSplit[1]
|
|
}
|
|
return
|
|
}
|