-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompts.go
55 lines (47 loc) · 942 Bytes
/
prompts.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
package main
import (
"errors"
"fmt"
"github.com/manifoldco/promptui"
)
func validateText(input string) error {
if len(input) == 0 {
return errors.New("This field is required")
}
return nil
}
func addSSHConnectionPrompt() (string, error) {
prompt := promptui.Prompt{
Label: "Enter Host",
Validate: validateText,
}
host, err := prompt.Run()
if err != nil {
return "", err
}
prompt = promptui.Prompt{
Label: "Enter Username",
Validate: validateText,
}
username, err := prompt.Run()
if err != nil {
return "", err
}
prompt = promptui.Prompt{
Label: "Enter Password",
Mask: '*',
Validate: validateText,
}
password, err := prompt.Run()
if err != nil {
return "", err
}
prompt = promptui.Prompt{
Label: "Enter Description",
}
description, err := prompt.Run()
if err != nil {
return "", err
}
return fmt.Sprintf("%s@%s\t%s\t%s", username, host, password, description), nil
}