mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
111 lines
3.4 KiB
Go
111 lines
3.4 KiB
Go
|
package rest
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gorilla/mux"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/client/context"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
||
|
"github.com/cosmos/cosmos-sdk/x/auth/client/utils"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/committee/types"
|
||
|
)
|
||
|
|
||
|
func registerTxRoutes(cliCtx context.CLIContext, r *mux.Router /*, phs []ProposalRESTHandler*/) {
|
||
|
// propSubRtr := r.PathPrefix("/gov/proposals").Subrouter()
|
||
|
// for _, ph := range phs {
|
||
|
// propSubRtr.HandleFunc(fmt.Sprintf("/%s", ph.SubRoute), ph.Handler).Methods("POST")
|
||
|
// }
|
||
|
|
||
|
r.HandleFunc(fmt.Sprintf("/%s/committees/{%s}/proposals", types.ModuleName, RestCommitteeID), postProposalHandlerFn(cliCtx)).Methods("POST")
|
||
|
r.HandleFunc(fmt.Sprintf("/%s/proposals/{%s}/votes", types.ModuleName, RestProposalID), postVoteHandlerFn(cliCtx)).Methods("POST")
|
||
|
}
|
||
|
|
||
|
// PostProposalReq defines the properties of a proposal request's body.
|
||
|
type PostProposalReq struct {
|
||
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
||
|
PubProposal types.PubProposal `json:"pub_proposal" yaml:"pub_proposal"`
|
||
|
Proposer sdk.AccAddress `json:"proposer" yaml:"proposer"`
|
||
|
}
|
||
|
|
||
|
func postProposalHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
||
|
// Parse and validate url params
|
||
|
vars := mux.Vars(r)
|
||
|
if len(vars[RestCommitteeID]) == 0 {
|
||
|
rest.WriteErrorResponse(w, http.StatusBadRequest, "committeeID required but not specified")
|
||
|
return
|
||
|
}
|
||
|
committeeID, ok := rest.ParseUint64OrReturnBadRequest(w, vars[RestCommitteeID])
|
||
|
if !ok {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Parse and validate http request body
|
||
|
var req PostProposalReq
|
||
|
if !rest.ReadRESTReq(w, r, cliCtx.Codec, &req) {
|
||
|
return
|
||
|
}
|
||
|
req.BaseReq = req.BaseReq.Sanitize()
|
||
|
if !req.BaseReq.ValidateBasic(w) {
|
||
|
return
|
||
|
}
|
||
|
if err := req.PubProposal.ValidateBasic(); err != nil {
|
||
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Create and return a StdTx
|
||
|
msg := types.NewMsgSubmitProposal(req.PubProposal, req.Proposer, committeeID)
|
||
|
if err := msg.ValidateBasic(); err != nil {
|
||
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
||
|
return
|
||
|
}
|
||
|
utils.WriteGenerateStdTxResponse(w, cliCtx, req.BaseReq, []sdk.Msg{msg})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// PostVoteReq defines the properties of a vote request's body.
|
||
|
type PostVoteReq struct {
|
||
|
BaseReq rest.BaseReq `json:"base_req" yaml:"base_req"`
|
||
|
Voter sdk.AccAddress `json:"voter" yaml:"voter"`
|
||
|
}
|
||
|
|
||
|
func postVoteHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
|
||
|
// Parse and validate url params
|
||
|
vars := mux.Vars(r)
|
||
|
if len(vars[RestProposalID]) == 0 {
|
||
|
rest.WriteErrorResponse(w, http.StatusBadRequest, "proposalID required but not specified")
|
||
|
return
|
||
|
}
|
||
|
proposalID, ok := rest.ParseUint64OrReturnBadRequest(w, vars[RestProposalID])
|
||
|
if !ok {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Parse and validate http request body
|
||
|
var req PostVoteReq
|
||
|
if !rest.ReadRESTReq(w, r, cliCtx.Codec, &req) {
|
||
|
return
|
||
|
}
|
||
|
req.BaseReq = req.BaseReq.Sanitize()
|
||
|
if !req.BaseReq.ValidateBasic(w) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Create and return a StdTx
|
||
|
msg := types.NewMsgVote(req.Voter, proposalID)
|
||
|
if err := msg.ValidateBasic(); err != nil {
|
||
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
||
|
return
|
||
|
}
|
||
|
utils.WriteGenerateStdTxResponse(w, cliCtx, req.BaseReq, []sdk.Msg{msg})
|
||
|
}
|
||
|
}
|