neoneo-go/cli/input/input.go

58 lines
1.2 KiB
Go
Raw Normal View History

package input
import (
"io"
"os"
"syscall"
2021-02-10 08:53:01 +00:00
"golang.org/x/term"
)
// Terminal is a terminal used for input. If `nil`, stdin is used.
2021-02-10 08:53:01 +00:00
var Terminal *term.Terminal
// ReadWriter combiner reader and writer.
type ReadWriter struct {
io.Reader
io.Writer
}
// ReadLine reads line from the input without trailing '\n'.
2021-02-10 08:53:01 +00:00
func ReadLine(prompt string) (string, error) {
trm := Terminal
if trm == nil {
s, err := term.MakeRaw(syscall.Stdin)
if err != nil {
2021-02-10 08:53:01 +00:00
panic(err)
}
defer func() { _ = term.Restore(syscall.Stdin, s) }()
2021-02-10 08:53:01 +00:00
trm = term.NewTerminal(ReadWriter{
Reader: os.Stdin,
Writer: os.Stdout,
}, "")
}
2021-02-10 08:53:01 +00:00
return readLine(trm, prompt)
}
2021-02-10 08:53:01 +00:00
func readLine(trm *term.Terminal, prompt string) (string, error) {
_, err := trm.Write([]byte(prompt))
if err != nil {
return "", err
}
2021-02-10 08:53:01 +00:00
return trm.ReadLine()
}
// ReadPassword reads user password with prompt.
func ReadPassword(prompt string) (string, error) {
trm := Terminal
if trm == nil {
s, err := term.MakeRaw(syscall.Stdin)
if err != nil {
panic(err)
}
defer func() { _ = term.Restore(syscall.Stdin, s) }()
2021-02-10 08:53:01 +00:00
trm = term.NewTerminal(ReadWriter{os.Stdin, os.Stdout}, prompt)
}
return trm.ReadPassword(prompt)
}