''' Onionr - P2P Anonymous Storage Network Bootstrap onion direct connections for the clients ''' ''' 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 . ''' from gevent.pywsgi import WSGIServer, WSGIHandler from stem.control import Controller from flask import Flask import core from netcontroller import getOpenPort def bootstrap_client_service(peer, core_inst=None): ''' Bootstrap client services ''' if core_inst is None: core_inst = core.Core() if not core_inst._utils.validatePubKey(peer): raise ValueError('Peer must be valid base32 ed25519 public key') http_server = WSGIServer(('127.0.0.1', bootstrap_port), bootstrap_app, log=None) bootstrap_port = getOpenPort() bootstrap_app = flask.Flask(__name__) bootstrap_address = '' @bootstrap_app.route('/ping') def get_ping(): return "pong!" @bootstrap_app.route('/bs/
', methods=['POST']) def get_bootstrap(address): if core_inst._utils.validateID(address): # Set the bootstrap address then close the server bootstrap_address = address http_server.stop() with Controller.from_port() as controller: # Connect to the Tor process for Onionr controller.authenticate() # Create the v3 onion service response = controller.create_ephemeral_hidden_service({80: bootstrap_port}, await_publication = True, key_type='ED25519-V3') core_inst.insertBlock(response.hostname, header='con', sign=True, encryptType='asym', asymPeer=peer, disableForward=True) # Run the bootstrap server http_server.serve_forever() # This line reached when server is shutdown by being bootstrapped # Now that the bootstrap server has received a server, return the address return bootstrap_address