2020-04-24 15:20:34 +00:00
|
|
|
package rest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2021-01-18 19:12:37 +00:00
|
|
|
"strings"
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2020-04-30 14:23:41 +00:00
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
2020-04-30 14:13:31 +00:00
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func registerQueryRoutes(cliCtx context.CLIContext, r *mux.Router) {
|
2021-01-27 13:33:36 +00:00
|
|
|
r.HandleFunc(fmt.Sprintf("/%s/rewards", types.ModuleName), queryRewardsHandlerFn(cliCtx)).Methods("GET")
|
2020-04-24 15:20:34 +00:00
|
|
|
r.HandleFunc(fmt.Sprintf("/%s/parameters", types.ModuleName), queryParamsHandlerFn(cliCtx)).Methods("GET")
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func queryRewardsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
2020-04-24 15:20:34 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2021-01-18 19:12:37 +00:00
|
|
|
_, page, limit, err := rest.ParseHTTPArgsWithLimit(r, 0)
|
2020-04-24 15:20:34 +00:00
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2020-05-28 14:57:22 +00:00
|
|
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
var owner sdk.AccAddress
|
|
|
|
if x := r.URL.Query().Get(types.RestClaimOwner); len(x) != 0 {
|
|
|
|
ownerStr := strings.ToLower(strings.TrimSpace(x))
|
|
|
|
owner, err = sdk.AccAddressFromBech32(ownerStr)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("cannot parse address from claim owner %s", ownerStr))
|
|
|
|
return
|
|
|
|
}
|
2020-05-28 14:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
var rewardType string
|
|
|
|
if x := r.URL.Query().Get(types.RestClaimType); len(x) != 0 {
|
|
|
|
rewardType = strings.ToLower(strings.TrimSpace(x))
|
2020-05-28 14:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
switch strings.ToLower(rewardType) {
|
|
|
|
case "hard":
|
|
|
|
params := types.NewQueryHardRewardsParams(page, limit, owner)
|
|
|
|
executeHardRewardsQuery(w, cliCtx, params)
|
|
|
|
case "usdx_minting":
|
|
|
|
params := types.NewQueryUSDXMintingRewardsParams(page, limit, owner)
|
|
|
|
executeUSDXMintingRewardsQuery(w, cliCtx, params)
|
|
|
|
default:
|
|
|
|
hardParams := types.NewQueryHardRewardsParams(page, limit, owner)
|
|
|
|
usdxMintingParams := types.NewQueryUSDXMintingRewardsParams(page, limit, owner)
|
|
|
|
executeBothRewardQueries(w, cliCtx, hardParams, usdxMintingParams)
|
2021-01-26 11:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func queryParamsHandlerFn(cliCtx context.CLIContext) http.HandlerFunc {
|
2021-01-26 11:52:34 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
cliCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, cliCtx, r)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
route := fmt.Sprintf("custom/%s/parameters", types.QuerierRoute)
|
2021-01-26 11:52:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
res, height, err := cliCtx.QueryWithData(route, nil)
|
2020-05-28 14:57:22 +00:00
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func executeHardRewardsQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryHardRewardsParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewards), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
2020-04-24 15:20:34 +00:00
|
|
|
|
2021-01-27 13:33:36 +00:00
|
|
|
func executeUSDXMintingRewardsQuery(w http.ResponseWriter, cliCtx context.CLIContext, params types.QueryUSDXMintingRewardsParams) {
|
|
|
|
bz, err := cliCtx.Codec.MarshalJSON(params)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewards), bz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, res)
|
|
|
|
}
|
|
|
|
|
|
|
|
func executeBothRewardQueries(w http.ResponseWriter, cliCtx context.CLIContext,
|
|
|
|
hardParams types.QueryHardRewardsParams, usdxMintingParams types.QueryUSDXMintingRewardsParams) {
|
|
|
|
hardBz, err := cliCtx.Codec.MarshalJSON(hardParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
2021-01-27 13:33:36 +00:00
|
|
|
|
|
|
|
hardRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetHardRewards), hardBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usdxMintingBz, err := cliCtx.Codec.MarshalJSON(usdxMintingParams)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, fmt.Sprintf("failed to marshal query params: %s", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usdxMintingRes, height, err := cliCtx.QueryWithData(fmt.Sprintf("custom/incentive/%s", types.QueryGetUSDXMintingRewards), usdxMintingBz)
|
|
|
|
if err != nil {
|
|
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cliCtx = cliCtx.WithHeight(height)
|
|
|
|
rest.PostProcessResponse(w, cliCtx, append(hardRes, usdxMintingRes...))
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|