cosmos-sdk/client/keys/utils.go

176 lines
4.2 KiB
Go
Raw Normal View History

2018-02-22 07:17:19 -08:00
package keys
import (
"fmt"
"path/filepath"
2018-02-22 07:17:19 -08:00
"github.com/spf13/viper"
keys "github.com/cosmos/cosmos-sdk/crypto/keys"
"github.com/tendermint/tendermint/libs/cli"
dbm "github.com/tendermint/tendermint/libs/db"
2018-02-22 07:17:19 -08:00
"github.com/cosmos/cosmos-sdk/client"
sdk "github.com/cosmos/cosmos-sdk/types"
2018-02-22 07:17:19 -08:00
)
2018-02-28 06:36:04 -08:00
// KeyDBName is the directory under root where we store the keys
const KeyDBName = "keys"
2018-04-20 09:51:47 -07:00
// keybase is used to make GetKeyBase a singleton
var keybase keys.Keybase
// TODO make keybase take a database not load from the directory
2018-04-20 09:51:47 -07:00
// initialize a keybase based on the configuration
2018-02-22 07:17:19 -08:00
func GetKeyBase() (keys.Keybase, error) {
2018-04-25 21:27:40 -07:00
rootDir := viper.GetString(cli.HomeFlag)
return GetKeyBaseFromDir(rootDir)
}
2018-08-06 11:11:30 -07:00
// GetKeyInfo returns key info for a given name. An error is returned if the
// keybase cannot be retrieved or getting the info fails.
func GetKeyInfo(name string) (keys.Info, error) {
keybase, err := GetKeyBase()
if err != nil {
return nil, err
}
return keybase.Get(name)
}
// GetPassphrase returns a passphrase for a given name. It will first retrieve
// the key info for that name if the type is local, it'll fetch input from
// STDIN. Otherwise, an empty passphrase is returned. An error is returned if
// the key info cannot be fetched or reading from STDIN fails.
func GetPassphrase(name string) (string, error) {
var passphrase string
keyInfo, err := GetKeyInfo(name)
if err != nil {
return passphrase, err
}
// we only need a passphrase for locally stored keys
// TODO: (ref: #864) address security concerns
if keyInfo.GetType() == keys.TypeLocal {
passphrase, err = ReadPassphraseFromStdin(name)
if err != nil {
return passphrase, err
}
}
return passphrase, nil
}
// ReadPassphraseFromStdin attempts to read a passphrase from STDIN return an
// error upon failure.
func ReadPassphraseFromStdin(name string) (string, error) {
buf := client.BufferStdin()
prompt := fmt.Sprintf("Password to sign with '%s':", name)
passphrase, err := client.GetPassword(prompt, buf)
if err != nil {
return passphrase, fmt.Errorf("Error reading passphrase: %v", err)
}
return passphrase, nil
}
2018-04-25 21:27:40 -07:00
// initialize a keybase based on the configuration
func GetKeyBaseFromDir(rootDir string) (keys.Keybase, error) {
2018-02-22 07:17:19 -08:00
if keybase == nil {
db, err := dbm.NewGoLevelDB(KeyDBName, filepath.Join(rootDir, "keys"))
2018-02-22 07:17:19 -08:00
if err != nil {
return nil, err
}
2018-02-28 06:36:04 -08:00
keybase = client.GetKeyBase(db)
2018-02-22 07:17:19 -08:00
}
return keybase, nil
}
2018-03-05 08:41:50 -08:00
// used to set the keybase manually in test
func SetKeyBase(kb keys.Keybase) {
keybase = kb
}
2018-04-20 09:51:47 -07:00
// used for outputting keys.Info over REST
type KeyOutput struct {
2018-07-06 00:06:53 -07:00
Name string `json:"name"`
Type string `json:"type"`
Address sdk.AccAddress `json:"address"`
PubKey string `json:"pub_key"`
Seed string `json:"seed,omitempty"`
2018-04-20 09:51:47 -07:00
}
// create a list of KeyOutput in bech32 format
func Bech32KeysOutput(infos []keys.Info) ([]KeyOutput, error) {
kos := make([]KeyOutput, len(infos))
for i, info := range infos {
ko, err := Bech32KeyOutput(info)
if err != nil {
return nil, err
}
kos[i] = ko
2018-04-20 09:51:47 -07:00
}
return kos, nil
2018-04-20 09:51:47 -07:00
}
// create a KeyOutput in bech32 format
func Bech32KeyOutput(info keys.Info) (KeyOutput, error) {
2018-07-06 00:06:53 -07:00
account := sdk.AccAddress(info.GetPubKey().Address().Bytes())
bechPubKey, err := sdk.Bech32ifyAccPub(info.GetPubKey())
if err != nil {
return KeyOutput{}, err
}
return KeyOutput{
Name: info.GetName(),
2018-08-06 11:11:30 -07:00
Type: info.GetType().String(),
2018-07-05 13:36:51 -07:00
Address: account,
PubKey: bechPubKey,
}, nil
2018-04-20 09:51:47 -07:00
}
2018-02-22 07:17:19 -08:00
func printInfo(info keys.Info) {
ko, err := Bech32KeyOutput(info)
if err != nil {
panic(err)
}
2018-02-22 07:17:19 -08:00
switch viper.Get(cli.OutputFlag) {
case "text":
fmt.Printf("NAME:\tTYPE:\tADDRESS:\t\t\t\t\t\tPUBKEY:\n")
2018-05-28 16:27:34 -07:00
printKeyOutput(ko)
2018-02-22 07:17:19 -08:00
case "json":
2018-05-31 12:10:12 -07:00
out, err := MarshalJSON(ko)
2018-02-22 07:17:19 -08:00
if err != nil {
2018-04-20 09:51:47 -07:00
panic(err)
2018-02-22 07:17:19 -08:00
}
2018-04-20 09:51:47 -07:00
fmt.Println(string(out))
2018-02-22 07:17:19 -08:00
}
}
func printInfos(infos []keys.Info) {
kos, err := Bech32KeysOutput(infos)
if err != nil {
panic(err)
}
2018-02-22 07:17:19 -08:00
switch viper.Get(cli.OutputFlag) {
case "text":
fmt.Printf("NAME:\tTYPE:\tADDRESS:\t\t\t\t\t\tPUBKEY:\n")
2018-04-20 09:51:47 -07:00
for _, ko := range kos {
2018-05-28 16:27:34 -07:00
printKeyOutput(ko)
2018-02-22 07:17:19 -08:00
}
case "json":
2018-05-31 13:33:52 -07:00
out, err := MarshalJSON(kos)
2018-02-22 07:17:19 -08:00
if err != nil {
2018-04-20 09:51:47 -07:00
panic(err)
2018-02-22 07:17:19 -08:00
}
2018-04-20 09:51:47 -07:00
fmt.Println(string(out))
2018-02-22 07:17:19 -08:00
}
}
2018-05-28 16:27:34 -07:00
func printKeyOutput(ko KeyOutput) {
fmt.Printf("%s\t%s\t%s\t%s\n", ko.Name, ko.Type, ko.Address, ko.PubKey)
2018-05-28 16:27:34 -07:00
}