openmedialibrary/oml/settings.py

80 lines
2.4 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
from pdict import pdict
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
oml_config_path = os.path.join(base_dir, 'config.json')
config_path = os.path.normpath(os.path.join(base_dir, '..', 'config'))
if not os.path.exists(config_path):
os.makedirs(config_path)
2014-05-04 17:26:43 +00:00
db_path = os.path.join(config_path, 'data.db')
2015-03-07 13:47:12 +00:00
log_path = os.path.join(config_path, 'debug.log')
icons_db_path = os.path.join(config_path, 'icons.db')
key_path = os.path.join(config_path, 'node.key')
ssl_cert_path = os.path.join(config_path, 'node.ssl.crt')
ssl_key_path = os.path.join(config_path, 'node.ssl.key')
2014-05-04 17:26:43 +00:00
if os.path.exists(oml_config_path):
with open(oml_config_path) as fd:
config = json.load(fd)
else:
config = {}
preferences = pdict(os.path.join(config_path, 'preferences.json'), config['user']['preferences'])
ui = pdict(os.path.join(config_path, 'ui.json'), config['user']['ui'])
2014-05-04 17:26:43 +00:00
server = pdict(os.path.join(config_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]
release = pdict(os.path.join(config_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()
else:
sk, vk = ed25519.create_keypair()
2014-09-02 22:32:44 +00:00
with open(key_path, 'wb') as fd:
os.chmod(key_path, 0o600)
2014-05-04 17:26:43 +00:00
fd.write(sk.to_bytes())
2014-09-02 22:32:44 +00:00
os.chmod(key_path, 0o400)
2014-05-04 17:26:43 +00:00
2014-09-08 19:17:35 +00:00
USER_ID = vk.to_ascii(encoding='base64').decode()
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'
NODE_PROTOCOL="0.1"
VERSION="%s.%s" % (NODE_PROTOCOL, MINOR_VERSION)
2014-05-04 17:26:43 +00:00
USER_AGENT = 'OpenMediaLibrary/%s' % VERSION