aboutsummaryrefslogtreecommitdiff
path: root/pkg/client/input.go
blob: 8c814a619bcb627e669462998127de41c5f6a62f (plain)
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
package client

import (
	"bufio"
	"os"

	"github.com/pkg/errors"
)

// getValidInput returns the selected menu command as a string or an error
func (s *State) getValidInput() (string, error) {
	menu := s.config.Menus[s.currentMenu]

	reader := bufio.NewReader(os.Stdin)
	for {
		input, err := reader.ReadByte()
		if err != nil {
			return "", errors.Wrapf(err, "Could not read byte from stdin")
		}
		for _, menuEntry := range menu.MenuEntries {
			if []byte(menuEntry.Key)[0] == input {
				return menuEntry.Action, nil
			}
		}
	}
}