mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
4c47756aed
* remove validation package * structs cleanup * merge with apimiddleware removal * more validation and Bls capitalization * builder test fix * use strconv for uint->str conversions * use DecodeHexWithLength * use exact param names * rename http package to httputil * change conversions to fmt.Sprintf * handle query paramsd and route variables * spans and receiver name * split structs, move bytes helper * missing ok check * fix reference to indexed failure * errors fixup * add godoc to helper * fix BLS casing and chainhead ref * review * fix import in tests * gzl
43 lines
1.6 KiB
Go
43 lines
1.6 KiB
Go
package shared
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/lookup"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/blocks"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/interfaces"
|
|
"github.com/prysmaticlabs/prysm/v4/network/httputil"
|
|
)
|
|
|
|
// WriteStateFetchError writes an appropriate error based on the supplied argument.
|
|
// The argument error should be a result of fetching state.
|
|
func WriteStateFetchError(w http.ResponseWriter, err error) {
|
|
if _, ok := err.(*lookup.StateNotFoundError); ok {
|
|
httputil.HandleError(w, "State not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if parseErr, ok := err.(*lookup.StateIdParseError); ok {
|
|
httputil.HandleError(w, "Invalid state ID: "+parseErr.Error(), http.StatusBadRequest)
|
|
return
|
|
}
|
|
httputil.HandleError(w, "Could not get state: "+err.Error(), http.StatusInternalServerError)
|
|
}
|
|
|
|
// WriteBlockFetchError writes an appropriate error based on the supplied argument.
|
|
// The argument error should be a result of fetching block.
|
|
func WriteBlockFetchError(w http.ResponseWriter, blk interfaces.ReadOnlySignedBeaconBlock, err error) bool {
|
|
if invalidBlockIdErr, ok := err.(*lookup.BlockIdParseError); ok {
|
|
httputil.HandleError(w, "Invalid block ID: "+invalidBlockIdErr.Error(), http.StatusBadRequest)
|
|
return false
|
|
}
|
|
if err != nil {
|
|
httputil.HandleError(w, "Could not get block from block ID: %s"+err.Error(), http.StatusInternalServerError)
|
|
return false
|
|
}
|
|
if err = blocks.BeaconBlockIsNil(blk); err != nil {
|
|
httputil.HandleError(w, "Could not find requested block: %s"+err.Error(), http.StatusNotFound)
|
|
return false
|
|
}
|
|
return true
|
|
}
|