cosmos-sdk/x/stake/client/cli/query.go

199 lines
4.8 KiB
Go
Raw Normal View History

2018-04-25 07:18:06 -07:00
package cli
2018-02-24 05:19:32 -08:00
import (
2018-02-25 15:45:20 -08:00
"fmt"
2018-02-24 05:19:32 -08:00
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/tendermint/tmlibs/cli"
2018-02-24 05:19:32 -08:00
"github.com/cosmos/cosmos-sdk/client/context"
2018-03-17 11:18:04 -07:00
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/wire" // XXX fix
2018-02-25 15:45:20 -08:00
"github.com/cosmos/cosmos-sdk/x/stake"
2018-02-24 05:19:32 -08:00
)
2018-05-09 21:01:58 -07:00
// get the command to query a validator
func GetCmdQueryValidator(storeName string, cdc *wire.Codec) *cobra.Command {
cmd := &cobra.Command{
2018-05-17 08:12:28 -07:00
Use: "validator [owner-addr]",
Short: "Query a validator",
2018-05-04 18:29:12 -07:00
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
2018-06-01 07:23:58 -07:00
addr, err := sdk.GetAccAddressBech32(args[0])
if err != nil {
return err
}
2018-05-09 21:01:58 -07:00
key := stake.GetValidatorKey(addr)
ctx := context.NewCoreContextFromViper()
res, err := ctx.QueryStore(key, storeName)
if err != nil {
return err
}
2018-05-09 21:01:58 -07:00
validator := new(stake.Validator)
cdc.MustUnmarshalBinary(res, validator)
switch viper.Get(cli.OutputFlag) {
case "text":
human, err := validator.HumanReadableString()
if err != nil {
return err
}
fmt.Println(human)
case "json":
// parse out the validator
output, err := wire.MarshalJSONIndent(cdc, validator)
if err != nil {
return err
}
fmt.Println(string(output))
}
// TODO output with proofs / machine parseable etc.
2018-05-10 17:51:48 -07:00
return nil
},
}
return cmd
2018-02-24 05:19:32 -08:00
}
2018-05-10 17:51:48 -07:00
// get the command to query a validator
func GetCmdQueryValidators(storeName string, cdc *wire.Codec) *cobra.Command {
cmd := &cobra.Command{
2018-05-17 08:12:28 -07:00
Use: "validators",
Short: "Query for all validators",
RunE: func(cmd *cobra.Command, args []string) error {
2018-05-10 17:51:48 -07:00
key := stake.ValidatorsKey
ctx := context.NewCoreContextFromViper()
resKVs, err := ctx.QuerySubspace(cdc, key, storeName)
if err != nil {
return err
}
2018-05-30 07:42:59 -07:00
// parse out the validators
var validators []stake.Validator
for _, KV := range resKVs {
2018-05-10 17:51:48 -07:00
var validator stake.Validator
cdc.MustUnmarshalBinary(KV.Value, &validator)
2018-05-30 07:42:59 -07:00
validators = append(validators, validator)
}
switch viper.Get(cli.OutputFlag) {
case "text":
for _, validator := range validators {
resp, err := validator.HumanReadableString()
if err != nil {
return err
}
fmt.Println(resp)
}
case "json":
output, err := wire.MarshalJSONIndent(cdc, validators)
if err != nil {
return err
}
fmt.Println(string(output))
return nil
}
return nil
// TODO output with proofs / machine parseable etc.
},
}
return cmd
}
2018-05-09 21:01:58 -07:00
// get the command to query a single delegation bond
2018-05-09 18:39:14 -07:00
func GetCmdQueryDelegation(storeName string, cdc *wire.Codec) *cobra.Command {
cmd := &cobra.Command{
2018-05-17 08:12:28 -07:00
Use: "delegation",
Short: "Query a delegations bond based on address and validator address",
RunE: func(cmd *cobra.Command, args []string) error {
2018-06-01 07:23:58 -07:00
addr, err := sdk.GetAccAddressBech32(viper.GetString(FlagAddressValidator))
if err != nil {
return err
}
delAddr, err := sdk.GetValAddressHex(viper.GetString(FlagAddressDelegator))
if err != nil {
return err
}
key := stake.GetDelegationKey(delAddr, addr, cdc)
ctx := context.NewCoreContextFromViper()
res, err := ctx.QueryStore(key, storeName)
if err != nil {
return err
}
// parse out the bond
2018-05-09 18:39:14 -07:00
bond := new(stake.Delegation)
switch viper.Get(cli.OutputFlag) {
case "text":
resp, err := bond.HumanReadableString()
if err != nil {
return err
}
fmt.Println(resp)
case "json":
cdc.MustUnmarshalBinary(res, bond)
output, err := wire.MarshalJSONIndent(cdc, bond)
if err != nil {
return err
}
fmt.Println(string(output))
return nil
}
return nil
},
}
2018-05-09 21:01:58 -07:00
cmd.Flags().AddFlagSet(fsValidator)
cmd.Flags().AddFlagSet(fsDelegator)
return cmd
}
2018-02-24 05:19:32 -08:00
2018-05-30 07:42:59 -07:00
// get the command to query all the validators bonded to a delegation
2018-05-09 21:01:58 -07:00
func GetCmdQueryDelegations(storeName string, cdc *wire.Codec) *cobra.Command {
cmd := &cobra.Command{
2018-05-17 08:12:28 -07:00
Use: "delegations [delegator-addr]",
Short: "Query all delegations made from one delegator",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
2018-06-01 07:23:58 -07:00
delegatorAddr, err := sdk.GetAccAddressBech32(args[0])
if err != nil {
return err
}
2018-05-10 17:51:48 -07:00
key := stake.GetDelegationsKey(delegatorAddr, cdc)
ctx := context.NewCoreContextFromViper()
resKVs, err := ctx.QuerySubspace(cdc, key, storeName)
if err != nil {
return err
}
2018-05-30 07:42:59 -07:00
// parse out the validators
2018-05-09 21:01:58 -07:00
var delegations []stake.Delegation
for _, KV := range resKVs {
2018-05-09 21:01:58 -07:00
var delegation stake.Delegation
cdc.MustUnmarshalBinary(KV.Value, &delegation)
delegations = append(delegations, delegation)
}
2018-05-09 21:01:58 -07:00
output, err := wire.MarshalJSONIndent(cdc, delegations)
if err != nil {
return err
}
fmt.Println(string(output))
return nil
// TODO output with proofs / machine parseable etc.
},
}
return cmd
}