2022-04-27 18:01:59 +00:00
|
|
|
// This file will contain functions to query the Beacon Chain Server.
|
|
|
|
|
|
|
|
package beaconclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/pkg/loghelper"
|
|
|
|
)
|
|
|
|
|
|
|
|
// A helper function to query endpoints that utilize slots.
|
2022-05-06 15:03:15 +00:00
|
|
|
func querySsz(endpoint string, slot string) ([]byte, int, error) {
|
|
|
|
log.WithFields(log.Fields{"endpoint": endpoint}).Debug("Querying endpoint")
|
2022-04-27 18:01:59 +00:00
|
|
|
client := &http.Client{}
|
|
|
|
req, err := http.NewRequest("GET", endpoint, nil)
|
|
|
|
if err != nil {
|
|
|
|
loghelper.LogSlotError(slot, err).Error("Unable to create a request!")
|
2022-05-06 15:03:15 +00:00
|
|
|
return nil, 0, fmt.Errorf("Unable to create a request!: %s", err.Error())
|
2022-04-27 18:01:59 +00:00
|
|
|
}
|
|
|
|
req.Header.Set("Accept", "application/octet-stream")
|
|
|
|
response, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
loghelper.LogSlotError(slot, err).Error("Unable to query Beacon Node!")
|
2022-05-06 15:03:15 +00:00
|
|
|
return nil, 0, fmt.Errorf("Unable to query Beacon Node: %s", err.Error())
|
2022-04-27 18:01:59 +00:00
|
|
|
}
|
|
|
|
defer response.Body.Close()
|
2022-05-06 15:03:15 +00:00
|
|
|
rc := response.StatusCode
|
2022-04-27 18:01:59 +00:00
|
|
|
body, err := ioutil.ReadAll(response.Body)
|
|
|
|
if err != nil {
|
|
|
|
loghelper.LogSlotError(slot, err).Error("Unable to turn response into a []bytes array!")
|
2022-05-06 15:03:15 +00:00
|
|
|
return nil, rc, fmt.Errorf("Unable to turn response into a []bytes array!: %s", err.Error())
|
2022-04-27 18:01:59 +00:00
|
|
|
}
|
2022-05-06 15:03:15 +00:00
|
|
|
return body, rc, nil
|
2022-04-27 18:01:59 +00:00
|
|
|
}
|