nim-libp2p/libp2p/peerinfo.nim

102 lines
2.6 KiB
Nim
Raw Normal View History

2022-07-01 18:19:57 +00:00
# Nim-LibP2P
# Copyright (c) 2022 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
# at your option.
# This file may not be copied, modified, or distributed except according to
# those terms.
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
2022-07-01 18:19:57 +00:00
{.push public.}
2022-05-24 13:10:57 +00:00
import std/[options, sequtils]
import pkg/[chronos, chronicles, stew/results]
2022-07-01 18:19:57 +00:00
import peerid, multiaddress, crypto/crypto, routing_record, errors, utility
export peerid, multiaddress, crypto, routing_record, errors, results
## Our local peer info
type
2022-10-20 10:22:28 +00:00
PeerInfoError* = object of LPError
AddressMapper* =
proc(listenAddrs: seq[MultiAddress]): Future[seq[MultiAddress]]
{.gcsafe, raises: [Defect].}
2022-07-01 18:19:57 +00:00
PeerInfo* {.public.} = ref object
2021-12-16 10:05:20 +00:00
peerId*: PeerId
2022-10-20 10:22:28 +00:00
listenAddrs*: seq[MultiAddress]
addrs: seq[MultiAddress]
addressMappers*: seq[AddressMapper]
protocols*: seq[string]
2020-06-09 18:42:52 +00:00
protoVersion*: string
agentVersion*: string
privateKey*: PrivateKey
publicKey*: PublicKey
signedPeerRecord*: SignedPeerRecord
func shortLog*(p: PeerInfo): auto =
2020-06-09 18:42:52 +00:00
(
peerId: $p.peerId,
2022-10-20 10:22:28 +00:00
listenAddrs: mapIt(p.listenAddrs, $it),
2020-06-09 18:42:52 +00:00
addrs: mapIt(p.addrs, $it),
protocols: mapIt(p.protocols, $it),
protoVersion: p.protoVersion,
agentVersion: p.agentVersion,
)
chronicles.formatIt(PeerInfo): shortLog(it)
2022-10-20 10:22:28 +00:00
proc update*(p: PeerInfo) {.async.} =
p.addrs = p.listenAddrs
for mapper in p.addressMappers:
p.addrs = await mapper(p.addrs)
let sprRes = SignedPeerRecord.init(
p.privateKey,
PeerRecord.init(p.peerId, p.addrs)
)
if sprRes.isOk:
p.signedPeerRecord = sprRes.get()
else:
discard
#info "Can't update the signed peer record"
2022-10-20 10:22:28 +00:00
proc addrs*(p: PeerInfo): seq[MultiAddress] =
p.addrs
proc new*(
p: typedesc[PeerInfo],
key: PrivateKey,
2022-10-20 10:22:28 +00:00
listenAddrs: openArray[MultiAddress] = [],
2021-12-16 10:05:20 +00:00
protocols: openArray[string] = [],
protoVersion: string = "",
2022-10-20 10:22:28 +00:00
agentVersion: string = "",
addressMappers = newSeq[AddressMapper](),
): PeerInfo
{.raises: [Defect, LPError].} =
let pubkey = try:
key.getPublicKey().tryGet()
except CatchableError:
raise newException(PeerInfoError, "invalid private key")
2022-10-20 10:22:28 +00:00
let peerId = PeerId.init(key).tryGet()
let peerInfo = PeerInfo(
peerId: peerId,
publicKey: pubkey,
privateKey: key,
protoVersion: protoVersion,
agentVersion: agentVersion,
2022-10-20 10:22:28 +00:00
listenAddrs: @listenAddrs,
protocols: @protocols,
2022-10-20 10:22:28 +00:00
addressMappers: addressMappers
)
return peerInfo