aboutsummaryrefslogtreecommitdiffstats
path: root/input/prompt.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-03-01 23:17:57 +0100
committerGitHub <noreply@github.com>2019-03-01 23:17:57 +0100
commit7260ca05bc3588c0572887a7d8f1b897c7fc13da (patch)
tree66854358df3cb9de651f7688556ec5a4b8ab1868 /input/prompt.go
parent0aefae6fcca5786f2c898029c3d6282f760f2c63 (diff)
parentb6bed784e5664819250aac20b2b9690879ee6ab1 (diff)
downloadgit-bug-7260ca05bc3588c0572887a7d8f1b897c7fc13da.tar.gz
Merge pull request #89 from MichaelMure/identity
WIP identity in git
Diffstat (limited to 'input/prompt.go')
-rw-r--r--input/prompt.go44
1 files changed, 44 insertions, 0 deletions
diff --git a/input/prompt.go b/input/prompt.go
new file mode 100644
index 00000000..6036c062
--- /dev/null
+++ b/input/prompt.go
@@ -0,0 +1,44 @@
+package input
+
+import (
+ "bufio"
+ "fmt"
+ "os"
+ "strings"
+)
+
+func PromptValue(name string, preValue string) (string, error) {
+ return promptValue(name, preValue, false)
+}
+
+func PromptValueRequired(name string, preValue string) (string, error) {
+ return promptValue(name, preValue, true)
+}
+
+func promptValue(name string, preValue string, required bool) (string, error) {
+ for {
+ if preValue != "" {
+ _, _ = fmt.Fprintf(os.Stderr, "%s [%s]: ", name, preValue)
+ } else {
+ _, _ = fmt.Fprintf(os.Stderr, "%s: ", name)
+ }
+
+ line, err := bufio.NewReader(os.Stdin).ReadString('\n')
+ if err != nil {
+ return "", err
+ }
+
+ line = strings.TrimSpace(line)
+
+ if preValue != "" && line == "" {
+ return preValue, nil
+ }
+
+ if required && line == "" {
+ _, _ = fmt.Fprintf(os.Stderr, "%s is empty\n", name)
+ continue
+ }
+
+ return line, nil
+ }
+}