2018-10-28 19:12:40 +01:00
|
|
|
import sys
|
|
|
|
from twisted.internet import asyncioreactor
|
|
|
|
if 'twisted.internet.reactor' not in sys.modules:
|
|
|
|
asyncioreactor.install()
|
|
|
|
else:
|
|
|
|
from twisted.internet import reactor
|
|
|
|
if not isinstance(reactor, asyncioreactor.AsyncioSelectorReactor) and getattr(sys, 'frozen', False):
|
|
|
|
# pyinstaller hooks install the default reactor before
|
|
|
|
# any of our code runs, see kivy for similar problem:
|
|
|
|
# https://github.com/kivy/kivy/issues/4182
|
|
|
|
del sys.modules['twisted.internet.reactor']
|
|
|
|
asyncioreactor.install()
|
|
|
|
from twisted.internet import reactor
|
|
|
|
|
2017-12-20 17:10:30 +01:00
|
|
|
import keyring.backend
|
2018-12-11 20:44:30 +01:00
|
|
|
from lbrynet import build_type
|
2017-08-13 03:24:00 +02:00
|
|
|
import platform
|
2017-08-22 23:03:05 +02:00
|
|
|
import ssl
|
2018-10-28 19:12:40 +01:00
|
|
|
from jnius import autoclass
|
2017-08-22 23:03:05 +02:00
|
|
|
|
|
|
|
# Fixes / patches / overrides
|
|
|
|
# platform.platform() in libc_ver: IOError: [Errno 21] Is a directory
|
2018-03-31 11:28:26 +02:00
|
|
|
lbrynet_utils = autoclass('io.lbry.browser.Utils')
|
|
|
|
service = autoclass('io.lbry.browser.LbrynetService').serviceInstance
|
2017-08-22 23:03:05 +02:00
|
|
|
platform.platform = lambda: 'Android %s (API %s)' % (lbrynet_utils.getAndroidRelease(), lbrynet_utils.getAndroidSdk())
|
2018-12-11 20:44:30 +01:00
|
|
|
build_type.BUILD = 'dev' if lbrynet_utils.isDebug() else 'release'
|
2017-08-22 23:03:05 +02:00
|
|
|
|
|
|
|
import lbrynet.androidhelpers
|
|
|
|
lbrynet.androidhelpers.paths.android_files_dir = lambda: lbrynet_utils.getFilesDir(service.getApplicationContext())
|
|
|
|
lbrynet.androidhelpers.paths.android_internal_storage_dir = lambda: lbrynet_utils.getInternalStorageDir(service.getApplicationContext())
|
|
|
|
lbrynet.androidhelpers.paths.android_external_storage_dir = lambda: lbrynet_utils.getExternalStorageDir(service.getApplicationContext())
|
|
|
|
lbrynet.androidhelpers.paths.android_app_internal_storage_dir = lambda: lbrynet_utils.getAppInternalStorageDir(service.getApplicationContext())
|
|
|
|
lbrynet.androidhelpers.paths.android_app_external_storage_dir = lambda: lbrynet_utils.getAppExternalStorageDir(service.getApplicationContext())
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2017-08-25 05:59:35 +02:00
|
|
|
# RPC authentication secret
|
|
|
|
# Retrieve the Anroid keystore
|
|
|
|
ks = lbrynet_utils.initKeyStore(service.getApplicationContext());
|
|
|
|
|
2018-10-07 16:59:03 +02:00
|
|
|
'''
|
2017-08-25 05:59:35 +02:00
|
|
|
import lbrynet.daemon.auth
|
|
|
|
from lbrynet.daemon.auth.util import APIKey, API_KEY_NAME
|
|
|
|
|
|
|
|
def load_api_keys(path):
|
|
|
|
key_name = API_KEY_NAME
|
|
|
|
context = service.getApplicationContext();
|
|
|
|
secret = lbrynet_utils.loadApiSecret(context, ks)
|
|
|
|
# TODO: For testing. Normally, this should not be displayed.
|
|
|
|
log.info('Loaded API Secret: %s', secret);
|
|
|
|
return { key_name: APIKey(secret, key_name, None) }
|
|
|
|
|
|
|
|
def save_api_keys(keys, path):
|
|
|
|
key_name = API_KEY_NAME
|
|
|
|
if key_name in keys:
|
|
|
|
secret = keys[key_name].secret
|
|
|
|
# TODO: For testing. Normally, this should not be displayed.
|
2017-12-20 17:10:30 +01:00
|
|
|
log.info('Saving API Secret: %s', secret)
|
|
|
|
context = service.getApplicationContext()
|
2017-08-25 05:59:35 +02:00
|
|
|
lbrynet_utils.saveApiSecret(secret, context, ks)
|
|
|
|
|
|
|
|
def initialize_api_key_file(key_path):
|
2017-12-20 17:10:30 +01:00
|
|
|
context = service.getApplicationContext()
|
2017-08-25 05:59:35 +02:00
|
|
|
secret = lbrynet_utils.loadApiSecret(context, ks)
|
|
|
|
if secret is None:
|
|
|
|
keys = {}
|
|
|
|
new_api_key = APIKey.new(name=API_KEY_NAME)
|
|
|
|
keys.update({new_api_key.name: new_api_key})
|
|
|
|
save_api_keys(keys, key_path)
|
|
|
|
|
|
|
|
lbrynet.daemon.auth.util.load_api_keys = load_api_keys
|
|
|
|
lbrynet.daemon.auth.util.save_api_keys = save_api_keys
|
|
|
|
lbrynet.daemon.auth.util.initialize_api_key_file = initialize_api_key_file
|
2018-10-07 16:59:03 +02:00
|
|
|
'''
|
2017-08-25 05:59:35 +02:00
|
|
|
|
2017-12-20 17:10:30 +01:00
|
|
|
# Keyring backend
|
|
|
|
class LbryAndroidKeyring(keyring.backend.KeyringBackend):
|
|
|
|
priority = 1
|
|
|
|
|
|
|
|
def set_password(self, servicename, username, password):
|
|
|
|
context = service.getApplicationContext()
|
|
|
|
lbrynet_utils.setPassword(servicename, username, password, context, ks)
|
|
|
|
|
|
|
|
def get_password(self, servicename, username):
|
|
|
|
context = service.getApplicationContext()
|
|
|
|
return lbrynet_utils.getPassword(servicename, username, context, ks)
|
|
|
|
|
|
|
|
def delete_password(self, servicename, username):
|
|
|
|
context = service.getApplicationContext()
|
|
|
|
lbrynet_utils.deletePassword(servicename, username, context, ks)
|
|
|
|
|
|
|
|
# set the keyring backend
|
|
|
|
keyring.set_keyring(LbryAndroidKeyring())
|
|
|
|
|
2017-08-18 00:06:57 +02:00
|
|
|
import logging.handlers
|
2018-10-28 19:12:40 +01:00
|
|
|
from twisted.internet import reactor
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2018-11-21 11:13:19 +01:00
|
|
|
from lbrynet import utils, conf, log_support
|
|
|
|
from lbrynet.extras import system_info
|
|
|
|
from lbrynet.extras.daemon.Components import \
|
|
|
|
DHT_COMPONENT, \
|
|
|
|
HASH_ANNOUNCER_COMPONENT, \
|
|
|
|
PEER_PROTOCOL_SERVER_COMPONENT, \
|
|
|
|
REFLECTOR_COMPONENT
|
|
|
|
from lbrynet.extras.daemon import analytics
|
|
|
|
from lbrynet.extras.daemon.Daemon import Daemon
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
# https certificate verification
|
|
|
|
# TODO: this is bad. Need to find a way to properly verify https requests
|
|
|
|
def https_context():
|
|
|
|
#urllib2
|
|
|
|
try:
|
|
|
|
_create_unverified_https_context = ssl._create_unverified_context
|
|
|
|
except AttributeError:
|
|
|
|
# Legacy Python that doesn't verify HTTPS certificates by default
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# Handle target environment that doesn't support HTTPS verification
|
|
|
|
ssl._create_default_https_context = _create_unverified_https_context
|
|
|
|
|
|
|
|
'''
|
|
|
|
# requests
|
|
|
|
from functools import partial
|
|
|
|
class partialmethod(partial):
|
|
|
|
def __get__(self, instance, owner):
|
|
|
|
if instance is None:
|
|
|
|
return self
|
|
|
|
|
|
|
|
return partial(self.func, instance, *(self.args or ()), **(self.keywords or {}))
|
|
|
|
|
|
|
|
default_request = requests.Session.request
|
|
|
|
requests.Session.request = partialmethod(default_request, verify=False)
|
|
|
|
'''
|
|
|
|
|
|
|
|
# LBRY Daemon
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_internet_connection():
|
|
|
|
return utils.check_connection()
|
|
|
|
|
|
|
|
def start():
|
|
|
|
# lbry daemon
|
|
|
|
https_context()
|
|
|
|
conf.initialize_settings()
|
|
|
|
|
|
|
|
lbrynet_log = conf.settings.get_log_filename()
|
|
|
|
log_support.configure_logging(lbrynet_log, True, [])
|
2018-08-13 08:12:13 +02:00
|
|
|
|
|
|
|
# TODO: specify components, initialise auth
|
|
|
|
conf.settings.update({
|
2018-11-21 11:13:19 +01:00
|
|
|
'components_to_skip': [DHT_COMPONENT, HASH_ANNOUNCER_COMPONENT, PEER_PROTOCOL_SERVER_COMPONENT, REFLECTOR_COMPONENT],
|
2018-10-07 16:59:03 +02:00
|
|
|
'use_upnp': False
|
2018-08-13 08:12:13 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
log.info('Final Settings: %s', conf.settings.get_current_settings_dict())
|
2017-08-13 03:24:00 +02:00
|
|
|
log.info("Starting lbrynet-daemon")
|
|
|
|
|
|
|
|
if test_internet_connection():
|
2018-08-13 08:12:13 +02:00
|
|
|
daemon = Daemon()
|
|
|
|
daemon.start_listening()
|
2017-08-13 03:24:00 +02:00
|
|
|
reactor.run()
|
|
|
|
else:
|
2018-08-13 08:12:13 +02:00
|
|
|
log.info("Not connected to the Internet. Unable to start.")
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2017-08-22 23:03:05 +02:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
start()
|