nim-eth/eth/p2p/discoveryv5/node.nim

66 lines
1.8 KiB
Nim
Raw Normal View History

import
2020-03-05 00:25:21 +00:00
std/[net, hashes], nimcrypto, stint, chronicles,
types, enr, eth/keys, ../enode
2019-12-16 19:38:45 +00:00
type
Node* = ref object
node*: ENode
id*: NodeId
record*: Record
proc toNodeId*(pk: PublicKey): NodeId =
readUintBE[256](keccak256.digest(pk.getRaw()).data)
proc newNode*(enode: ENode): Node =
Node(node: enode,
id: enode.pubkey.toNodeId())
proc newNode*(enode: ENode, r: Record): Node =
Node(node: enode,
id: enode.pubkey.toNodeId(),
record: r)
2019-12-16 19:38:45 +00:00
proc newNode*(uriString: string): Node =
newNode initENode(uriString)
2019-12-16 19:38:45 +00:00
proc newNode*(pk: PublicKey, address: Address): Node =
newNode initENode(pk, address)
2019-12-16 19:38:45 +00:00
proc newNode*(r: Record): Node =
# TODO: Handle IPv6
var a: Address
try:
let
ipBytes = r.get("ip", array[4, byte])
udpPort = r.get("udp", uint16)
a = Address(ip: IpAddress(family: IpAddressFamily.IPv4,
address_v4: ipBytes),
udpPort: Port udpPort)
except KeyError:
# TODO: This will result in a 0.0.0.0 address. Might introduce more bugs.
# Maybe we shouldn't allow the creation of Node from Record without IP.
# Will need some refactor though.
discard
2019-12-16 19:38:45 +00:00
var pk: PublicKey
2019-12-16 19:38:45 +00:00
if recoverPublicKey(r.get("secp256k1", seq[byte]), pk) != EthKeysStatus.Success:
warn "Could not recover public key"
return
2019-12-16 19:38:45 +00:00
result = newNode(initENode(pk, a))
result.record = r
proc hash*(n: Node): hashes.Hash = hash(n.node.pubkey.data)
proc `==`*(a, b: Node): bool = (a.isNil and b.isNil) or (not a.isNil and not b.isNil and a.node.pubkey == b.node.pubkey)
proc address*(n: Node): Address {.inline.} = n.node.address
proc updateEndpoint*(n: Node, a: Address) {.inline.} = n.node.address = a
2019-12-16 19:38:45 +00:00
proc `$`*(n: Node): string =
if n == nil:
"Node[local]"
else:
"Node[" & $n.node.address.ip & ":" & $n.node.address.udpPort & "]"