mirror of
https://github.com/rclone/rclone.git
synced 2025-12-06 00:03:32 +00:00
Before this change we were reading input from stdin using the terminal
in the default line mode which has a limit of 4095 characters.
The typical culprit was onedrive tokens (which are very long) giving the error
Couldn't decode response: invalid character 'e' looking for beginning of value
This change swaps over to use the github.com/peterh/liner read line
library which does not have that limitation and also enables more
sensible cursor editing.
Fixes #8688 #8323 #5835
29 lines
614 B
Go
29 lines
614 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)
|
|
}
|