2022-01-14 15:07:14 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2022 Status Research & Development GmbH
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
import
|
|
|
|
json_rpc/[rpcproxy, rpcserver], stew/byteutils,
|
|
|
|
../network/wire/portal_protocol,
|
2022-07-20 10:46:42 +00:00
|
|
|
".."/[content_db, seed_db]
|
2022-01-14 15:07:14 +00:00
|
|
|
|
|
|
|
export rpcserver
|
|
|
|
|
|
|
|
# Some RPCs that are (currently) useful for testing & debugging
|
|
|
|
proc installPortalDebugApiHandlers*(
|
|
|
|
rpcServer: RpcServer|RpcProxy, p: PortalProtocol, network: static string)
|
|
|
|
{.raises: [Defect, CatchableError].} =
|
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_store") do(
|
2022-05-24 11:27:22 +00:00
|
|
|
contentKey: string, content: string) -> bool:
|
|
|
|
let key = ByteList.init(hexToSeqByte(contentKey))
|
|
|
|
let contentId = p.toContentId(key)
|
2022-01-14 15:07:14 +00:00
|
|
|
|
2022-05-24 11:27:22 +00:00
|
|
|
if contentId.isSome():
|
|
|
|
p.storeContent(contentId.get(), hexToSeqByte(content))
|
|
|
|
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, "Invalid content key")
|
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_storeContent") do(
|
|
|
|
dataFile: string) -> bool:
|
|
|
|
let res = p.historyStore(dataFile)
|
|
|
|
if res.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $res.error)
|
2022-02-11 13:43:10 +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
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_propagateBlock") do(
|
|
|
|
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
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_storeContentInNodeRange") do(
|
|
|
|
dbPath: string,
|
|
|
|
max: uint32,
|
|
|
|
starting: uint32) -> bool:
|
|
|
|
|
|
|
|
let storeResult = p.storeContentInNodeRange(dbPath, max, starting)
|
|
|
|
|
|
|
|
if storeResult.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $storeResult.error)
|
|
|
|
|
|
|
|
rpcServer.rpc("portal_" & network & "_offerContentInNodeRange") do(
|
|
|
|
dbPath: string,
|
|
|
|
nodeId: NodeId,
|
|
|
|
max: uint32,
|
|
|
|
starting: uint32) -> bool:
|
|
|
|
# waiting for offer result, by the end of this call remote node should
|
|
|
|
# have received offered content
|
|
|
|
let offerResult = await p.offerContentInNodeRange(dbPath, nodeId, max, starting)
|
|
|
|
|
|
|
|
if offerResult.isOk():
|
|
|
|
return true
|
|
|
|
else:
|
|
|
|
raise newException(ValueError, $offerResult.error)
|