Onionr/src/communicator/onlinepeers/pickonlinepeers.py

43 lines
1.4 KiB
Python
Raw Normal View History

"""
Onionr - Private P2P Communication.
2019-07-10 22:38:20 +00:00
pick online peers in a communicator instance
"""
import secrets
import onionrexceptions
"""
2019-07-10 22:38:20 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
2019-07-10 22:38:20 +00:00
def pick_online_peer(comm_inst):
"""Randomly picks peer from pool without bias (using secrets module)."""
2019-08-07 22:46:57 +00:00
ret_data = ''
peer_length = len(comm_inst.onlinePeers)
if peer_length <= 0:
raise onionrexceptions.OnlinePeerNeeded
2019-07-10 22:38:20 +00:00
while True:
2019-08-07 22:46:57 +00:00
peer_length = len(comm_inst.onlinePeers)
2019-07-10 22:38:20 +00:00
try:
# Get a random online peer, securely.
# May get stuck in loop if network is lost or if all peers in pool magically disconnect at once
2019-08-07 22:46:57 +00:00
ret_data = comm_inst.onlinePeers[secrets.randbelow(peer_length)]
2019-07-10 22:38:20 +00:00
except IndexError:
pass
else:
break
2019-08-07 22:46:57 +00:00
return ret_data