mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 06:06:27 +08:00
bcdfad3c83
This changes log statements from log to fs package, which is required for --use-json-log to properly make log output in JSON format. The recently added custom linting rule, handled by ruleguard via gocritic via golangci-lint, warns about these and suggests the alternative. Fixing was therefore basically running "golangci-lint run --fix", although some manual fixup of mainly imports are necessary following that.
29 lines
612 B
Go
29 lines
612 B
Go
// ReadPassword for OSes which are supported by golang.org/x/term
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
|
|
//go:build !plan9
|
|
|
|
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
"github.com/rclone/rclone/lib/terminal"
|
|
)
|
|
|
|
// ReadPassword reads a password without echoing it to the terminal.
|
|
func ReadPassword() string {
|
|
stdin := int(os.Stdin.Fd())
|
|
if !terminal.IsTerminal(stdin) {
|
|
return ReadLine()
|
|
}
|
|
line, err := terminal.ReadPassword(stdin)
|
|
_, _ = fmt.Fprintln(os.Stderr)
|
|
if err != nil {
|
|
fs.Fatalf(nil, "Failed to read password: %v", err)
|
|
}
|
|
return string(line)
|
|
}
|