Onionr/src/communicator/onlinepeers/pickonlinepeers.py

35 lines
1.3 KiB
Python
Raw Normal View History

2019-07-10 22:38:20 +00:00
'''
Onionr - Private P2P Communication
pick online peers in a communicator instance
'''
'''
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-18 17:40:48 +00:00
import secrets
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 = ''
2019-07-10 22:38:20 +00:00
while True:
2019-08-07 22:46:57 +00:00
peer_length = len(comm_inst.onlinePeers)
if peer_length <= 0:
2019-07-10 22:38:20 +00:00
break
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