2019-08-15 08:36:05 +00:00
|
|
|
'''
|
|
|
|
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 <https://www.gnu.org/licenses/>.
|
|
|
|
'''
|
2019-08-25 08:08:09 +00:00
|
|
|
import threading # For the client creation thread
|
2019-08-16 21:28:54 +00:00
|
|
|
|
2019-08-25 08:08:09 +00:00
|
|
|
from flask import Response # For direct connection management HTTP endpoints
|
|
|
|
from flask import Blueprint # To make the direct connection management blueprint in the webUI
|
|
|
|
from flask import g # Mainly to access the shared toomanyobjs object
|
2019-08-16 20:41:56 +00:00
|
|
|
import deadsimplekv
|
2019-08-15 08:36:05 +00:00
|
|
|
|
2019-08-16 20:41:56 +00:00
|
|
|
import filepaths
|
2019-08-16 21:28:54 +00:00
|
|
|
import onionrservices
|
2019-08-26 02:18:09 +00:00
|
|
|
from onionrservices import pool
|
2019-08-15 08:36:05 +00:00
|
|
|
|
2019-08-16 22:40:17 +00:00
|
|
|
def _get_communicator(g):
|
2019-08-26 02:18:09 +00:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
return g.too_many.get_by_string("OnionrCommunicatorDaemon")
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2019-08-16 22:40:17 +00:00
|
|
|
|
2019-08-15 08:36:05 +00:00
|
|
|
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
|
|
|
|
|
2019-08-16 22:40:17 +00:00
|
|
|
cache = deadsimplekv.DeadSimpleKV(filepaths.cached_storage)
|
2019-08-16 20:41:56 +00:00
|
|
|
|
|
|
|
@direct_conn_management_bp.route('/dc-client/isconnected/<pubkey>')
|
2019-08-15 08:36:05 +00:00
|
|
|
def is_connected(pubkey):
|
2019-08-16 22:40:17 +00:00
|
|
|
communicator = _get_communicator(g)
|
2019-08-16 20:41:56 +00:00
|
|
|
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/<pubkey>')
|
|
|
|
def make_new_connection(pubkey):
|
2019-08-16 22:40:17 +00:00
|
|
|
communicator = _get_communicator(g)
|
2019-08-16 20:41:56 +00:00
|
|
|
resp = "pending"
|
2019-08-26 02:18:09 +00:00
|
|
|
if pubkey in communicator.shared_state.get(pool.ServicePool).bootstrap_pending:
|
2019-08-25 08:08:09 +00:00
|
|
|
return Response(resp)
|
|
|
|
|
2019-08-16 20:41:56 +00:00
|
|
|
if pubkey in communicator.direct_connection_clients:
|
2019-08-16 22:40:17 +00:00
|
|
|
resp = communicator.direct_connection_clients[pubkey]
|
2019-08-18 05:54:52 +00:00
|
|
|
else:
|
|
|
|
"""Spawn a thread that will create the client and eventually add it to the
|
|
|
|
communicator.active_services
|
|
|
|
"""
|
2019-08-25 08:08:09 +00:00
|
|
|
threading.Thread(target=onionrservices.OnionrServices().create_client,
|
|
|
|
args=[pubkey, communicator], daemon=True).start()
|
2019-08-16 20:41:56 +00:00
|
|
|
|
|
|
|
return Response(resp)
|