|
| 1 | +package rest |
| 2 | + |
| 3 | +import ( |
| 4 | + "encoding/base64" |
| 5 | + "io/ioutil" |
| 6 | + "net/http" |
| 7 | + |
| 8 | + sdk "github.com/cosmos/cosmos-sdk/types" |
| 9 | + |
| 10 | + "github.com/cosmos/cosmos-sdk/client/flags" |
| 11 | + "github.com/cosmos/cosmos-sdk/x/auth/client/utils" |
| 12 | + |
| 13 | + "github.com/cosmos/cosmos-sdk/codec" |
| 14 | + |
| 15 | + "github.com/cosmos/cosmos-sdk/types/rest" |
| 16 | + "github.com/cosmos/cosmos-sdk/x/auth/types" |
| 17 | + auth "github.com/cosmos/cosmos-sdk/x/auth/types" |
| 18 | + |
| 19 | + "github.com/cosmos/cosmos-sdk/client/context" |
| 20 | +) |
| 21 | + |
| 22 | +// EncodeTxRequestHandlerFn returns the decode tx REST handler. In particular, |
| 23 | +// it takes a base64-encoded bytes, decodes it using the Amino wire protocol, |
| 24 | +// and responds with JSON-encoded transaction. |
| 25 | +func DecodeTxRequestHandlerFn(cliCtx context.CLIContext) http.HandlerFunc { |
| 26 | + return func(w http.ResponseWriter, r *http.Request) { |
| 27 | + body, err := ioutil.ReadAll(r.Body) |
| 28 | + if err != nil { |
| 29 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 30 | + return |
| 31 | + } |
| 32 | + |
| 33 | + var req DecodeTxsRequest |
| 34 | + |
| 35 | + err = cliCtx.Codec.UnmarshalJSON(body, &req) |
| 36 | + if err != nil { |
| 37 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 38 | + return |
| 39 | + } |
| 40 | + |
| 41 | + resp := DecodeTxsResponse{ |
| 42 | + Txs: []auth.StdTx{}, |
| 43 | + } |
| 44 | + |
| 45 | + for _, base64str := range req.Txs { |
| 46 | + tx, err := decodeTx(cliCtx.Codec, base64str) |
| 47 | + if err != nil { |
| 48 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 49 | + return |
| 50 | + } |
| 51 | + |
| 52 | + resp.Txs = append(resp.Txs, tx) |
| 53 | + } |
| 54 | + |
| 55 | + rest.PostProcessResponseBare(w, cliCtx, &resp) |
| 56 | + } |
| 57 | +} |
| 58 | + |
| 59 | +func decodeTx(cdc *codec.Codec, base64str string) (tx auth.StdTx, err error) { |
| 60 | + var res types.StdTx |
| 61 | + |
| 62 | + bytes, err := base64.StdEncoding.DecodeString(base64str) |
| 63 | + if err != nil { |
| 64 | + return auth.StdTx{}, err |
| 65 | + } |
| 66 | + |
| 67 | + err = cdc.UnmarshalBinaryLengthPrefixed(bytes, &res) |
| 68 | + if err != nil { |
| 69 | + return auth.StdTx{}, err |
| 70 | + } |
| 71 | + |
| 72 | + return res, nil |
| 73 | +} |
| 74 | + |
| 75 | +func SignTxHandlerFn(cliCtx context.CLIContext) http.HandlerFunc { |
| 76 | + return func(w http.ResponseWriter, r *http.Request) { |
| 77 | + err := r.ParseForm() |
| 78 | + if err != nil { |
| 79 | + rest.WriteErrorResponse(w, http.StatusBadRequest, sdk.AppendMsgToErr("could not parse query parameters", err.Error())) |
| 80 | + return |
| 81 | + } |
| 82 | + |
| 83 | + name, passphrase := r.FormValue("name"), r.FormValue("passphrase") |
| 84 | + |
| 85 | + var signMsg types.StdSignMsg |
| 86 | + |
| 87 | + if !rest.ReadRESTReq(w, r, cliCtx.Codec, &signMsg) { |
| 88 | + rest.WriteErrorResponse(w, http.StatusBadRequest, "failed to parse request") |
| 89 | + return |
| 90 | + } |
| 91 | + |
| 92 | + txBldr := types.NewTxBuilder( |
| 93 | + utils.GetTxEncoder(cliCtx.Codec), |
| 94 | + signMsg.AccountNumber, |
| 95 | + signMsg.Sequence, |
| 96 | + signMsg.Fee.Gas, |
| 97 | + flags.DefaultGasAdjustment, |
| 98 | + false, |
| 99 | + signMsg.ChainID, |
| 100 | + signMsg.Memo, |
| 101 | + signMsg.Fee.Amount, |
| 102 | + nil, |
| 103 | + ) |
| 104 | + |
| 105 | + stdTx := auth.StdTx{ |
| 106 | + Msgs: signMsg.Msgs, |
| 107 | + Fee: signMsg.Fee, |
| 108 | + Signatures: nil, |
| 109 | + Memo: signMsg.Memo, |
| 110 | + } |
| 111 | + |
| 112 | + signedStdTx, err := txBldr.SignStdTx(name, passphrase, stdTx, false) |
| 113 | + |
| 114 | + if err != nil { |
| 115 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 116 | + return |
| 117 | + } |
| 118 | + |
| 119 | + rest.PostProcessResponse(w, cliCtx, signedStdTx) |
| 120 | + } |
| 121 | +} |
| 122 | + |
| 123 | +func BroadcastTxHandlerFn(cliCtx context.CLIContext) http.HandlerFunc { |
| 124 | + return func(w http.ResponseWriter, r *http.Request) { |
| 125 | + var stdTx types.StdTx |
| 126 | + |
| 127 | + if !rest.ReadRESTReq(w, r, cliCtx.Codec, &stdTx) { |
| 128 | + rest.WriteErrorResponse(w, http.StatusBadRequest, "failed to parse request") |
| 129 | + return |
| 130 | + } |
| 131 | + |
| 132 | + txBytes, err := cliCtx.Codec.MarshalBinaryLengthPrefixed(stdTx) |
| 133 | + if err != nil { |
| 134 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 135 | + return |
| 136 | + } |
| 137 | + |
| 138 | + cliCtx.BroadcastMode = "block" |
| 139 | + res, err := cliCtx.BroadcastTx(txBytes) |
| 140 | + if err != nil { |
| 141 | + rest.WriteErrorResponse(w, http.StatusBadRequest, err.Error()) |
| 142 | + return |
| 143 | + } |
| 144 | + |
| 145 | + rest.PostProcessResponse(w, cliCtx, res) |
| 146 | + } |
| 147 | +} |
0 commit comments