219 lines
6.3 KiB
Go
219 lines
6.3 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
const (
|
|
flagEvents = "events"
|
|
|
|
eventFormat = "{eventType}.{eventAttribute}={value}"
|
|
)
|
|
|
|
// GetQueryCmd returns the transaction commands for this module
|
|
func GetQueryCmd(cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: types.ModuleName,
|
|
Short: "Querying commands for the auth module",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
cmd.AddCommand(
|
|
flags.GetCommands(
|
|
GetAccountCmd(cdc),
|
|
QueryParamsCmd(cdc),
|
|
)...,
|
|
)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// QueryParamsCmd returns the command handler for evidence parameter querying.
|
|
func QueryParamsCmd(cdc *codec.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "params",
|
|
Short: "Query the current auth parameters",
|
|
Args: cobra.NoArgs,
|
|
Long: strings.TrimSpace(`Query the current auth parameters:
|
|
|
|
$ <appcli> query auth params
|
|
`),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryParams)
|
|
res, _, err := cliCtx.QueryWithData(route, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var params types.Params
|
|
if err := cdc.UnmarshalJSON(res, ¶ms); err != nil {
|
|
return fmt.Errorf("failed to unmarshal params: %w", err)
|
|
}
|
|
|
|
return cliCtx.PrintOutput(params)
|
|
},
|
|
}
|
|
}
|
|
|
|
// GetAccountCmd returns a query account that will display the state of the
|
|
// account at a given address.
|
|
func GetAccountCmd(cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "account [address]",
|
|
Short: "Query for account by address",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
accGetter := types.NewAccountRetriever(authclient.Codec, cliCtx)
|
|
|
|
key, err := sdk.AccAddressFromBech32(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
acc, err := accGetter.GetAccount(key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return cliCtx.PrintOutput(acc)
|
|
},
|
|
}
|
|
|
|
return flags.GetCommands(cmd)[0]
|
|
}
|
|
|
|
// QueryTxsByEventsCmd returns a command to search through transactions by events.
|
|
func QueryTxsByEventsCmd(cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "txs",
|
|
Short: "Query for paginated transactions that match a set of events",
|
|
Long: strings.TrimSpace(
|
|
fmt.Sprintf(`
|
|
Search for transactions that match the exact given events where results are paginated.
|
|
Each event takes the form of '%s'. Please refer
|
|
to each module's documentation for the full set of events to query for. Each module
|
|
documents its respective events under 'xx_events.md'.
|
|
|
|
Example:
|
|
$ %s query txs --%s 'message.sender=cosmos1...&message.action=withdraw_delegator_reward' --page 1 --limit 30
|
|
`, eventFormat, version.ClientName, flagEvents),
|
|
),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
eventsStr := strings.Trim(viper.GetString(flagEvents), "'")
|
|
|
|
var events []string
|
|
if strings.Contains(eventsStr, "&") {
|
|
events = strings.Split(eventsStr, "&")
|
|
} else {
|
|
events = append(events, eventsStr)
|
|
}
|
|
|
|
var tmEvents []string
|
|
|
|
for _, event := range events {
|
|
if !strings.Contains(event, "=") {
|
|
return fmt.Errorf("invalid event; event %s should be of the format: %s", event, eventFormat)
|
|
} else if strings.Count(event, "=") > 1 {
|
|
return fmt.Errorf("invalid event; event %s should be of the format: %s", event, eventFormat)
|
|
}
|
|
|
|
tokens := strings.Split(event, "=")
|
|
if tokens[0] == tmtypes.TxHeightKey {
|
|
event = fmt.Sprintf("%s=%s", tokens[0], tokens[1])
|
|
} else {
|
|
event = fmt.Sprintf("%s='%s'", tokens[0], tokens[1])
|
|
}
|
|
|
|
tmEvents = append(tmEvents, event)
|
|
}
|
|
|
|
page := viper.GetInt(flags.FlagPage)
|
|
limit := viper.GetInt(flags.FlagLimit)
|
|
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
txs, err := authclient.QueryTxsByEvents(cliCtx, tmEvents, page, limit, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var output []byte
|
|
if cliCtx.Indent {
|
|
output, err = cdc.MarshalJSONIndent(txs, "", " ")
|
|
} else {
|
|
output, err = cdc.MarshalJSON(txs)
|
|
}
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println(string(output))
|
|
return nil
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringP(flags.FlagNode, "n", "tcp://localhost:26657", "Node to connect to")
|
|
viper.BindPFlag(flags.FlagNode, cmd.Flags().Lookup(flags.FlagNode))
|
|
|
|
cmd.Flags().Bool(flags.FlagTrustNode, false, "Trust connected full node (don't verify proofs for responses)")
|
|
viper.BindPFlag(flags.FlagTrustNode, cmd.Flags().Lookup(flags.FlagTrustNode))
|
|
|
|
cmd.Flags().String(flagEvents, "", fmt.Sprintf("list of transaction events in the form of %s", eventFormat))
|
|
cmd.Flags().Uint32(flags.FlagPage, rest.DefaultPage, "Query a specific page of paginated results")
|
|
cmd.Flags().Uint32(flags.FlagLimit, rest.DefaultLimit, "Query number of transactions results per page returned")
|
|
cmd.MarkFlagRequired(flagEvents)
|
|
|
|
return cmd
|
|
}
|
|
|
|
// QueryTxCmd implements the default command for a tx query.
|
|
func QueryTxCmd(cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "tx [hash]",
|
|
Short: "Query for a transaction by hash in a committed block",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
output, err := authclient.QueryTx(cliCtx, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if output.Empty() {
|
|
return fmt.Errorf("no transaction found with hash %s", args[0])
|
|
}
|
|
|
|
return cliCtx.PrintOutput(output)
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringP(flags.FlagNode, "n", "tcp://localhost:26657", "Node to connect to")
|
|
viper.BindPFlag(flags.FlagNode, cmd.Flags().Lookup(flags.FlagNode))
|
|
cmd.Flags().Bool(flags.FlagTrustNode, false, "Trust connected full node (don't verify proofs for responses)")
|
|
viper.BindPFlag(flags.FlagTrustNode, cmd.Flags().Lookup(flags.FlagTrustNode))
|
|
|
|
return cmd
|
|
}
|