2023-12-01 16:20:52 +00:00
|
|
|
# Fluffy
|
2024-01-25 10:04:09 +00:00
|
|
|
# Copyright (c) 2022-2024 Status Research & Development GmbH
|
2022-01-14 15:07:14 +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.
|
|
|
|
|
2023-01-31 12:38:08 +00:00
|
|
|
{.push raises: [].}
|
2022-01-14 15:07:14 +00:00
|
|
|
|
|
|
|
import
|
2024-02-28 17:31:45 +00:00
|
|
|
json_rpc/[rpcproxy, rpcserver],
|
|
|
|
stew/byteutils,
|
2022-01-14 15:07:14 +00:00
|
|
|
../network/wire/portal_protocol,
|
2023-01-05 14:26:58 +00:00
|
|
|
../eth_data/history_data_seeding,
|
2024-07-10 21:02:15 +00:00
|
|
|
../database/content_db
|
2022-01-14 15:07:14 +00:00
|
|
|
|
|
|
|
export rpcserver
|
|
|
|
|
2024-02-15 15:49:22 +00:00
|
|
|
# Non-spec-RPCs that are used for testing, debugging and seeding data without a
|
|
|
|
# bridge.
|
2022-01-14 15:07:14 +00:00
|
|
|
proc installPortalDebugApiHandlers*(
|
2024-02-28 17:31:45 +00:00
|
|
|
rpcServer: RpcServer | RpcProxy, p: PortalProtocol, network: static string
|
|
|
|
) =
|
2024-02-15 15:49:22 +00:00
|
|
|
## Portal debug API calls related to storage and seeding from Era1 files.
|
|
|
|
rpcServer.rpc("portal_" & network & "GossipHeaders") do(
|
2024-07-11 15:42:45 +00:00
|
|
|
era1File: string, epochRecordFile: Opt[string]
|
2024-02-28 17:31:45 +00:00
|
|
|
) -> bool:
|
2024-07-11 15:42:45 +00:00
|
|
|
let res = await p.historyGossipHeadersWithProof(era1File, epochRecordFile)
|
2024-02-15 15:49:22 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
|
|
|
|
2024-02-28 17:31:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "GossipBlockContent") do(era1File: string) -> bool:
|
2024-02-15 15:49:22 +00:00
|
|
|
let res = await p.historyGossipBlockContent(era1File)
|
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
|
|
|
|
|
|
|
## Portal debug API calls related to storage and seeding
|
|
|
|
## TODO: To be removed/replaced with the Era1 versions where applicable.
|
2024-02-28 17:31:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_storeContent") do(dataFile: string) -> bool:
|
2022-05-24 11:27:22 +00:00
|
|
|
let res = p.historyStore(dataFile)
|
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
2022-02-11 13:43:10 +00:00
|
|
|
|
2024-02-28 17:31:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_propagate") do(dataFile: string) -> bool:
|
2022-05-24 11:27:22 +00:00
|
|
|
let res = await p.historyPropagate(dataFile)
|
2022-02-11 13:43:10 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
2022-04-12 13:49:19 +00:00
|
|
|
|
2024-02-28 17:31:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_propagateHeaders") do(dataDir: string) -> bool:
|
2022-11-04 08:27:01 +00:00
|
|
|
let res = await p.historyPropagateHeadersWithProof(dataDir)
|
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_propagateHeaders") do(
|
2024-07-11 15:42:45 +00:00
|
|
|
epochHeadersFile: string, epochRecordFile: string
|
2024-02-28 17:31:45 +00:00
|
|
|
) -> bool:
|
|
|
|
let res =
|
2024-07-11 15:42:45 +00:00
|
|
|
await p.historyPropagateHeadersWithProof(epochHeadersFile, epochRecordFile)
|
2022-09-29 06:42:54 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
|
|
|
|
2022-04-12 13:49:19 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_propagateBlock") do(
|
2024-02-28 17:31:45 +00:00
|
|
|
dataFile: string, blockHash: string
|
|
|
|
) -> bool:
|
2022-05-24 11:27:22 +00:00
|
|
|
let res = await p.historyPropagateBlock(dataFile, blockHash)
|
2022-04-12 13:49:19 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
2022-07-20 10:46:42 +00:00
|
|
|
|
2024-07-11 15:42:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_propagateEpochRecord") do(
|
2024-02-28 17:31:45 +00:00
|
|
|
dataFile: string
|
|
|
|
) -> bool:
|
2024-07-11 15:42:45 +00:00
|
|
|
let res = await p.propagateEpochRecord(dataFile)
|
2022-08-01 19:00:21 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
|
|
|
|
2024-07-11 15:42:45 +00:00
|
|
|
rpcServer.rpc("portal_" & network & "_propagateEpochRecords") do(path: string) -> bool:
|
|
|
|
let res = await p.propagateEpochRecords(path)
|
2022-08-01 19:00:21 +00:00
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|