49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
package rest
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
clientrest "github.com/cosmos/cosmos-sdk/client/rest"
|
|
"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/x/gov"
|
|
govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest"
|
|
"github.com/cosmos/cosmos-sdk/x/params"
|
|
paramscutils "github.com/cosmos/cosmos-sdk/x/params/client/utils"
|
|
)
|
|
|
|
// ProposalRESTHandler returns a ProposalRESTHandler that exposes the param
|
|
// change REST handler with a given sub-route.
|
|
func ProposalRESTHandler(cliCtx context.CLIContext, cdc *codec.Codec) govrest.ProposalRESTHandler {
|
|
return govrest.ProposalRESTHandler{
|
|
SubRoute: "param_change",
|
|
Handler: postProposalHandlerFn(cdc, cliCtx),
|
|
}
|
|
}
|
|
|
|
func postProposalHandlerFn(cdc *codec.Codec, cliCtx context.CLIContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var req paramscutils.ParamChangeProposalReq
|
|
if !rest.ReadRESTReq(w, r, cdc, &req) {
|
|
return
|
|
}
|
|
|
|
req.BaseReq = req.BaseReq.Sanitize()
|
|
if !req.BaseReq.ValidateBasic(w) {
|
|
return
|
|
}
|
|
|
|
content := params.NewParameterChangeProposal(req.Title, req.Description, req.Changes)
|
|
|
|
msg := gov.NewMsgSubmitProposal(content, req.Deposit, req.Proposer)
|
|
if err := msg.ValidateBasic(); err != nil {
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
clientrest.WriteGenerateStdTxResponse(w, cdc, cliCtx, req.BaseReq, []sdk.Msg{msg})
|
|
}
|
|
}
|