2019-07-02 23:16:04 +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/>.
|
|
|
|
'''
|
|
|
|
from flask import Response, Blueprint, request, send_from_directory, abort
|
2019-09-10 06:05:59 +00:00
|
|
|
import unpaddedbase32
|
2019-09-06 22:22:33 +00:00
|
|
|
|
2019-07-02 23:16:04 +00:00
|
|
|
from httpapi import apiutils
|
2019-08-02 23:00:04 +00:00
|
|
|
import onionrcrypto, config
|
2019-08-04 04:52:57 +00:00
|
|
|
from netcontroller import NetController
|
2019-08-05 04:08:56 +00:00
|
|
|
from serializeddata import SerializedData
|
2019-09-06 20:09:39 +00:00
|
|
|
from onionrutils import mnemonickeys
|
|
|
|
from onionrutils import bytesconverter
|
2019-09-17 01:16:06 +00:00
|
|
|
from utils import reconstructhash
|
2019-09-20 17:53:42 +00:00
|
|
|
from onionrcommands import restartonionr
|
2019-09-06 20:09:39 +00:00
|
|
|
|
2019-09-06 22:22:33 +00:00
|
|
|
pub_key = onionrcrypto.pub_key.replace('=', '')
|
|
|
|
|
2019-07-02 23:16:04 +00:00
|
|
|
class PrivateEndpoints:
|
|
|
|
def __init__(self, client_api):
|
|
|
|
private_endpoints_bp = Blueprint('privateendpoints', __name__)
|
|
|
|
self.private_endpoints_bp = private_endpoints_bp
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/www/<path:path>', endpoint='www')
|
|
|
|
def wwwPublic(path):
|
|
|
|
if not config.get("www.private.run", True):
|
|
|
|
abort(403)
|
|
|
|
return send_from_directory(config.get('www.private.path', 'static-data/www/private/'), path)
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/hitcount')
|
|
|
|
def get_hit_count():
|
|
|
|
return Response(str(client_api.publicAPI.hitCount))
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/queueResponseAdd/<name>', methods=['post'])
|
|
|
|
def queueResponseAdd(name):
|
|
|
|
# Responses from the daemon. TODO: change to direct var access instead of http endpoint
|
|
|
|
client_api.queueResponse[name] = request.form['data']
|
|
|
|
return Response('success')
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/queueResponse/<name>')
|
|
|
|
def queueResponse(name):
|
|
|
|
# Fetch a daemon queue response
|
|
|
|
resp = 'failure'
|
|
|
|
try:
|
|
|
|
resp = client_api.queueResponse[name]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
del client_api.queueResponse[name]
|
|
|
|
if resp == 'failure':
|
|
|
|
return resp, 404
|
|
|
|
else:
|
|
|
|
return resp
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/ping')
|
|
|
|
def ping():
|
|
|
|
# Used to check if client api is working
|
|
|
|
return Response("pong!")
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/lastconnect')
|
|
|
|
def lastConnect():
|
|
|
|
return Response(str(client_api.publicAPI.lastRequest))
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/waitforshare/<name>', methods=['post'])
|
|
|
|
def waitforshare(name):
|
|
|
|
'''Used to prevent the **public** api from sharing blocks we just created'''
|
2019-09-09 00:21:36 +00:00
|
|
|
if not name.isalnum(): raise ValueError('block hash needs to be alpha numeric')
|
2019-09-17 01:16:06 +00:00
|
|
|
name = reconstructhash.reconstruct_hash(name)
|
2019-07-02 23:16:04 +00:00
|
|
|
if name in client_api.publicAPI.hideBlocks:
|
|
|
|
client_api.publicAPI.hideBlocks.remove(name)
|
|
|
|
return Response("removed")
|
|
|
|
else:
|
2019-07-03 00:35:59 +00:00
|
|
|
client_api.publicAPI.hideBlocks.append(name)
|
2019-07-02 23:16:04 +00:00
|
|
|
return Response("added")
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/shutdown')
|
|
|
|
def shutdown():
|
|
|
|
return apiutils.shutdown.shutdown(client_api)
|
2019-09-20 17:53:42 +00:00
|
|
|
|
|
|
|
@private_endpoints_bp.route('/restartclean')
|
|
|
|
def restart_clean():
|
|
|
|
restartonionr.restart()
|
|
|
|
return Response("bye")
|
2019-07-02 23:16:04 +00:00
|
|
|
|
|
|
|
@private_endpoints_bp.route('/getstats')
|
|
|
|
def getStats():
|
|
|
|
# returns node stats
|
|
|
|
while True:
|
|
|
|
try:
|
2019-09-14 06:29:31 +00:00
|
|
|
return Response(client_api._too_many.get(SerializedData).get_stats())
|
2019-08-05 04:08:56 +00:00
|
|
|
except AttributeError as e:
|
2019-07-02 23:16:04 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/getuptime')
|
|
|
|
def showUptime():
|
|
|
|
return Response(str(client_api.getUptime()))
|
|
|
|
|
|
|
|
@private_endpoints_bp.route('/getActivePubkey')
|
|
|
|
def getActivePubkey():
|
2019-07-21 00:29:08 +00:00
|
|
|
return Response(pub_key)
|
2019-07-02 23:16:04 +00:00
|
|
|
|
2019-09-06 20:09:39 +00:00
|
|
|
@private_endpoints_bp.route('/getHumanReadable')
|
|
|
|
def getHumanReadableDefault():
|
|
|
|
return Response(mnemonickeys.get_human_readable_ID())
|
|
|
|
|
2019-07-02 23:16:04 +00:00
|
|
|
@private_endpoints_bp.route('/getHumanReadable/<name>')
|
|
|
|
def getHumanReadable(name):
|
2019-09-10 06:05:59 +00:00
|
|
|
name = unpaddedbase32.repad(bytesconverter.str_to_bytes(name))
|
2019-08-04 04:52:57 +00:00
|
|
|
return Response(mnemonickeys.get_human_readable_ID(name))
|
|
|
|
|
2019-09-06 20:09:39 +00:00
|
|
|
@private_endpoints_bp.route('/getBase32FromHumanReadable/<words>')
|
|
|
|
def get_base32_from_human_readable(words):
|
|
|
|
return Response(bytesconverter.bytes_to_str(mnemonickeys.get_base32(words)))
|
|
|
|
|
2019-08-04 04:52:57 +00:00
|
|
|
@private_endpoints_bp.route('/gettorsocks')
|
|
|
|
def get_tor_socks():
|
2019-08-16 20:41:56 +00:00
|
|
|
return Response(str(client_api._too_many.get(NetController).socksPort))
|