mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
* refactored : host_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : network_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : notifee_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : net_connection_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored: raw_connection_interface, secure_conn_interface and stream_muxer abc.py * refactored: addrbook_interface * refactored :peerdata_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :peermetadata_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_client_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_communicator_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_muxer_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :interfaces Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :security_transport_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :listener_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * moved all interfaces and typing files Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * fixed documentation and moved pubsub abc.py Co-authored-by: Khwahish Patel <khwahish.p1@ahduni.edu.in> * added exclude-members in custom_types docs * added : newsfragment for moving all interfaces to libp2p.abc --------- Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> Co-authored-by: Mystical <125946525+mystical-prog@users.noreply.github.com>
121 lines
2.9 KiB
Python
121 lines
2.9 KiB
Python
from collections.abc import (
|
|
Sequence,
|
|
)
|
|
from typing import (
|
|
Any,
|
|
)
|
|
|
|
from multiaddr import (
|
|
Multiaddr,
|
|
)
|
|
|
|
from libp2p.abc import (
|
|
IPeerData,
|
|
)
|
|
from libp2p.crypto.keys import (
|
|
PrivateKey,
|
|
PublicKey,
|
|
)
|
|
|
|
|
|
class PeerData(IPeerData):
|
|
pubkey: PublicKey
|
|
privkey: PrivateKey
|
|
metadata: dict[Any, Any]
|
|
protocols: list[str]
|
|
addrs: list[Multiaddr]
|
|
|
|
def __init__(self) -> None:
|
|
self.pubkey = None
|
|
self.privkey = None
|
|
self.metadata = {}
|
|
self.protocols = []
|
|
self.addrs = []
|
|
|
|
def get_protocols(self) -> list[str]:
|
|
"""
|
|
:return: all protocols associated with given peer
|
|
"""
|
|
return self.protocols
|
|
|
|
def add_protocols(self, protocols: Sequence[str]) -> None:
|
|
"""
|
|
:param protocols: protocols to add
|
|
"""
|
|
self.protocols.extend(list(protocols))
|
|
|
|
def set_protocols(self, protocols: Sequence[str]) -> None:
|
|
"""
|
|
:param protocols: protocols to set
|
|
"""
|
|
self.protocols = list(protocols)
|
|
|
|
def add_addrs(self, addrs: Sequence[Multiaddr]) -> None:
|
|
"""
|
|
:param addrs: multiaddresses to add
|
|
"""
|
|
for addr in addrs:
|
|
if addr not in self.addrs:
|
|
self.addrs.append(addr)
|
|
|
|
def get_addrs(self) -> list[Multiaddr]:
|
|
"""
|
|
:return: all multiaddresses
|
|
"""
|
|
return self.addrs
|
|
|
|
def clear_addrs(self) -> None:
|
|
"""Clear all addresses."""
|
|
self.addrs = []
|
|
|
|
def put_metadata(self, key: str, val: Any) -> None:
|
|
"""
|
|
:param key: key in KV pair
|
|
:param val: val to associate with key
|
|
"""
|
|
self.metadata[key] = val
|
|
|
|
def get_metadata(self, key: str) -> Any:
|
|
"""
|
|
:param key: key in KV pair
|
|
:return: val for key
|
|
:raise PeerDataError: key not found
|
|
"""
|
|
if key in self.metadata:
|
|
return self.metadata[key]
|
|
raise PeerDataError("key not found")
|
|
|
|
def add_pubkey(self, pubkey: PublicKey) -> None:
|
|
"""
|
|
:param pubkey:
|
|
"""
|
|
self.pubkey = pubkey
|
|
|
|
def get_pubkey(self) -> PublicKey:
|
|
"""
|
|
:return: public key of the peer
|
|
:raise PeerDataError: if public key not found
|
|
"""
|
|
if self.pubkey is None:
|
|
raise PeerDataError("public key not found")
|
|
return self.pubkey
|
|
|
|
def add_privkey(self, privkey: PrivateKey) -> None:
|
|
"""
|
|
:param privkey:
|
|
"""
|
|
self.privkey = privkey
|
|
|
|
def get_privkey(self) -> PrivateKey:
|
|
"""
|
|
:return: private key of the peer
|
|
:raise PeerDataError: if private key not found
|
|
"""
|
|
if self.privkey is None:
|
|
raise PeerDataError("private key not found")
|
|
return self.privkey
|
|
|
|
|
|
class PeerDataError(KeyError):
|
|
"""Raised when a key is not found in peer metadata."""
|