148 lines
4.2 KiB
Go
148 lines
4.2 KiB
Go
package cli
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"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/codec"
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
"github.com/cosmos/cosmos-sdk/x/evidence/exported"
|
|
"github.com/cosmos/cosmos-sdk/x/evidence/internal/types"
|
|
)
|
|
|
|
const (
|
|
flagPage = "page"
|
|
flagLimit = "limit"
|
|
)
|
|
|
|
// GetQueryCmd returns the CLI command with all evidence module query commands
|
|
// mounted.
|
|
func GetQueryCmd(queryRoute string, cdc *codec.Codec) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: types.ModuleName,
|
|
Short: "Query for evidence by hash or for all (paginated) submitted evidence",
|
|
Long: strings.TrimSpace(
|
|
fmt.Sprintf(`Query for specific submitted evidence by hash or query for all (paginated) evidence:
|
|
|
|
Example:
|
|
$ %s query %s DF0C23E8634E480F84B9D5674A7CDC9816466DEC28A3358F73260F68D28D7660
|
|
$ %s query %s --page=2 --limit=50
|
|
`,
|
|
version.ClientName, types.ModuleName, version.ClientName, types.ModuleName,
|
|
),
|
|
),
|
|
Args: cobra.MaximumNArgs(1),
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: QueryEvidenceCmd(cdc),
|
|
}
|
|
|
|
cmd.Flags().Int(flagPage, 1, "pagination page of evidence to to query for")
|
|
cmd.Flags().Int(flagLimit, 100, "pagination limit of evidence to query for")
|
|
|
|
cmd.AddCommand(client.GetCommands(QueryParamsCmd(cdc))...)
|
|
|
|
return client.GetCommands(cmd)[0]
|
|
}
|
|
|
|
// 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 evidence parameters",
|
|
Args: cobra.NoArgs,
|
|
Long: strings.TrimSpace(`Query the current evidence parameters:
|
|
|
|
$ <appcli> query evidence params
|
|
`),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryParameters)
|
|
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)
|
|
},
|
|
}
|
|
}
|
|
|
|
// QueryEvidenceCmd returns the command handler for evidence querying. Evidence
|
|
// can be queried for by hash or paginated evidence can be returned.
|
|
func QueryEvidenceCmd(cdc *codec.Codec) func(*cobra.Command, []string) error {
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
if err := client.ValidateCmd(cmd, args); err != nil {
|
|
return err
|
|
}
|
|
|
|
cliCtx := context.NewCLIContext().WithCodec(cdc)
|
|
|
|
if hash := args[0]; hash != "" {
|
|
return queryEvidence(cdc, cliCtx, hash)
|
|
}
|
|
|
|
return queryAllEvidence(cdc, cliCtx)
|
|
}
|
|
}
|
|
|
|
func queryEvidence(cdc *codec.Codec, cliCtx context.CLIContext, hash string) error {
|
|
if _, err := hex.DecodeString(hash); err != nil {
|
|
return fmt.Errorf("invalid evidence hash: %w", err)
|
|
}
|
|
|
|
params := types.NewQueryEvidenceParams(hash)
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to marshal query params: %w", err)
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryEvidence)
|
|
res, _, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var evidence exported.Evidence
|
|
err = cdc.UnmarshalJSON(res, &evidence)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to unmarshal evidence: %w", err)
|
|
}
|
|
|
|
return cliCtx.PrintOutput(evidence)
|
|
}
|
|
|
|
func queryAllEvidence(cdc *codec.Codec, cliCtx context.CLIContext) error {
|
|
params := types.NewQueryAllEvidenceParams(viper.GetInt(flagPage), viper.GetInt(flagLimit))
|
|
bz, err := cdc.MarshalJSON(params)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to marshal query params: %w", err)
|
|
}
|
|
|
|
route := fmt.Sprintf("custom/%s/%s", types.QuerierRoute, types.QueryAllEvidence)
|
|
res, _, err := cliCtx.QueryWithData(route, bz)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var evidence []exported.Evidence
|
|
err = cdc.UnmarshalJSON(res, &evidence)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to unmarshal evidence: %w", err)
|
|
}
|
|
|
|
return cliCtx.PrintOutput(evidence)
|
|
}
|