-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
user_input.go
57 lines (47 loc) · 1.17 KB
/
user_input.go
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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package cmdx
import (
"bufio"
"fmt"
"io"
"os"
"strings"
"github.com/pkg/errors"
)
// asks for confirmation with the question string s and reads the answer
// pass nil to use os.Stdin and os.Stdout
func AskForConfirmation(s string, stdin io.Reader, stdout io.Writer) bool {
if stdin == nil {
stdin = os.Stdin
}
if stdout == nil {
stdout = os.Stdout
}
ok, err := AskScannerForConfirmation(s, bufio.NewReader(stdin), stdout)
if err != nil {
Must(err, "Unable to confirm: %s", err)
}
return ok
}
func AskScannerForConfirmation(s string, reader *bufio.Reader, stdout io.Writer) (bool, error) {
if stdout == nil {
stdout = os.Stdout
}
for {
_, err := fmt.Fprintf(stdout, "%s [y/n]: ", s)
if err != nil {
return false, errors.Wrap(err, "unable to print to stdout")
}
response, err := reader.ReadString('\n')
if err != nil {
return false, errors.Wrap(err, "unable to read from stdin")
}
response = strings.ToLower(strings.TrimSpace(response))
if response == "y" || response == "yes" {
return true, nil
} else if response == "n" || response == "no" {
return false, nil
}
}
}