aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/input.go
blob: 523d5a58706e38363194460771f01a8c10d07bd8 (plain) (blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright 2016 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.

package utils

import (
    "fmt"
    "strings"

    "github.com/peterh/liner"
)

// Holds the stdin line reader.
// Only this reader may be used for input because it keeps
// an internal buffer.
var Stdin = newUserInputReader()

type userInputReader struct {
    *liner.State
    warned     bool
    supported  bool
    normalMode liner.ModeApplier
    rawMode    liner.ModeApplier
}

func newUserInputReader() *userInputReader {
    r := new(userInputReader)
    // Get the original mode before calling NewLiner.
    // This is usually regular "cooked" mode where characters echo.
    normalMode, _ := liner.TerminalMode()
    // Turn on liner. It switches to raw mode.
    r.State = liner.NewLiner()
    rawMode, err := liner.TerminalMode()
    if err != nil || !liner.TerminalSupported() {
        r.supported = false
    } else {
        r.supported = true
        r.normalMode = normalMode
        r.rawMode = rawMode
        // Switch back to normal mode while we're not prompting.
        normalMode.ApplyMode()
    }
    return r
}

func (r *userInputReader) Prompt(prompt string) (string, error) {
    if r.supported {
        r.rawMode.ApplyMode()
        defer r.normalMode.ApplyMode()
    } else {
        // liner tries to be smart about printing the prompt
        // and doesn't print anything if input is redirected.
        // Un-smart it by printing the prompt always.
        fmt.Print(prompt)
        prompt = ""
        defer fmt.Println()
    }
    return r.State.Prompt(prompt)
}

func (r *userInputReader) PasswordPrompt(prompt string) (passwd string, err error) {
    if r.supported {
        r.rawMode.ApplyMode()
        defer r.normalMode.ApplyMode()
        return r.State.PasswordPrompt(prompt)
    }
    if !r.warned {
        fmt.Println("!! Unsupported terminal, password will be echoed.")
        r.warned = true
    }
    // Just as in Prompt, handle printing the prompt here instead of relying on liner.
    fmt.Print(prompt)
    passwd, err = r.State.Prompt("")
    fmt.Println()
    return passwd, err
}

func (r *userInputReader) ConfirmPrompt(prompt string) (bool, error) {
    prompt = prompt + " [y/N] "
    input, err := r.Prompt(prompt)
    if len(input) > 0 && strings.ToUpper(input[:1]) == "Y" {
        return true, nil
    }
    return false, err
}