2022-01-18 13:36:52 +00:00
|
|
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
2021-08-03 15:17:11 +00:00
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2022-07-29 10:53:42 +00:00
|
|
|
when (NimMajor, NimMinor) < (1, 4):
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
else:
|
|
|
|
{.push raises: [].}
|
2021-08-03 15:17:11 +00:00
|
|
|
|
|
|
|
import
|
2021-08-27 09:00:06 +00:00
|
|
|
chronos, presto/client,
|
2022-01-18 13:36:52 +00:00
|
|
|
".."/[helpers, forks], ".."/datatypes/[phase0, altair],
|
2021-08-03 15:17:11 +00:00
|
|
|
"."/[rest_types, eth2_rest_serialization]
|
|
|
|
|
2021-08-27 09:00:06 +00:00
|
|
|
export chronos, client, rest_types, eth2_rest_serialization
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2021-09-27 18:31:11 +00:00
|
|
|
proc getStatePlain*(state_id: StateIdent): RestPlainResponse {.
|
2021-08-03 15:17:11 +00:00
|
|
|
rest, endpoint: "/eth/v1/debug/beacon/states/{state_id}",
|
2022-02-04 13:26:27 +00:00
|
|
|
accept: preferSSZ,
|
2021-08-03 15:17:11 +00:00
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Beacon/getState
|
2021-08-03 15:17:11 +00:00
|
|
|
|
2021-09-27 18:31:11 +00:00
|
|
|
proc getState*(client: RestClientRef, state_id: StateIdent,
|
2022-02-11 11:01:45 +00:00
|
|
|
restAccept = ""): Future[phase0.BeaconState] {.async.} =
|
2021-09-27 18:31:11 +00:00
|
|
|
let resp =
|
|
|
|
if len(restAccept) > 0:
|
|
|
|
await client.getStatePlain(state_id, restAcceptType = restAccept)
|
|
|
|
else:
|
|
|
|
await client.getStatePlain(state_id)
|
|
|
|
let data =
|
|
|
|
case resp.status
|
|
|
|
of 200:
|
2022-09-19 09:17:29 +00:00
|
|
|
if resp.contentType.isNone() or
|
|
|
|
isWildCard(resp.contentType.get().mediaType):
|
|
|
|
raise newException(RestError, "Missing or incorrect Content-Type")
|
2021-09-27 18:31:11 +00:00
|
|
|
else:
|
2022-09-19 09:17:29 +00:00
|
|
|
let mediaType = resp.contentType.get().mediaType
|
|
|
|
if mediaType == ApplicationJsonMediaType:
|
|
|
|
let state = decodeBytes(GetStateResponse, resp.data,
|
|
|
|
resp.contentType).valueOr:
|
|
|
|
raise newException(RestError, $error)
|
|
|
|
state.data
|
|
|
|
elif mediaType == OctetStreamMediaType:
|
|
|
|
let state = decodeBytes(GetPhase0StateSszResponse, resp.data,
|
|
|
|
resp.contentType).valueOr:
|
|
|
|
raise newException(RestError, $error)
|
|
|
|
state
|
|
|
|
else:
|
|
|
|
raise newException(RestError, "Unsupported content-type")
|
2021-09-27 18:31:11 +00:00
|
|
|
of 400, 404, 500:
|
|
|
|
let error =
|
|
|
|
block:
|
|
|
|
let res = decodeBytes(RestGenericError, resp.data, resp.contentType)
|
|
|
|
if res.isErr():
|
|
|
|
let msg = "Incorrect response error format (" & $resp.status &
|
|
|
|
") [" & $res.error() & "]"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
res.get()
|
|
|
|
let msg = "Error response (" & $resp.status & ") [" & error.message & "]"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
else:
|
|
|
|
let msg = "Unknown response status error (" & $resp.status & ")"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
return data
|
2021-08-03 15:17:11 +00:00
|
|
|
|
|
|
|
proc getDebugChainHeads*(): RestResponse[GetDebugChainHeadsResponse] {.
|
|
|
|
rest, endpoint: "/eth/v1/debug/beacon/heads",
|
|
|
|
meth: MethodGet.}
|
2021-08-27 09:00:06 +00:00
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Beacon/getDebugChainHeads
|
2021-09-27 18:31:11 +00:00
|
|
|
|
|
|
|
proc getStateV2Plain*(state_id: StateIdent): RestPlainResponse {.
|
|
|
|
rest, endpoint: "/eth/v2/debug/beacon/states/{state_id}",
|
2022-02-04 13:26:27 +00:00
|
|
|
accept: preferSSZ,
|
2021-09-27 18:31:11 +00:00
|
|
|
meth: MethodGet.}
|
|
|
|
## https://ethereum.github.io/beacon-APIs/#/Debug/getStateV2
|
|
|
|
|
|
|
|
proc getStateV2*(client: RestClientRef, state_id: StateIdent,
|
2022-02-11 11:01:45 +00:00
|
|
|
cfg: RuntimeConfig, restAccept = ""
|
|
|
|
): Future[ref ForkedHashedBeaconState] {.async.} =
|
2022-01-06 07:38:40 +00:00
|
|
|
# nil is returned if the state is not found due to a 404 - `ref` is needed
|
|
|
|
# to manage stack usage
|
2021-09-27 18:31:11 +00:00
|
|
|
let resp =
|
|
|
|
if len(restAccept) > 0:
|
|
|
|
await client.getStateV2Plain(state_id, restAcceptType = restAccept)
|
|
|
|
else:
|
|
|
|
await client.getStateV2Plain(state_id)
|
|
|
|
let data =
|
|
|
|
case resp.status
|
|
|
|
of 200:
|
2022-09-19 09:17:29 +00:00
|
|
|
if resp.contentType.isNone() or
|
|
|
|
isWildCard(resp.contentType.get().mediaType):
|
|
|
|
raise newException(RestError, "Missing or incorrect Content-Type")
|
2021-09-27 18:31:11 +00:00
|
|
|
else:
|
2022-09-19 09:17:29 +00:00
|
|
|
let mediaType = resp.contentType.get().mediaType
|
|
|
|
if mediaType == ApplicationJsonMediaType:
|
|
|
|
let state =
|
|
|
|
block:
|
|
|
|
let res = newClone(decodeBytes(GetStateV2Response, resp.data,
|
|
|
|
resp.contentType))
|
|
|
|
if res[].isErr():
|
|
|
|
raise newException(RestError, $res[].error())
|
|
|
|
newClone(res[].get())
|
|
|
|
state
|
|
|
|
elif mediaType == OctetStreamMediaType:
|
|
|
|
try:
|
|
|
|
newClone(readSszForkedHashedBeaconState(cfg, resp.data))
|
|
|
|
except CatchableError as exc:
|
|
|
|
raise newException(RestError, exc.msg)
|
|
|
|
else:
|
|
|
|
raise newException(RestError, "Unsupported content-type")
|
2022-01-06 07:38:40 +00:00
|
|
|
of 404:
|
|
|
|
nil
|
|
|
|
of 400, 500:
|
2021-09-27 18:31:11 +00:00
|
|
|
let error =
|
|
|
|
block:
|
|
|
|
let res = decodeBytes(RestGenericError, resp.data, resp.contentType)
|
|
|
|
if res.isErr():
|
|
|
|
let msg = "Incorrect response error format (" & $resp.status &
|
|
|
|
") [" & $res.error() & "]"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
res.get()
|
|
|
|
let msg = "Error response (" & $resp.status & ") [" & error.message & "]"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
else:
|
|
|
|
let msg = "Unknown response status error (" & $resp.status & ")"
|
|
|
|
raise newException(RestError, msg)
|
|
|
|
return data
|