cosmos-sdk/x/auth/client/rest/query.go

70 lines
1.8 KiB
Go
Raw Normal View History

2018-03-10 09:33:05 -08:00
package rest
import (
"encoding/hex"
"fmt"
"net/http"
"github.com/gorilla/mux"
"github.com/cosmos/cosmos-sdk/client/context"
2018-03-10 09:33:05 -08:00
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/wire"
2018-04-25 07:18:06 -07:00
auth "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
2018-03-10 09:33:05 -08:00
)
2018-04-18 21:49:24 -07:00
// register REST routes
func RegisterRoutes(ctx context.CoreContext, r *mux.Router, cdc *wire.Codec, storeName string) {
2018-04-18 21:49:24 -07:00
r.HandleFunc(
"/accounts/{address}",
2018-04-25 07:18:06 -07:00
QueryAccountRequestHandler(storeName, cdc, auth.GetAccountDecoder(cdc), ctx),
2018-04-18 21:49:24 -07:00
).Methods("GET")
2018-03-10 09:33:05 -08:00
}
2018-04-18 21:49:24 -07:00
// query accountREST Handler
2018-04-25 07:18:06 -07:00
func QueryAccountRequestHandler(storeName string, cdc *wire.Codec, decoder sdk.AccountDecoder, ctx context.CoreContext) func(http.ResponseWriter, *http.Request) {
2018-03-10 09:33:05 -08:00
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
addr := vars["address"]
2018-03-14 03:43:31 -07:00
2018-03-10 09:33:05 -08:00
bz, err := hex.DecodeString(addr)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
return
}
key := sdk.Address(bz)
2018-04-18 21:49:24 -07:00
res, err := ctx.Query(key, storeName)
2018-03-10 09:33:05 -08:00
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("Could't query account. Error: %s", err.Error())))
return
}
// the query will return empty if there is no data for this account
2018-03-14 03:43:31 -07:00
if len(res) == 0 {
2018-03-10 09:33:05 -08:00
w.WriteHeader(http.StatusNoContent)
return
}
2018-03-20 18:27:50 -07:00
// decode the value
2018-04-18 21:49:24 -07:00
account, err := decoder(res)
2018-03-10 09:33:05 -08:00
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("Could't parse query result. Result: %s. Error: %s", res, err.Error())))
return
}
// print out whole account
2018-04-07 10:56:49 -07:00
output, err := cdc.MarshalJSON(account)
2018-03-10 09:33:05 -08:00
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(fmt.Sprintf("Could't marshall query result. Error: %s", err.Error())))
return
}
w.Write(output)
}
}