2019-11-25 19:46:02 +00:00
|
|
|
package rest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
"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"
|
2022-01-08 00:39:27 +00:00
|
|
|
"github.com/gorilla/mux"
|
2019-11-25 19:46:02 +00:00
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/auction/types"
|
|
|
|
)
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +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
|
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
baseReq := requestBody.BaseReq.Sanitize()
|
|
|
|
if !baseReq.ValidateBasic(w) {
|
2020-02-03 15:54:00 +00:00
|
|
|
return
|
|
|
|
}
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// Get auction ID from url
|
|
|
|
auctionID, ok := rest.ParseUint64OrReturnBadRequest(w, mux.Vars(req)[restAuctionID])
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-03 15:54:00 +00:00
|
|
|
// Create and return a StdTx
|
2022-01-08 00:39:27 +00:00
|
|
|
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
|
|
|
|
}
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
tx.WriteGeneratedTxResponse(cliCtx, w, baseReq, &msg)
|
2019-11-25 19:46:02 +00:00
|
|
|
}
|
|
|
|
}
|