openmedialibrary/oml/settings.py

89 lines
2.6 KiB
Python
Raw Normal View History

2014-05-04 17:26:43 +00:00
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
import json
import os
import ed25519
2016-01-05 16:14:57 +00:00
from oml.pdict import pdict
from oml.utils import get_user_id
2014-05-04 17:26:43 +00:00
base_dir = os.path.normpath(os.path.join(os.path.abspath(os.path.dirname(__file__)), '..'))
static_path = os.path.join(base_dir, 'static')
2014-08-05 09:47:16 +00:00
updates_path = os.path.normpath(os.path.join(base_dir, '..', 'updates'))
2014-05-04 17:26:43 +00:00
2016-01-18 06:34:20 +00:00
oml_data_path = os.path.join(base_dir, 'config.json')
2014-05-04 17:26:43 +00:00
2016-01-18 06:34:20 +00:00
data_path = os.path.normpath(os.path.join(base_dir, '..', 'data'))
if not os.path.exists(data_path):
config_path = os.path.normpath(os.path.join(base_dir, '..', 'config'))
if os.path.exists(config_path):
data_path = config_path
else:
os.makedirs(data_path)
2014-05-04 17:26:43 +00:00
2016-01-18 06:34:20 +00:00
db_path = os.path.join(data_path, 'data.db')
log_path = os.path.join(data_path, 'debug.log')
icons_db_path = os.path.join(data_path, 'icons.db')
key_path = os.path.join(data_path, 'node.key')
ssl_cert_path = os.path.join(data_path, 'node.ssl.crt')
ssl_key_path = os.path.join(data_path, 'tor', 'private_key')
2014-05-04 17:26:43 +00:00
2016-01-18 06:34:20 +00:00
if os.path.exists(oml_data_path):
with open(oml_data_path) as fd:
2014-05-04 17:26:43 +00:00
config = json.load(fd)
else:
config = {}
2016-01-18 06:34:20 +00:00
preferences = pdict(os.path.join(data_path, 'preferences.json'), config['user']['preferences'])
ui = pdict(os.path.join(data_path, 'ui.json'), config['user']['ui'])
2014-05-04 17:26:43 +00:00
2016-01-18 06:34:20 +00:00
server = pdict(os.path.join(data_path, 'server.json'))
2014-05-04 17:26:43 +00:00
server_defaults = {
'port': 9842,
'address': '127.0.0.1',
2014-05-04 17:26:43 +00:00
'node_port': 9851,
2014-05-12 12:57:47 +00:00
'node_address': '',
2014-05-04 17:26:43 +00:00
'extract_text': True,
2014-05-14 23:28:49 +00:00
'localnode_discovery': True,
2014-05-04 17:26:43 +00:00
'directory_service': 'http://[2a01:4f8:120:3201::3]:25519',
'meta_service': 'http://meta.openmedialibrary.com/api/',
'release_url': 'http://downloads.openmedialibrary.com/release.json',
2014-05-04 17:26:43 +00:00
}
for key in server_defaults:
if key not in server:
server[key] = server_defaults[key]
2016-01-18 06:34:20 +00:00
release = pdict(os.path.join(data_path, 'release.json'))
2014-05-04 17:26:43 +00:00
if os.path.exists(key_path):
2014-09-02 22:32:44 +00:00
with open(key_path, 'rb') as fd:
2014-05-04 17:26:43 +00:00
sk = ed25519.SigningKey(fd.read())
vk = sk.get_verifying_key()
2016-01-16 12:31:04 +00:00
OLD_USER_ID = vk.to_ascii(encoding='base64').decode()
2014-05-04 17:26:43 +00:00
else:
2016-01-16 12:31:04 +00:00
sk = None
vk = None
OLD_USER_ID = None
2014-05-04 17:26:43 +00:00
USER_ID = get_user_id(ssl_key_path, ssl_cert_path)
2014-08-05 09:47:16 +00:00
OML_UPDATE_KEY='K55EZpPYbP3X+3mA66cztlw1sSaUMqGwfTDKQyP2qOU'
2014-05-04 17:26:43 +00:00
if 'modules' in release and 'openmedialibrary' in release['modules']:
MINOR_VERSION = release['modules']['openmedialibrary']['version']
2014-05-04 17:26:43 +00:00
else:
MINOR_VERSION = 'git'
2016-01-13 09:58:06 +00:00
NODE_PROTOCOL="0.5"
VERSION="%s.%s" % (NODE_PROTOCOL, MINOR_VERSION)
2014-05-04 17:26:43 +00:00
USER_AGENT = 'OpenMediaLibrary/%s' % VERSION
DEBUG_HTTP = server.get('debug_http', False)
2016-01-12 15:00:51 +00:00
2016-01-16 09:34:07 +00:00
DB_VERSION = 2