2019-05-11 18:32:56 +00:00
|
|
|
'''
|
2019-06-12 06:44:15 +00:00
|
|
|
Onionr - Private P2P Communication
|
2019-05-11 18:32:56 +00:00
|
|
|
|
|
|
|
Lookup new peer transport addresses using the communicator
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
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/>.
|
|
|
|
'''
|
|
|
|
import logger
|
2019-06-23 17:41:07 +00:00
|
|
|
from onionrutils import stringvalidators
|
2019-05-11 18:32:56 +00:00
|
|
|
|
|
|
|
def lookup_new_peer_transports_with_communicator(comm_inst):
|
|
|
|
logger.info('Looking up new addresses...')
|
|
|
|
tryAmount = 1
|
|
|
|
newPeers = []
|
|
|
|
for i in range(tryAmount):
|
|
|
|
# Download new peer address list from random online peers
|
|
|
|
if len(newPeers) > 10000:
|
2019-06-12 06:44:15 +00:00
|
|
|
# Don't get new peers if we have too many queued up
|
2019-05-11 18:32:56 +00:00
|
|
|
break
|
|
|
|
peer = comm_inst.pickOnlinePeer()
|
|
|
|
newAdders = comm_inst.peerAction(peer, action='pex')
|
|
|
|
try:
|
|
|
|
newPeers = newAdders.split(',')
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# Validate new peers are good format and not already in queue
|
|
|
|
invalid = []
|
|
|
|
for x in newPeers:
|
|
|
|
x = x.strip()
|
2019-06-23 17:41:07 +00:00
|
|
|
if not stringvalidators.validate_transport(x) or x in comm_inst.newPeers or x == comm_inst._core.hsAddress:
|
2019-05-11 18:32:56 +00:00
|
|
|
# avoid adding if its our address
|
|
|
|
invalid.append(x)
|
|
|
|
for x in invalid:
|
|
|
|
newPeers.remove(x)
|
|
|
|
comm_inst.newPeers.extend(newPeers)
|
|
|
|
comm_inst.decrementThreadCount('lookupAdders')
|