0g-chain/x/auction/client/rest/tx.go

54 lines
1.4 KiB
Go
Raw Normal View History

2019-11-25 19:46:02 +00:00
package rest
import (
"fmt"
"net/http"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/tx"
2019-11-25 19:46:02 +00:00
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/rest"
"github.com/gorilla/mux"
2019-11-25 19:46:02 +00:00
"github.com/kava-labs/kava/x/auction/types"
)
func registerTxRoutes(cliCtx client.Context, r *mux.Router) {
r.HandleFunc(fmt.Sprintf("/%s/auctions/{%s}/bids", types.ModuleName, restAuctionID), postPlaceBidHandlerFn(cliCtx)).Methods("POST")
2019-11-25 19:46:02 +00:00
}
func postPlaceBidHandlerFn(cliCtx client.Context) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
var requestBody PlaceBidReq
if !rest.ReadRESTReq(w, req, cliCtx.LegacyAmino, &requestBody) {
2019-11-25 19:46:02 +00:00
return
}
baseReq := requestBody.BaseReq.Sanitize()
if !baseReq.ValidateBasic(w) {
return
}
bidderAddr, err := sdk.AccAddressFromBech32(requestBody.BaseReq.From)
2019-11-25 19:46:02 +00:00
if err != nil {
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
return
}
// Get auction ID from url
auctionID, ok := rest.ParseUint64OrReturnBadRequest(w, mux.Vars(req)[restAuctionID])
if !ok {
return
}
// Create and return a StdTx
msg := types.NewMsgPlaceBid(auctionID, bidderAddr.String(), requestBody.Amount)
2019-11-25 19:46:02 +00:00
if err := msg.ValidateBasic(); err != nil {
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
return
}
tx.WriteGeneratedTxResponse(cliCtx, w, baseReq, &msg)
2019-11-25 19:46:02 +00:00
}
}