137 lines
4.2 KiB
Go
137 lines
4.2 KiB
Go
package crisis
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/gorilla/mux"
|
|
"github.com/spf13/cobra"
|
|
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
"github.com/cosmos/cosmos-sdk/x/crisis/client/cli"
|
|
"github.com/cosmos/cosmos-sdk/x/crisis/keeper"
|
|
"github.com/cosmos/cosmos-sdk/x/crisis/types"
|
|
)
|
|
|
|
var (
|
|
_ module.AppModule = AppModule{}
|
|
_ module.AppModuleBasic = AppModuleBasic{}
|
|
)
|
|
|
|
// AppModuleBasic defines the basic application module used by the crisis module.
|
|
type AppModuleBasic struct{}
|
|
|
|
// Name returns the crisis module's name.
|
|
func (AppModuleBasic) Name() string {
|
|
return ModuleName
|
|
}
|
|
|
|
// RegisterCodec registers the crisis module's types for the given codec.
|
|
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec) {
|
|
RegisterCodec(cdc)
|
|
}
|
|
|
|
// DefaultGenesis returns default genesis state as raw bytes for the crisis
|
|
// module.
|
|
func (AppModuleBasic) DefaultGenesis(cdc codec.JSONMarshaler) json.RawMessage {
|
|
return cdc.MustMarshalJSON(DefaultGenesisState())
|
|
}
|
|
|
|
// ValidateGenesis performs genesis state validation for the crisis module.
|
|
func (AppModuleBasic) ValidateGenesis(cdc codec.JSONMarshaler, bz json.RawMessage) error {
|
|
var data types.GenesisState
|
|
if err := cdc.UnmarshalJSON(bz, &data); err != nil {
|
|
return fmt.Errorf("failed to unmarshal %s genesis state: %w", ModuleName, err)
|
|
}
|
|
|
|
return types.ValidateGenesis(data)
|
|
}
|
|
|
|
// RegisterRESTRoutes registers no REST routes for the crisis module.
|
|
func (AppModuleBasic) RegisterRESTRoutes(_ client.Context, _ *mux.Router) {}
|
|
|
|
// GetTxCmd returns the root tx command for the crisis module.
|
|
func (b AppModuleBasic) GetTxCmd(clientCtx client.Context) *cobra.Command {
|
|
return cli.NewTxCmd(clientCtx)
|
|
}
|
|
|
|
// GetQueryCmd returns no root query command for the crisis module.
|
|
func (AppModuleBasic) GetQueryCmd(clientCtx client.Context) *cobra.Command { return nil }
|
|
|
|
//____________________________________________________________________________
|
|
|
|
// AppModule implements an application module for the crisis module.
|
|
type AppModule struct {
|
|
AppModuleBasic
|
|
|
|
// NOTE: We store a reference to the keeper here so that after a module
|
|
// manager is created, the invariants can be properly registered and
|
|
// executed.
|
|
keeper *keeper.Keeper
|
|
}
|
|
|
|
// NewAppModule creates a new AppModule object
|
|
func NewAppModule(keeper *keeper.Keeper) AppModule {
|
|
return AppModule{
|
|
AppModuleBasic: AppModuleBasic{},
|
|
keeper: keeper,
|
|
}
|
|
}
|
|
|
|
// Name returns the crisis module's name.
|
|
func (AppModule) Name() string {
|
|
return ModuleName
|
|
}
|
|
|
|
// RegisterInvariants performs a no-op.
|
|
func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry) {}
|
|
|
|
// Route returns the message routing key for the crisis module.
|
|
func (AppModule) Route() string {
|
|
return RouterKey
|
|
}
|
|
|
|
// NewHandler returns an sdk.Handler for the crisis module.
|
|
func (am AppModule) NewHandler() sdk.Handler {
|
|
return NewHandler(*am.keeper)
|
|
}
|
|
|
|
// QuerierRoute returns no querier route.
|
|
func (AppModule) QuerierRoute() string { return "" }
|
|
|
|
// NewQuerierHandler returns no sdk.Querier.
|
|
func (AppModule) NewQuerierHandler() sdk.Querier { return nil }
|
|
|
|
// InitGenesis performs genesis initialization for the crisis module. It returns
|
|
// no validator updates.
|
|
func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONMarshaler, data json.RawMessage) []abci.ValidatorUpdate {
|
|
var genesisState GenesisState
|
|
cdc.MustUnmarshalJSON(data, &genesisState)
|
|
InitGenesis(ctx, *am.keeper, genesisState)
|
|
|
|
am.keeper.AssertInvariants(ctx)
|
|
return []abci.ValidatorUpdate{}
|
|
}
|
|
|
|
// ExportGenesis returns the exported genesis state as raw bytes for the crisis
|
|
// module.
|
|
func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONMarshaler) json.RawMessage {
|
|
gs := ExportGenesis(ctx, *am.keeper)
|
|
return cdc.MustMarshalJSON(gs)
|
|
}
|
|
|
|
// BeginBlock performs a no-op.
|
|
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {}
|
|
|
|
// EndBlock returns the end blocker for the crisis module. It returns no validator
|
|
// updates.
|
|
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
|
|
EndBlocker(ctx, *am.keeper)
|
|
return []abci.ValidatorUpdate{}
|
|
}
|