2016-12-21 19:54:09 +01:00
|
|
|
from lbrynet.core import log_support
|
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
import argparse
|
2016-04-07 09:12:09 +02:00
|
|
|
import logging.handlers
|
2016-04-14 06:29:40 +02:00
|
|
|
|
2016-12-06 22:08:15 +01:00
|
|
|
from twisted.internet import defer, reactor
|
2016-03-14 17:30:22 +01:00
|
|
|
from jsonrpc.proxy import JSONRPCProxy
|
|
|
|
|
2016-11-10 21:49:51 +01:00
|
|
|
from lbrynet import analytics
|
2016-10-23 07:17:24 +02:00
|
|
|
from lbrynet import conf
|
2017-03-15 21:19:11 +01:00
|
|
|
from lbrynet.core import utils, system_info
|
2017-06-26 03:04:33 +02:00
|
|
|
from lbrynet.daemon.DaemonServer import DaemonServer
|
2016-10-19 06:12:44 +02:00
|
|
|
|
2016-06-07 10:19:51 +02:00
|
|
|
log = logging.getLogger(__name__)
|
2016-07-25 20:04:30 +02:00
|
|
|
|
2016-04-21 04:02:52 +02:00
|
|
|
|
2016-04-14 06:29:40 +02:00
|
|
|
def test_internet_connection():
|
2016-10-18 03:00:24 +02:00
|
|
|
return utils.check_connection()
|
2016-04-14 06:29:40 +02:00
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
|
|
|
|
def start():
|
2017-08-02 23:21:24 +02:00
|
|
|
"""The primary entry point for launching the daemon."""
|
2017-12-29 12:55:30 +01:00
|
|
|
|
|
|
|
# postpone loading the config file to after the CLI arguments
|
|
|
|
# have been parsed, as they may contain an alternate config file location
|
|
|
|
conf.initialize_settings(load_conf_file=False)
|
2017-01-17 04:23:20 +01:00
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
parser = argparse.ArgumentParser(description="Launch lbrynet-daemon")
|
2017-12-29 12:55:30 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--conf",
|
|
|
|
help="specify an alternative configuration file",
|
|
|
|
type=str,
|
|
|
|
default=None
|
|
|
|
)
|
2017-03-15 21:19:11 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--http-auth", dest="useauth", action="store_true", default=conf.settings['use_auth_http']
|
|
|
|
)
|
2016-10-22 00:26:36 +02:00
|
|
|
parser.add_argument(
|
|
|
|
'--quiet', dest='quiet', action="store_true",
|
2017-03-15 21:19:11 +01:00
|
|
|
help='Disable all console output.'
|
|
|
|
)
|
2016-10-22 00:26:36 +02:00
|
|
|
parser.add_argument(
|
|
|
|
'--verbose', nargs="*",
|
|
|
|
help=('Enable debug output. Optionally specify loggers for which debug output '
|
2017-03-15 21:19:11 +01:00
|
|
|
'should selectively be applied.')
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
'--version', action="store_true",
|
|
|
|
help='Show daemon version and quit'
|
|
|
|
)
|
2016-04-18 05:23:20 +02:00
|
|
|
|
2017-01-17 04:23:20 +01:00
|
|
|
args = parser.parse_args()
|
2016-10-31 22:19:19 +01:00
|
|
|
update_settings_from_args(args)
|
|
|
|
|
2017-12-29 12:55:30 +01:00
|
|
|
conf.settings.load_conf_file_settings()
|
|
|
|
|
2017-03-15 21:19:11 +01:00
|
|
|
if args.version:
|
|
|
|
version = system_info.get_platform(get_ip=False)
|
|
|
|
version['installation_id'] = conf.settings.installation_id
|
|
|
|
print utils.json_dumps_pretty(version)
|
|
|
|
return
|
|
|
|
|
2016-12-21 20:55:43 +01:00
|
|
|
lbrynet_log = conf.settings.get_log_filename()
|
2017-01-30 21:08:32 +01:00
|
|
|
log_support.configure_logging(lbrynet_log, not args.quiet, args.verbose)
|
2017-01-17 04:23:20 +01:00
|
|
|
log.debug('Final Settings: %s', conf.settings.get_current_settings_dict())
|
2016-10-19 06:12:44 +02:00
|
|
|
|
2016-03-29 22:42:47 +02:00
|
|
|
try:
|
2016-11-11 17:10:00 +01:00
|
|
|
log.debug('Checking for an existing lbrynet daemon instance')
|
2017-06-12 19:05:41 +02:00
|
|
|
JSONRPCProxy.from_url(conf.settings.get_api_connection_string()).status()
|
2016-03-29 22:42:47 +02:00
|
|
|
log.info("lbrynet-daemon is already running")
|
|
|
|
return
|
2016-11-11 17:10:00 +01:00
|
|
|
except Exception:
|
|
|
|
log.debug('No lbrynet instance found, continuing to start')
|
2016-03-29 22:42:47 +02:00
|
|
|
|
2016-03-14 17:30:22 +01:00
|
|
|
log.info("Starting lbrynet-daemon from command line")
|
|
|
|
|
2016-04-21 04:02:52 +02:00
|
|
|
if test_internet_connection():
|
2016-11-10 21:49:51 +01:00
|
|
|
analytics_manager = analytics.Manager.new_instance()
|
2018-04-01 00:42:57 +02:00
|
|
|
start_server_and_listen(analytics_manager)
|
2016-04-14 06:29:40 +02:00
|
|
|
reactor.run()
|
|
|
|
else:
|
|
|
|
log.info("Not connected to internet, unable to start")
|
2016-05-02 10:10:50 +02:00
|
|
|
|
2016-10-25 23:48:15 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
def update_settings_from_args(args):
|
2018-04-01 00:42:57 +02:00
|
|
|
if args.conf:
|
|
|
|
conf.conf_file = args.conf
|
|
|
|
|
|
|
|
if args.useauth:
|
|
|
|
conf.settings.update({
|
|
|
|
'use_auth_http': args.useauth,
|
|
|
|
}, data_types=(conf.TYPE_CLI,))
|
2016-10-31 22:19:19 +01:00
|
|
|
|
2017-12-29 12:55:30 +01:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
|
2016-12-28 18:20:04 +01:00
|
|
|
@defer.inlineCallbacks
|
2018-04-01 00:42:57 +02:00
|
|
|
def start_server_and_listen(analytics_manager):
|
2017-08-02 21:50:17 +02:00
|
|
|
"""
|
2016-10-26 01:36:40 +02:00
|
|
|
Args:
|
|
|
|
use_auth: set to true to enable http authentication
|
2016-11-10 21:49:51 +01:00
|
|
|
analytics_manager: to send analytics
|
2016-10-26 01:36:40 +02:00
|
|
|
"""
|
2016-12-21 21:59:52 +01:00
|
|
|
analytics_manager.send_server_startup()
|
2017-04-30 21:50:33 +02:00
|
|
|
daemon_server = DaemonServer(analytics_manager)
|
|
|
|
try:
|
2018-04-01 00:42:57 +02:00
|
|
|
yield daemon_server.start(conf.settings['use_auth_http'])
|
2017-04-30 21:50:33 +02:00
|
|
|
analytics_manager.send_server_startup_success()
|
|
|
|
except Exception as e:
|
2017-09-01 16:32:47 +02:00
|
|
|
log.exception('Failed to start lbrynet-daemon')
|
2017-04-30 21:50:33 +02:00
|
|
|
analytics_manager.send_server_startup_error(str(e))
|
2017-08-02 23:21:24 +02:00
|
|
|
daemon_server.stop()
|
2016-10-26 01:36:40 +02:00
|
|
|
|
2016-11-02 13:23:37 +01:00
|
|
|
|
2016-05-02 10:10:50 +02:00
|
|
|
if __name__ == "__main__":
|
2016-07-16 08:15:58 +02:00
|
|
|
start()
|