81 lines
2.1 KiB
Go
81 lines
2.1 KiB
Go
package rest
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
clientrest "github.com/cosmos/cosmos-sdk/client/rest"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/rest"
|
|
"github.com/cosmos/cosmos-sdk/x/slashing"
|
|
)
|
|
|
|
func registerTxRoutes(cliCtx context.CLIContext, r *mux.Router, cdc *codec.Codec, kb keys.Keybase) {
|
|
r.HandleFunc(
|
|
"/slashing/validators/{validatorAddr}/unjail",
|
|
unjailRequestHandlerFn(cdc, kb, cliCtx),
|
|
).Methods("POST")
|
|
}
|
|
|
|
// Unjail TX body
|
|
type UnjailReq struct {
|
|
BaseReq rest.BaseReq `json:"base_req"`
|
|
}
|
|
|
|
func unjailRequestHandlerFn(cdc *codec.Codec, kb keys.Keybase, cliCtx context.CLIContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
|
|
bech32validator := vars["validatorAddr"]
|
|
|
|
var req UnjailReq
|
|
if !rest.ReadRESTReq(w, r, cdc, &req) {
|
|
return
|
|
}
|
|
|
|
req.BaseReq = req.BaseReq.Sanitize()
|
|
if !req.BaseReq.ValidateBasic(w) {
|
|
return
|
|
}
|
|
|
|
valAddr, err := sdk.ValAddressFromBech32(bech32validator)
|
|
if err != nil {
|
|
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
|
|
return
|
|
}
|
|
|
|
msg := slashing.NewMsgUnjail(valAddr)
|
|
err = msg.ValidateBasic()
|
|
if err != nil {
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
if req.BaseReq.GenerateOnly {
|
|
clientrest.WriteGenerateStdTxResponse(w, cdc, cliCtx, req.BaseReq, []sdk.Msg{msg})
|
|
return
|
|
}
|
|
|
|
// derive the from account address and name from the Keybase
|
|
fromAddress, fromName, err := context.GetFromFields(req.BaseReq.From)
|
|
if err != nil {
|
|
rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
cliCtx = cliCtx.WithFromName(fromName).WithFromAddress(fromAddress)
|
|
|
|
if !bytes.Equal(cliCtx.GetFromAddress(), valAddr) {
|
|
rest.WriteErrorResponse(w, http.StatusUnauthorized, "must use own validator address")
|
|
return
|
|
}
|
|
|
|
clientrest.CompleteAndBroadcastTxREST(w, cliCtx, req.BaseReq, []sdk.Msg{msg}, cdc)
|
|
}
|
|
}
|