2016-10-19 06:12:44 +02:00
|
|
|
import copy
|
2016-10-31 22:19:19 +01:00
|
|
|
import json
|
2016-10-28 22:12:51 +02:00
|
|
|
import logging
|
2016-08-22 00:44:16 +02:00
|
|
|
import os
|
2016-09-21 09:49:52 +02:00
|
|
|
import sys
|
2016-10-31 22:19:19 +01:00
|
|
|
import yaml
|
2016-10-28 22:12:51 +02:00
|
|
|
|
2016-09-21 09:49:52 +02:00
|
|
|
from appdirs import user_data_dir
|
2015-08-20 17:27:15 +02:00
|
|
|
|
2016-11-10 20:26:21 +01:00
|
|
|
LBRYCRD_WALLET = 'lbrycrd'
|
|
|
|
LBRYUM_WALLET = 'lbryum'
|
|
|
|
PTC_WALLET = 'ptc'
|
2016-10-23 07:17:24 +02:00
|
|
|
|
2016-10-28 22:12:51 +02:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-09-21 09:49:52 +02:00
|
|
|
LINUX = 1
|
|
|
|
DARWIN = 2
|
|
|
|
WINDOWS = 3
|
2016-11-04 17:36:43 +01:00
|
|
|
KB = 2**10
|
|
|
|
MB = 2**20
|
2016-09-21 09:49:52 +02:00
|
|
|
|
2016-10-23 07:17:24 +02:00
|
|
|
|
2016-10-19 06:39:19 +02:00
|
|
|
if sys.platform.startswith("darwin"):
|
2016-09-21 09:49:52 +02:00
|
|
|
platform = DARWIN
|
2016-10-19 06:12:44 +02:00
|
|
|
default_download_directory = os.path.join(os.path.expanduser("~"), 'Downloads')
|
|
|
|
default_data_dir = user_data_dir("LBRY")
|
|
|
|
default_lbryum_dir = os.path.join(os.path.expanduser("~"), ".lbryum")
|
2016-10-19 06:39:19 +02:00
|
|
|
elif sys.platform.startswith("win"):
|
|
|
|
platform = WINDOWS
|
2016-10-19 06:12:44 +02:00
|
|
|
from lbrynet.winhelpers.knownpaths import get_path, FOLDERID, UserHandle
|
|
|
|
default_download_directory = get_path(FOLDERID.Downloads, UserHandle.current)
|
2016-10-27 17:49:28 +02:00
|
|
|
default_data_dir = os.path.join(
|
|
|
|
get_path(FOLDERID.RoamingAppData, UserHandle.current), "lbrynet")
|
|
|
|
default_lbryum_dir = os.path.join(
|
|
|
|
get_path(FOLDERID.RoamingAppData, UserHandle.current), "lbryum")
|
2016-10-19 06:39:19 +02:00
|
|
|
else:
|
|
|
|
platform = LINUX
|
|
|
|
default_download_directory = os.path.join(os.path.expanduser("~"), 'Downloads')
|
2016-10-19 20:26:19 +02:00
|
|
|
default_data_dir = os.path.join(os.path.expanduser("~"), ".lbrynet")
|
2016-10-19 06:39:19 +02:00
|
|
|
default_lbryum_dir = os.path.join(os.path.expanduser("~"), ".lbryum")
|
2016-10-19 06:12:44 +02:00
|
|
|
|
|
|
|
|
2016-10-27 17:49:28 +02:00
|
|
|
def convert_setting(env_val, current_val):
|
2016-10-28 22:12:51 +02:00
|
|
|
try:
|
|
|
|
return _convert_setting(env_val, current_val)
|
|
|
|
except Exception as exc:
|
|
|
|
log.warning(
|
|
|
|
'Failed to convert %s. Returning original: %s: %s',
|
|
|
|
env_val, current_val, exc)
|
|
|
|
return current_val
|
|
|
|
|
|
|
|
|
|
|
|
def _convert_setting(env_val, current_val):
|
2016-11-16 06:29:23 +01:00
|
|
|
if isinstance(env_val, basestring):
|
|
|
|
return json.loads(env_val)
|
2016-10-27 17:49:28 +02:00
|
|
|
new_type = env_val.__class__
|
2016-10-26 09:16:33 +02:00
|
|
|
current_type = current_val.__class__
|
|
|
|
if current_type is bool:
|
|
|
|
if new_type is bool:
|
2016-10-27 17:49:28 +02:00
|
|
|
return env_val
|
|
|
|
elif str(env_val).lower() == "false":
|
2016-10-26 09:16:33 +02:00
|
|
|
return False
|
2016-10-27 17:49:28 +02:00
|
|
|
elif str(env_val).lower() == "true":
|
2016-10-26 09:16:33 +02:00
|
|
|
return True
|
|
|
|
else:
|
2016-10-28 22:12:51 +02:00
|
|
|
raise ValueError('{} is not a valid boolean value'.format(env_val))
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is int:
|
2016-10-27 17:49:28 +02:00
|
|
|
return int(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is float:
|
2016-10-27 17:49:28 +02:00
|
|
|
return float(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is str:
|
2016-10-27 17:49:28 +02:00
|
|
|
return str(env_val)
|
2016-11-01 17:53:04 +01:00
|
|
|
elif current_type is unicode:
|
|
|
|
return unicode(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is dict:
|
2016-10-27 17:49:28 +02:00
|
|
|
return dict(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is list:
|
2016-10-27 17:49:28 +02:00
|
|
|
return list(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
elif current_type is tuple:
|
2016-10-27 17:49:28 +02:00
|
|
|
return tuple(env_val)
|
2016-10-26 09:16:33 +02:00
|
|
|
else:
|
2016-10-27 17:49:28 +02:00
|
|
|
raise ValueError('Type {} cannot be converted'.format(current_type))
|
2016-10-26 09:16:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def convert_env_setting(setting, value):
|
2016-10-27 17:49:28 +02:00
|
|
|
try:
|
|
|
|
env_val = os.environ[setting]
|
|
|
|
except KeyError:
|
|
|
|
return value
|
|
|
|
else:
|
|
|
|
return convert_setting(env_val, value)
|
2016-10-26 09:16:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_env_settings(settings):
|
2016-10-27 17:49:28 +02:00
|
|
|
for setting, value in settings.iteritems():
|
|
|
|
setting = 'LBRY_' + setting.upper()
|
|
|
|
yield convert_env_setting(setting, value)
|
2016-10-26 09:16:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def add_env_settings_to_dict(settings_dict):
|
|
|
|
for setting, env_setting in zip(settings_dict, get_env_settings(settings_dict)):
|
|
|
|
settings_dict.update({setting: env_setting})
|
|
|
|
return settings_dict
|
|
|
|
|
|
|
|
|
|
|
|
class Setting(object):
|
2016-10-28 22:12:51 +02:00
|
|
|
"""A collection of configuration settings"""
|
2016-10-26 09:16:33 +02:00
|
|
|
__fixed = []
|
|
|
|
__excluded = ['get_dict', 'update']
|
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
for k in self.__dict__.iterkeys():
|
|
|
|
if k.startswith('_') or k in self.__excluded:
|
|
|
|
continue
|
|
|
|
yield k
|
|
|
|
|
|
|
|
def __getitem__(self, item):
|
|
|
|
assert item in self, IndexError
|
|
|
|
return self.__dict__[item]
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
assert key in self and key not in self.__fixed, KeyError(key)
|
2016-10-28 22:12:51 +02:00
|
|
|
old_value = self[key]
|
|
|
|
new_value = convert_setting(value, old_value)
|
|
|
|
self.__dict__[key] = new_value
|
2016-10-26 09:16:33 +02:00
|
|
|
|
|
|
|
def __contains__(self, item):
|
|
|
|
return item in iter(self)
|
|
|
|
|
|
|
|
def get_dict(self):
|
|
|
|
return {k: self[k] for k in self}
|
|
|
|
|
|
|
|
def update(self, other):
|
|
|
|
for k, v in other.iteritems():
|
|
|
|
try:
|
|
|
|
self.__setitem__(k, v)
|
2016-10-28 22:12:51 +02:00
|
|
|
except (KeyError, AssertionError):
|
2016-10-26 09:16:33 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class AdjustableSettings(Setting):
|
2016-10-28 22:12:51 +02:00
|
|
|
"""Settings that are allowed to be overriden by the user"""
|
2016-10-19 06:12:44 +02:00
|
|
|
def __init__(self):
|
2016-10-26 09:16:33 +02:00
|
|
|
self.is_generous_host = True
|
|
|
|
self.run_on_startup = False
|
|
|
|
self.download_directory = default_download_directory
|
|
|
|
self.max_upload = 0.0
|
|
|
|
self.max_download = 0.0
|
|
|
|
self.upload_log = True
|
|
|
|
self.delete_blobs_on_remove = True
|
|
|
|
self.use_upnp = True
|
|
|
|
self.start_lbrycrdd = True
|
|
|
|
self.run_reflector_server = False
|
|
|
|
self.startup_scripts = []
|
|
|
|
self.last_version = {'lbrynet': '0.0.1', 'lbryum': '0.0.1'}
|
|
|
|
self.peer_port = 3333
|
|
|
|
self.dht_node_port = 4444
|
|
|
|
self.reflector_port = 5566
|
|
|
|
self.download_timeout = 30
|
|
|
|
self.max_search_results = 25
|
|
|
|
self.search_timeout = 3.0
|
|
|
|
self.cache_time = 150
|
|
|
|
self.host_ui = True
|
|
|
|
self.check_ui_requirements = True
|
|
|
|
self.local_ui_path = False
|
|
|
|
self.api_port = 5279
|
|
|
|
self.data_rate = .0001 # points/megabyte
|
|
|
|
self.min_info_rate = .02 # points/1000 infos
|
|
|
|
self.min_valuable_info_rate = .05 # points/1000 infos
|
|
|
|
self.min_valuable_hash_rate = .05 # points/1000 infos
|
|
|
|
self.max_connections_per_stream = 5
|
2016-10-27 17:49:28 +02:00
|
|
|
self.known_dht_nodes = [
|
|
|
|
('lbrynet1.lbry.io', 4444),
|
|
|
|
('lbrynet2.lbry.io', 4444),
|
|
|
|
('lbrynet3.lbry.io', 4444)
|
|
|
|
]
|
2016-10-26 09:16:33 +02:00
|
|
|
self.pointtrader_server = 'http://127.0.0.1:2424'
|
|
|
|
self.reflector_servers = [("reflector.lbry.io", 5566)]
|
2016-11-10 20:26:21 +01:00
|
|
|
self.wallet = LBRYUM_WALLET
|
2016-10-26 09:16:33 +02:00
|
|
|
self.ui_branch = "master"
|
|
|
|
self.default_ui_branch = 'master'
|
|
|
|
self.data_dir = default_data_dir
|
|
|
|
self.lbryum_wallet_dir = default_lbryum_dir
|
|
|
|
self.use_auth_http = False
|
|
|
|
self.sd_download_timeout = 3
|
|
|
|
self.max_key_fee = {'USD': {'amount': 25.0, 'address': ''}}
|
|
|
|
|
|
|
|
|
|
|
|
class ApplicationSettings(Setting):
|
2016-10-28 22:12:51 +02:00
|
|
|
"""Settings that are constants and shouldn't be overriden"""
|
2016-10-26 09:16:33 +02:00
|
|
|
def __init__(self):
|
2016-11-04 17:36:43 +01:00
|
|
|
self.MAX_HANDSHAKE_SIZE = 64*KB
|
|
|
|
self.MAX_REQUEST_SIZE = 64*KB
|
|
|
|
self.MAX_BLOB_REQUEST_SIZE = 64*KB
|
|
|
|
self.MAX_RESPONSE_INFO_SIZE = 64*KB
|
2016-10-26 09:16:33 +02:00
|
|
|
self.MAX_BLOB_INFOS_TO_REQUEST = 20
|
|
|
|
self.BLOBFILES_DIR = "blobfiles"
|
2016-11-04 17:36:43 +01:00
|
|
|
self.BLOB_SIZE = 2*MB
|
2016-10-26 09:16:33 +02:00
|
|
|
self.LOG_FILE_NAME = "lbrynet.log"
|
|
|
|
self.LOG_POST_URL = "https://lbry.io/log-upload"
|
|
|
|
self.CRYPTSD_FILE_EXTENSION = ".cryptsd"
|
|
|
|
self.API_INTERFACE = "localhost"
|
|
|
|
self.API_ADDRESS = "lbryapi"
|
|
|
|
self.ICON_PATH = "icons" if platform is WINDOWS else "app.icns"
|
|
|
|
self.APP_NAME = "LBRY"
|
|
|
|
self.PROTOCOL_PREFIX = "lbry"
|
2016-11-10 20:26:21 +01:00
|
|
|
self.WALLET_TYPES = [LBRYUM_WALLET, LBRYCRD_WALLET]
|
2016-10-26 09:16:33 +02:00
|
|
|
self.SOURCE_TYPES = ['lbry_sd_hash', 'url', 'btih']
|
|
|
|
self.CURRENCIES = {
|
2016-10-27 17:49:28 +02:00
|
|
|
'BTC': {'type': 'crypto'},
|
|
|
|
'LBC': {'type': 'crypto'},
|
|
|
|
'USD': {'type': 'fiat'},
|
2016-10-26 09:16:33 +02:00
|
|
|
}
|
|
|
|
self.LOGGLY_TOKEN = 'LJEzATH4AzRgAwxjAP00LwZ2YGx3MwVgZTMuBQZ3MQuxLmOv'
|
|
|
|
self.ANALYTICS_ENDPOINT = 'https://api.segment.io/v1'
|
|
|
|
self.ANALYTICS_TOKEN = 'Ax5LZzR1o3q3Z3WjATASDwR5rKyHH0qOIRIbLmMXn2H='
|
|
|
|
|
|
|
|
|
|
|
|
APPLICATION_SETTINGS = AdjustableSettings()
|
|
|
|
ADJUSTABLE_SETTINGS = AdjustableSettings()
|
|
|
|
|
|
|
|
|
|
|
|
class DefaultSettings(ApplicationSettings, AdjustableSettings):
|
|
|
|
__fixed = APPLICATION_SETTINGS.get_dict().keys()
|
2016-10-19 06:12:44 +02:00
|
|
|
|
2016-10-26 09:16:33 +02:00
|
|
|
def __init__(self):
|
|
|
|
ApplicationSettings.__init__(self)
|
|
|
|
AdjustableSettings.__init__(self)
|
|
|
|
|
|
|
|
|
|
|
|
DEFAULT_SETTINGS = DefaultSettings()
|
2016-10-19 06:12:44 +02:00
|
|
|
|
2016-10-26 09:16:33 +02:00
|
|
|
|
|
|
|
class Config(DefaultSettings):
|
|
|
|
__shared_state = copy.deepcopy(DEFAULT_SETTINGS.get_dict())
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.__dict__ = add_env_settings_to_dict(self.__shared_state)
|
2016-10-19 06:12:44 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def ORIGIN(self):
|
2016-10-26 09:16:33 +02:00
|
|
|
return "http://%s:%i" % (DEFAULT_SETTINGS.API_INTERFACE, self.api_port)
|
2016-10-19 06:12:44 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def REFERER(self):
|
2016-10-26 09:16:33 +02:00
|
|
|
return "http://%s:%i/" % (DEFAULT_SETTINGS.API_INTERFACE, self.api_port)
|
2016-10-19 06:12:44 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def API_CONNECTION_STRING(self):
|
2016-10-27 17:49:28 +02:00
|
|
|
return "http://%s:%i/%s" % (
|
|
|
|
DEFAULT_SETTINGS.API_INTERFACE, self.api_port, DEFAULT_SETTINGS.API_ADDRESS)
|
2016-10-19 06:12:44 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def UI_ADDRESS(self):
|
2016-10-26 09:16:33 +02:00
|
|
|
return "http://%s:%i" % (DEFAULT_SETTINGS.API_INTERFACE, self.api_port)
|
2016-10-27 21:18:25 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
def ensure_data_dir(self):
|
|
|
|
# although there is a risk of a race condition here we don't
|
|
|
|
# expect there to be multiple processes accessing this
|
|
|
|
# directory so the risk can be ignored
|
|
|
|
if not os.path.isdir(self.data_dir):
|
|
|
|
os.makedirs(self.data_dir)
|
|
|
|
return self.data_dir
|
2016-10-27 21:18:25 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
def get_log_filename(self):
|
|
|
|
"""Return the log file for this platform.
|
2016-10-23 07:17:24 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
Also ensure the containing directory exists
|
|
|
|
"""
|
|
|
|
return os.path.join(self.ensure_data_dir(), self.LOG_FILE_NAME)
|
2016-10-23 07:17:24 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
def get_conf_filename(self):
|
2016-11-05 19:23:48 +01:00
|
|
|
return get_settings_file_ext(self.ensure_data_dir())
|
2016-10-23 07:17:24 +02:00
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
|
|
|
|
def update_settings_from_file(filename=None):
|
|
|
|
filename = filename or settings.get_conf_filename()
|
2016-11-02 16:32:46 +01:00
|
|
|
try:
|
|
|
|
updates = load_settings(filename)
|
|
|
|
log.info("Loaded settings file: %s", updates)
|
|
|
|
settings.update(updates)
|
|
|
|
except (IOError, OSError) as ex:
|
|
|
|
log.info('%s: Failed to update settings from %s', ex, filename)
|
2016-10-31 22:19:19 +01:00
|
|
|
|
|
|
|
|
2016-11-05 19:23:48 +01:00
|
|
|
def get_settings_file_ext(data_dir):
|
|
|
|
yml_path = os.path.join(data_dir, "daemon_settings.yml")
|
|
|
|
json_path = os.path.join(data_dir, "daemon_settings.json")
|
|
|
|
if os.path.isfile(yml_path):
|
|
|
|
return yml_path
|
|
|
|
elif os.path.isfile(json_path):
|
|
|
|
return json_path
|
|
|
|
else:
|
|
|
|
return yml_path
|
|
|
|
|
|
|
|
|
2016-10-31 22:19:19 +01:00
|
|
|
settings_decoders = {
|
|
|
|
'.json': json.loads,
|
|
|
|
'.yml': yaml.load
|
|
|
|
}
|
|
|
|
|
|
|
|
settings_encoders = {
|
|
|
|
'.json': json.dumps,
|
|
|
|
'.yml': yaml.safe_dump
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-02 15:41:47 +01:00
|
|
|
def load_settings(path):
|
2016-10-31 22:19:19 +01:00
|
|
|
ext = os.path.splitext(path)[1]
|
|
|
|
with open(path, 'r') as settings_file:
|
|
|
|
data = settings_file.read()
|
|
|
|
decoder = settings_decoders.get(ext, False)
|
|
|
|
assert decoder is not False, "Unknown settings format .%s" % ext
|
|
|
|
return decoder(data)
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: be careful with this. If a setting is overriden by an environment variable
|
|
|
|
# or command line flag we don't want to persist it for future settings.
|
|
|
|
def save_settings(path=None):
|
|
|
|
path = path or settings.get_conf_filename()
|
|
|
|
to_save = {k: v for k, v in settings.__dict__.iteritems() if k in ADJUSTABLE_SETTINGS}
|
|
|
|
ext = os.path.splitext(path)[1]
|
|
|
|
encoder = settings_encoders.get(ext, False)
|
|
|
|
assert encoder is not False, "Unknown settings format .%s" % ext
|
|
|
|
with open(path, 'w') as settings_file:
|
|
|
|
settings_file.write(encoder(to_save))
|
2016-10-23 07:17:24 +02:00
|
|
|
|
|
|
|
|
2016-10-27 21:18:25 +02:00
|
|
|
# TODO: don't load the configuration automatically. The configuration
|
|
|
|
# should be loaded at runtime, not at module import time. Module
|
|
|
|
# import should have no side-effects. This is also bad because
|
|
|
|
# it means that settings are read from the environment even for
|
|
|
|
# tests, which is rarely what you want to happen.
|
|
|
|
settings = Config()
|