forked from LBRYCommunity/lbry-sdk
a89306b6bf
-fix loggly not using the share usage setting -delete more
105 lines
3 KiB
Python
105 lines
3 KiB
Python
import os
|
|
import sys
|
|
|
|
# Set SSL_CERT_FILE env variable for Twisted SSL verification on Windows
|
|
# This needs to happen before anything else
|
|
if 'win' in sys.platform:
|
|
import certifi
|
|
os.environ['SSL_CERT_FILE'] = certifi.where()
|
|
|
|
from lbrynet.core import log_support
|
|
|
|
import argparse
|
|
import logging.handlers
|
|
|
|
from twisted.internet import reactor
|
|
from jsonrpc.proxy import JSONRPCProxy
|
|
|
|
from lbrynet import conf
|
|
from lbrynet.core import utils, system_info
|
|
from lbrynet.daemon.Daemon import Daemon
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def test_internet_connection():
|
|
return utils.check_connection()
|
|
|
|
|
|
def start():
|
|
"""The primary entry point for launching the daemon."""
|
|
|
|
# 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)
|
|
|
|
parser = argparse.ArgumentParser(description="Launch lbrynet-daemon")
|
|
parser.add_argument(
|
|
"--conf",
|
|
help="specify an alternative configuration file",
|
|
type=str,
|
|
default=None
|
|
)
|
|
parser.add_argument(
|
|
"--http-auth", dest="useauth", action="store_true", default=conf.settings['use_auth_http']
|
|
)
|
|
parser.add_argument(
|
|
'--quiet', dest='quiet', action="store_true",
|
|
help='Disable all console output.'
|
|
)
|
|
parser.add_argument(
|
|
'--verbose', nargs="*",
|
|
help=('Enable debug output. Optionally specify loggers for which debug output '
|
|
'should selectively be applied.')
|
|
)
|
|
parser.add_argument(
|
|
'--version', action="store_true",
|
|
help='Show daemon version and quit'
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
update_settings_from_args(args)
|
|
|
|
conf.settings.load_conf_file_settings()
|
|
|
|
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
|
|
|
|
lbrynet_log = conf.settings.get_log_filename()
|
|
log_support.configure_logging(lbrynet_log, not args.quiet, args.verbose)
|
|
log_support.configure_loggly_handler()
|
|
log.debug('Final Settings: %s', conf.settings.get_current_settings_dict())
|
|
|
|
try:
|
|
log.debug('Checking for an existing lbrynet daemon instance')
|
|
JSONRPCProxy.from_url(conf.settings.get_api_connection_string()).status()
|
|
log.info("lbrynet-daemon is already running")
|
|
return
|
|
except Exception:
|
|
log.debug('No lbrynet instance found, continuing to start')
|
|
|
|
log.info("Starting lbrynet-daemon from command line")
|
|
|
|
if test_internet_connection():
|
|
daemon = Daemon()
|
|
daemon.start_listening()
|
|
reactor.run()
|
|
else:
|
|
log.info("Not connected to internet, unable to start")
|
|
|
|
|
|
def update_settings_from_args(args):
|
|
if args.conf:
|
|
conf.conf_file = args.conf
|
|
|
|
if args.useauth:
|
|
conf.settings.update({
|
|
'use_auth_http': args.useauth,
|
|
}, data_types=(conf.TYPE_CLI,))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
start()
|