06a88599df
settings will prefer, in order: -defaults -settings in config file -settings given as environmental variables -settings given as command line args
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
import logging
|
|
import os
|
|
import sys
|
|
|
|
from appdirs import user_data_dir
|
|
from twisted.internet import defer
|
|
from lbrynet.lbrynet_daemon.Daemon import Daemon
|
|
from lbrynet.lbrynet_daemon.Resources import LBRYindex, HostedEncryptedFile, EncryptedFileUpload
|
|
from lbrynet import settings
|
|
|
|
|
|
# TODO: omg, this code is essentially duplicated in Daemon
|
|
if sys.platform != "darwin":
|
|
data_dir = os.path.join(os.path.expanduser("~"), ".lbrynet")
|
|
else:
|
|
data_dir = user_data_dir("LBRY")
|
|
if not os.path.isdir(data_dir):
|
|
os.mkdir(data_dir)
|
|
|
|
lbrynet_log = os.path.join(data_dir, settings.LOG_FILE_NAME)
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class DaemonServer(object):
|
|
def _setup_server(self, use_authentication):
|
|
self.root = LBRYindex(os.path.join(os.path.join(data_dir, "lbry-ui"), "active"))
|
|
self._api = Daemon(self.root, use_authentication=use_authentication)
|
|
self.root.putChild("view", HostedEncryptedFile(self._api))
|
|
self.root.putChild("upload", EncryptedFileUpload(self._api))
|
|
self.root.putChild(settings.API_ADDRESS, self._api)
|
|
return defer.succeed(True)
|
|
|
|
def start(self, use_authentication):
|
|
d = self._setup_server(use_authentication)
|
|
d.addCallback(lambda _: self._api.setup())
|
|
return d
|