2019-04-29 05:38:40 +08:00
|
|
|
import ast
|
2019-08-01 06:00:12 +08:00
|
|
|
from typing import Union
|
|
|
|
|
|
|
|
from libp2p.kademlia.kad_peerinfo import KadPeerInfo, create_kad_peerinfo
|
2019-07-27 17:10:03 +08:00
|
|
|
from libp2p.kademlia.network import KademliaServer
|
|
|
|
from libp2p.peer.id import ID
|
2019-03-27 03:44:01 +08:00
|
|
|
from libp2p.routing.interfaces import IPeerRouting
|
|
|
|
|
|
|
|
|
|
|
|
class KadmeliaPeerRouter(IPeerRouting):
|
|
|
|
|
2019-07-27 17:10:03 +08:00
|
|
|
server: KademliaServer
|
|
|
|
|
|
|
|
def __init__(self, dht_server: KademliaServer) -> None:
|
2019-03-27 03:44:01 +08:00
|
|
|
self.server = dht_server
|
|
|
|
|
2019-07-27 17:10:03 +08:00
|
|
|
async def find_peer(self, peer_id: ID) -> KadPeerInfo:
|
2019-03-27 03:44:01 +08:00
|
|
|
"""
|
2019-05-06 02:32:41 +08:00
|
|
|
Find a specific peer
|
|
|
|
:param peer_id: peer to search for
|
|
|
|
:return: KadPeerInfo of specified peer
|
2019-03-27 03:44:01 +08:00
|
|
|
"""
|
2019-04-25 10:11:54 +08:00
|
|
|
# switching peer_id to xor_id used by kademlia as node_id
|
2019-07-31 19:26:13 +08:00
|
|
|
xor_id = peer_id.xor_id
|
2019-08-11 16:47:54 +08:00
|
|
|
# ignore type for kad
|
|
|
|
value = await self.server.get(xor_id) # type: ignore
|
2019-04-29 05:38:40 +08:00
|
|
|
return decode_peerinfo(value)
|
2019-03-27 03:44:01 +08:00
|
|
|
|
2019-08-01 06:00:12 +08:00
|
|
|
|
2019-07-27 17:10:03 +08:00
|
|
|
def decode_peerinfo(encoded: Union[bytes, str]) -> KadPeerInfo:
|
2019-04-29 05:38:40 +08:00
|
|
|
if isinstance(encoded, bytes):
|
|
|
|
encoded = encoded.decode()
|
|
|
|
try:
|
|
|
|
lines = ast.literal_eval(encoded)
|
|
|
|
except SyntaxError:
|
|
|
|
return None
|
2019-08-02 23:19:36 +08:00
|
|
|
ip = lines[1]
|
2019-04-29 05:38:40 +08:00
|
|
|
port = lines[2]
|
|
|
|
peer_id = lines[3]
|
2019-08-11 16:47:54 +08:00
|
|
|
# ignore typing for kad
|
|
|
|
peer_info = create_kad_peerinfo(peer_id, ip, port) # type: ignore
|
2019-04-29 05:38:40 +08:00
|
|
|
return peer_info
|