2021-06-16 19:18:45 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2021 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
|
|
|
|
confutils, confutils/std/net, chronicles, chronicles/topics_registry,
|
2021-07-09 11:34:16 +00:00
|
|
|
chronos, metrics, metrics/chronos_httpserver, json_rpc/clients/httpclient,
|
|
|
|
json_rpc/rpcproxy,
|
2021-06-16 19:18:45 +00:00
|
|
|
eth/keys, eth/net/nat,
|
|
|
|
eth/p2p/discoveryv5/protocol as discv5_protocol,
|
2021-09-03 08:57:19 +00:00
|
|
|
./conf, ./rpc/[eth_api, bridge_client, discovery_api],
|
|
|
|
./network/state/[portal_network, content]
|
2021-07-02 05:30:48 +00:00
|
|
|
|
|
|
|
proc initializeBridgeClient(maybeUri: Option[string]): Option[BridgeClient] =
|
|
|
|
try:
|
|
|
|
if (maybeUri.isSome()):
|
|
|
|
let uri = maybeUri.unsafeGet()
|
|
|
|
# TODO: Add possiblity to start client on differnt transports based on uri.
|
|
|
|
let httpClient = newRpcHttpClient()
|
|
|
|
waitFor httpClient.connect(uri)
|
|
|
|
notice "Initialized bridge client:", uri = uri
|
|
|
|
return some[BridgeClient](httpClient)
|
|
|
|
else:
|
|
|
|
return none(BridgeClient)
|
|
|
|
except CatchableError as err:
|
|
|
|
notice "Failed to initialize bridge client", error = err.msg
|
|
|
|
return none(BridgeClient)
|
2021-06-16 19:18:45 +00:00
|
|
|
|
|
|
|
proc run(config: PortalConf) {.raises: [CatchableError, Defect].} =
|
|
|
|
let
|
|
|
|
rng = newRng()
|
|
|
|
bindIp = config.listenAddress
|
|
|
|
udpPort = Port(config.udpPort)
|
|
|
|
# TODO: allow for no TCP port mapping!
|
|
|
|
(extIp, _, extUdpPort) =
|
|
|
|
try: setupAddress(config.nat,
|
|
|
|
config.listenAddress, udpPort, udpPort, "dcli")
|
|
|
|
except CatchableError as exc: raise exc
|
|
|
|
# TODO: Ideally we don't have the Exception here
|
|
|
|
except Exception as exc: raiseAssert exc.msg
|
|
|
|
|
|
|
|
let d = newProtocol(config.nodeKey,
|
|
|
|
extIp, none(Port), extUdpPort,
|
|
|
|
bootstrapRecords = config.bootnodes,
|
|
|
|
bindIp = bindIp, bindPort = udpPort,
|
|
|
|
enrAutoUpdate = config.enrAutoUpdate,
|
|
|
|
rng = rng)
|
|
|
|
|
|
|
|
d.open()
|
|
|
|
|
2021-09-03 08:57:19 +00:00
|
|
|
let portal = PortalNetwork.new(d, newEmptyInMemoryStorage())
|
2021-06-16 19:18:45 +00:00
|
|
|
|
|
|
|
if config.metricsEnabled:
|
|
|
|
let
|
|
|
|
address = config.metricsAddress
|
|
|
|
port = config.metricsPort
|
|
|
|
notice "Starting metrics HTTP server",
|
|
|
|
url = "http://" & $address & ":" & $port & "/metrics"
|
|
|
|
try:
|
|
|
|
chronos_httpserver.startMetricsHttpServer($address, port)
|
|
|
|
except CatchableError as exc: raise exc
|
|
|
|
# TODO: Ideally we don't have the Exception here
|
|
|
|
except Exception as exc: raiseAssert exc.msg
|
|
|
|
|
2021-06-18 17:20:48 +00:00
|
|
|
if config.rpcEnabled:
|
2021-07-07 12:13:27 +00:00
|
|
|
let ta = initTAddress(config.rpcAddress, config.rpcPort)
|
2021-08-05 06:14:25 +00:00
|
|
|
var rpcHttpServerWithProxy = RpcProxy.new([ta], config.proxyUri)
|
2021-07-07 12:13:27 +00:00
|
|
|
rpcHttpServerWithProxy.installEthApiHandlers()
|
2021-08-27 16:04:55 +00:00
|
|
|
rpcHttpServerWithProxy.installDiscoveryApiHandlers(d)
|
2021-07-07 12:13:27 +00:00
|
|
|
# TODO for now we can only proxy to local node (or remote one without ssl) to make it possible
|
|
|
|
# to call infura https://github.com/status-im/nim-json-rpc/pull/101 needs to get merged for http client to support https/
|
2021-08-05 06:14:25 +00:00
|
|
|
waitFor rpcHttpServerWithProxy.start()
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2021-07-02 05:30:48 +00:00
|
|
|
let bridgeClient = initializeBridgeClient(config.bridgeUri)
|
|
|
|
|
2021-06-16 19:18:45 +00:00
|
|
|
d.start()
|
2021-07-30 19:19:03 +00:00
|
|
|
portal.start()
|
2021-06-16 19:18:45 +00:00
|
|
|
|
|
|
|
runForever()
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
{.pop.}
|
|
|
|
let config = PortalConf.load()
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
|
|
|
setLogLevel(config.logLevel)
|
|
|
|
|
|
|
|
case config.cmd
|
|
|
|
of noCommand: run(config)
|