2017-12-26 07:25:29 +00:00
|
|
|
'''
|
2019-06-12 00:05:15 +00:00
|
|
|
Onionr - Private P2P Communication
|
2018-01-14 08:48:23 +00:00
|
|
|
|
|
|
|
This file handles all incoming http requests to the client, using Flask
|
|
|
|
'''
|
|
|
|
'''
|
2017-12-26 07:25:29 +00:00
|
|
|
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-07-02 06:32:26 +00:00
|
|
|
import threading, hmac, base64, time, os
|
|
|
|
from gevent.pywsgi import WSGIServer
|
2019-06-15 18:56:57 +00:00
|
|
|
import flask
|
2018-07-27 05:48:22 +00:00
|
|
|
from flask import request, Response, abort, send_from_directory
|
2018-10-27 03:29:25 +00:00
|
|
|
import core
|
2019-07-02 06:32:26 +00:00
|
|
|
import onionrexceptions, onionrcrypto, logger, config
|
2019-03-02 06:22:59 +00:00
|
|
|
import httpapi
|
2019-07-01 20:38:55 +00:00
|
|
|
from httpapi import friendsapi, profilesapi, configapi, miscpublicapi, miscclientapi, insertblock, onionrsitesapi
|
2019-03-26 04:25:46 +00:00
|
|
|
from onionrservices import httpheaders
|
2019-02-21 20:25:45 +00:00
|
|
|
import onionr
|
2019-06-25 23:07:35 +00:00
|
|
|
from onionrutils import bytesconverter, stringvalidators, epoch, mnemonickeys
|
2019-07-02 06:32:26 +00:00
|
|
|
from httpapi import apiutils, security, fdsafehandler
|
2019-06-15 18:56:57 +00:00
|
|
|
|
2019-06-15 01:31:01 +00:00
|
|
|
config.reload()
|
2019-01-08 05:51:39 +00:00
|
|
|
|
|
|
|
class PublicAPI:
|
|
|
|
'''
|
|
|
|
The new client api server, isolated from the public api
|
|
|
|
'''
|
|
|
|
def __init__(self, clientAPI):
|
|
|
|
assert isinstance(clientAPI, API)
|
|
|
|
app = flask.Flask('PublicAPI')
|
2018-06-14 04:17:58 +00:00
|
|
|
self.i2pEnabled = config.get('i2p.host', False)
|
2018-11-13 17:07:46 +00:00
|
|
|
self.hideBlocks = [] # Blocks to be denied sharing
|
2019-07-02 06:32:26 +00:00
|
|
|
self.host = apiutils.setbindip.set_bind_IP(clientAPI._core.publicApiHostFile, clientAPI._core)
|
2019-01-08 05:51:39 +00:00
|
|
|
self.torAdder = clientAPI._core.hsAddress
|
|
|
|
self.i2pAdder = clientAPI._core.i2pAddress
|
|
|
|
self.bindPort = config.get('client.public.port')
|
2019-02-14 23:48:41 +00:00
|
|
|
self.lastRequest = 0
|
2019-06-16 22:34:43 +00:00
|
|
|
self.hitCount = 0 # total rec requests to public api since server started
|
2019-07-02 06:32:26 +00:00
|
|
|
self.config = config
|
|
|
|
self.clientAPI = clientAPI
|
|
|
|
self.API_VERSION = onionr.API_VERSION
|
2019-01-08 05:51:39 +00:00
|
|
|
logger.info('Running public api on %s:%s' % (self.host, self.bindPort))
|
2017-12-27 01:13:19 +00:00
|
|
|
|
2019-02-12 05:30:56 +00:00
|
|
|
# Set instances, then startup our public api server
|
2019-01-08 05:51:39 +00:00
|
|
|
clientAPI.setPublicAPIInstance(self)
|
|
|
|
while self.torAdder == '':
|
|
|
|
clientAPI._core.refreshFirstStartVars()
|
|
|
|
self.torAdder = clientAPI._core.hsAddress
|
2019-02-20 23:12:11 +00:00
|
|
|
time.sleep(0.1)
|
2019-07-02 06:32:26 +00:00
|
|
|
|
|
|
|
app.register_blueprint(security.public.PublicAPISecurity(self).public_api_security_bp)
|
|
|
|
app.register_blueprint(miscpublicapi.endpoints.PublicEndpoints(self).public_endpoints_bp)
|
|
|
|
self.httpServer = WSGIServer((self.host, self.bindPort), app, log=None, handler_class=fdsafehandler.FDSafeHandler)
|
2019-01-08 05:51:39 +00:00
|
|
|
self.httpServer.serve_forever()
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
class API:
|
|
|
|
'''
|
|
|
|
Client HTTP api
|
|
|
|
'''
|
2018-02-04 03:44:29 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
callbacks = {'public' : {}, 'private' : {}}
|
2018-12-09 17:29:39 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
def __init__(self, onionrInst, debug, API_VERSION):
|
|
|
|
'''
|
|
|
|
Initialize the api server, preping variables for later use
|
2017-12-27 01:13:19 +00:00
|
|
|
|
2019-04-23 02:02:09 +00:00
|
|
|
This initialization defines all of the API entry points and handlers for the endpoints and errors
|
2019-01-08 05:51:39 +00:00
|
|
|
This also saves the used host (random localhost IP address) to the data folder in host.txt
|
2018-02-04 03:44:29 +00:00
|
|
|
'''
|
2018-01-26 07:22:48 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
self.debug = debug
|
2019-01-20 22:54:04 +00:00
|
|
|
self._core = onionrInst.onionrCore
|
2019-06-25 23:07:35 +00:00
|
|
|
self.startTime = epoch.get_epoch()
|
2019-01-08 05:51:39 +00:00
|
|
|
self._crypto = onionrcrypto.OnionrCrypto(self._core)
|
|
|
|
app = flask.Flask(__name__)
|
|
|
|
bindPort = int(config.get('client.client.port', 59496))
|
|
|
|
self.bindPort = bindPort
|
2018-05-19 21:32:21 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
self.clientToken = config.get('client.webpassword')
|
|
|
|
self.timeBypassToken = base64.b16encode(os.urandom(32)).decode()
|
2018-05-19 21:32:21 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
self.publicAPI = None # gets set when the thread calls our setter... bad hack but kinda necessary with flask
|
|
|
|
#threading.Thread(target=PublicAPI, args=(self,)).start()
|
2019-07-02 06:32:26 +00:00
|
|
|
self.host = apiutils.setbindip.set_bind_IP(self._core.privateApiHostFile, self._core)
|
2019-01-08 05:51:39 +00:00
|
|
|
logger.info('Running api on %s:%s' % (self.host, self.bindPort))
|
|
|
|
self.httpServer = ''
|
2019-01-07 05:50:20 +00:00
|
|
|
|
|
|
|
self.queueResponse = {}
|
2019-01-08 05:51:39 +00:00
|
|
|
onionrInst.setClientAPIInst(self)
|
2019-07-02 06:32:26 +00:00
|
|
|
app.register_blueprint(security.client.ClientAPISecurity(self).client_api_security_bp)
|
2019-02-21 20:25:45 +00:00
|
|
|
app.register_blueprint(friendsapi.friends)
|
2019-04-09 17:30:54 +00:00
|
|
|
app.register_blueprint(profilesapi.profile_BP)
|
2019-04-27 15:43:16 +00:00
|
|
|
app.register_blueprint(configapi.config_BP)
|
2019-06-29 20:17:48 +00:00
|
|
|
app.register_blueprint(insertblock.ib)
|
2019-07-01 20:38:55 +00:00
|
|
|
app.register_blueprint(miscclientapi.getblocks.client_get_blocks)
|
|
|
|
app.register_blueprint(miscclientapi.staticfiles.static_files_bp)
|
2019-07-02 23:16:04 +00:00
|
|
|
app.register_blueprint(miscclientapi.endpoints.PrivateEndpoints(self).private_endpoints_bp)
|
2019-07-01 20:38:55 +00:00
|
|
|
app.register_blueprint(onionrsitesapi.site_api)
|
|
|
|
app.register_blueprint(apiutils.shutdown.shutdown_bp)
|
2019-03-02 06:22:59 +00:00
|
|
|
httpapi.load_plugin_blueprints(app)
|
2019-07-01 20:38:55 +00:00
|
|
|
self.get_block_data = apiutils.GetBlockData(self)
|
2019-02-10 02:21:36 +00:00
|
|
|
|
2019-07-02 06:32:26 +00:00
|
|
|
self.httpServer = WSGIServer((self.host, bindPort), app, log=None, handler_class=fdsafehandler.FDSafeHandler)
|
2019-01-08 05:51:39 +00:00
|
|
|
self.httpServer.serve_forever()
|
2018-07-30 00:37:12 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
def setPublicAPIInstance(self, inst):
|
|
|
|
assert isinstance(inst, PublicAPI)
|
|
|
|
self.publicAPI = inst
|
2018-07-30 00:37:12 +00:00
|
|
|
|
2019-01-08 05:51:39 +00:00
|
|
|
def validateToken(self, token):
|
|
|
|
'''
|
2019-02-12 05:30:56 +00:00
|
|
|
Validate that the client token matches the given token. Used to prevent CSRF and data exfiltration
|
2019-01-08 05:51:39 +00:00
|
|
|
'''
|
|
|
|
if len(self.clientToken) == 0:
|
|
|
|
logger.error("client password needs to be set")
|
|
|
|
return False
|
|
|
|
try:
|
|
|
|
if not hmac.compare_digest(self.clientToken, token):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
except TypeError:
|
|
|
|
return False
|
2019-01-13 22:20:10 +00:00
|
|
|
|
|
|
|
def getUptime(self):
|
2019-01-28 22:49:04 +00:00
|
|
|
while True:
|
|
|
|
try:
|
2019-06-25 23:07:35 +00:00
|
|
|
return epoch.get_epoch() - self.startTime
|
2019-04-12 17:14:16 +00:00
|
|
|
except (AttributeError, NameError):
|
2019-01-28 22:49:04 +00:00
|
|
|
# Don't error on race condition with startup
|
2019-02-01 06:38:12 +00:00
|
|
|
pass
|
2019-07-01 20:38:55 +00:00
|
|
|
|
2019-02-04 23:48:21 +00:00
|
|
|
def getBlockData(self, bHash, decrypt=False, raw=False, headerOnly=False):
|
2019-07-02 22:34:26 +00:00
|
|
|
return self.get_block_data.get_block_data(bHash, decrypt=decrypt, raw=raw, headerOnly=headerOnly)
|