''' Onionr - Private P2P Communication Misc client API endpoints too small to need their own file and that need access to the client api inst ''' ''' 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 . ''' import threading from flask import Response from flask import Blueprint from flask import g import deadsimplekv import filepaths import onionrservices def _get_communicator(g): return g.too_many.get_by_string("OnionrCommunicatorDaemon") class DirectConnectionManagement: def __init__(self, client_api): direct_conn_management_bp = Blueprint('direct_conn_management', __name__) self.direct_conn_management_bp = direct_conn_management_bp cache = deadsimplekv.DeadSimpleKV(filepaths.cached_storage) @direct_conn_management_bp.route('/dc-client/isconnected/') def is_connected(pubkey): communicator = _get_communicator(g) resp = "" if pubkey in communicator.direct_connection_clients: resp = communicator.direct_connection_clients[pubkey] return Response(resp) @direct_conn_management_bp.route('/dc-client/connect/') def make_new_connection(pubkey): communicator = _get_communicator(g) resp = "pending" if pubkey in communicator.direct_connection_clients: resp = communicator.direct_connection_clients[pubkey] """Spawn a thread that will create the client and eventually add it to the communicator.active_services """ threading.Thread(target=onionrservices.OnionrServices().create_client, args=[pubkey, communicator], daemon=True).start() return Response(resp)