neo-go/cli/input/input.go

72 lines
1.7 KiB
Go
Raw Normal View History

package input
import (
"errors"
"fmt"
"io"
"os"
"syscall"
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
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 a 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 {
2021-11-01 08:15:35 +00:00
s, err := term.MakeRaw(int(syscall.Stdin))
if err != nil {
return "", err
}
2021-11-01 08:15:35 +00:00
defer func() { _ = term.Restore(int(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 the user's password with prompt.
2021-02-10 08:53:01 +00:00
func ReadPassword(prompt string) (string, error) {
trm := Terminal
2022-05-12 09:06:53 +00:00
if trm != nil {
return trm.ReadPassword(prompt)
2021-02-10 08:53:01 +00:00
}
2022-05-12 09:06:53 +00:00
return readSecurePassword(prompt)
}
// ConfirmTx asks for a confirmation to send the tx.
func ConfirmTx(w io.Writer, tx *transaction.Transaction) error {
fmt.Fprintf(w, "Network fee: %s\n", fixedn.Fixed8(tx.NetworkFee))
fmt.Fprintf(w, "System fee: %s\n", fixedn.Fixed8(tx.SystemFee))
fmt.Fprintf(w, "Total fee: %s\n", fixedn.Fixed8(tx.NetworkFee+tx.SystemFee))
ln, err := ReadLine("Relay transaction (y|N)> ")
if err != nil {
return err
}
if 0 < len(ln) && (ln[0] == 'y' || ln[0] == 'Y') {
return nil
}
return errors.New("cancelled")
}