EDDN/src/eddn/conf/Settings.py
Athanasius fdee2c054f
python3: Gateway now working
Now I'm actually trying to run the code I'm finding more that needs
changing in order to run under python3
2022-08-18 15:18:28 +01:00

165 lines
7.7 KiB
Python

# coding: utf8
"""EDDN default Settings."""
import argparse
from typing import Dict
import simplejson
from eddn.conf.Version import __version__ as version
class _Settings(object):
EDDN_VERSION = version
###############################################################################
# Local installation settings
###############################################################################
CERT_FILE = '/etc/letsencrypt/live/eddn.edcd.io/fullchain.pem' # noqa: E221
KEY_FILE = '/etc/letsencrypt/live/eddn.edcd.io/privkey.pem' # noqa: E221
###############################################################################
# Relay settings
###############################################################################
RELAY_HTTP_BIND_ADDRESS = "0.0.0.0" # noqa: E221
RELAY_HTTP_PORT = 9090 # noqa: E221
RELAY_RECEIVER_BINDINGS = ["tcp://127.0.0.1:8500"] # noqa: E221
RELAY_SENDER_BINDINGS = ["tcp://*:9500"] # noqa: E221
# If set to False, no deduplicate is made
RELAY_DUPLICATE_MAX_MINUTES = 15 # noqa: E221
# If set to false, don't listen to topic and accept all incoming messages
RELAY_RECEIVE_ONLY_GATEWAY_EXTRA_JSON = True # noqa: E221
RELAY_EXTRA_JSON_SCHEMAS: Dict = {} # noqa: E221
###############################################################################
# Gateway settings
###############################################################################
GATEWAY_HTTP_BIND_ADDRESS = "127.0.0.1" # noqa: E221
GATEWAY_HTTP_PORT = 8081 # noqa: E221
GATEWAY_SENDER_BINDINGS = ["tcp://127.0.0.1:8500"] # noqa: E221
GATEWAY_JSON_SCHEMAS = { # noqa: E221
"https://eddn.edcd.io/schemas/commodity/3": "schemas/commodity-v3.0.json",
"https://eddn.edcd.io/schemas/commodity/3/test": "schemas/commodity-v3.0.json",
"https://eddn.edcd.io/schemas/shipyard/2": "schemas/shipyard-v2.0.json",
"https://eddn.edcd.io/schemas/shipyard/2/test": "schemas/shipyard-v2.0.json",
"https://eddn.edcd.io/schemas/outfitting/2": "schemas/outfitting-v2.0.json",
"https://eddn.edcd.io/schemas/outfitting/2/test": "schemas/outfitting-v2.0.json",
"https://eddn.edcd.io/schemas/blackmarket/1": "schemas/blackmarket-v1.0.json",
"https://eddn.edcd.io/schemas/blackmarket/1/test": "schemas/blackmarket-v1.0.json",
"https://eddn.edcd.io/schemas/journal/1": "schemas/journal-v1.0.json",
"https://eddn.edcd.io/schemas/journal/1/test": "schemas/journal-v1.0.json",
"https://eddn.edcd.io/schemas/scanbarycentre/1": "schemas/scanbarycentre-v1.0.json",
"https://eddn.edcd.io/schemas/scanbarycentre/1/test": "schemas/scanbarycentre-v1.0.json",
"https://eddn.edcd.io/schemas/fssdiscoveryscan/1": "schemas/fssdiscoveryscan-v1.0.json",
"https://eddn.edcd.io/schemas/fssdiscoveryscan/1/test": "schemas/fssdiscoveryscan-v1.0.json",
"https://eddn.edcd.io/schemas/codexentry/1": "schemas/codexentry-v1.0.json",
"https://eddn.edcd.io/schemas/codexentry/1/test": "schemas/codexentry-v1.0.json",
"https://eddn.edcd.io/schemas/navbeaconscan/1": "schemas/navbeaconscan-v1.0.json",
"https://eddn.edcd.io/schemas/navbeaconscan/1/test": "schemas/navbeaconscan-v1.0.json",
"https://eddn.edcd.io/schemas/navroute/1" : "schemas/navroute-v1.0.json",
"https://eddn.edcd.io/schemas/navroute/1/test" : "schemas/navroute-v1.0.json",
"https://eddn.edcd.io/schemas/approachsettlement/1" : "schemas/approachsettlement-v1.0.json",
"https://eddn.edcd.io/schemas/approachsettlement/1/test" : "schemas/approachsettlement-v1.0.json",
"https://eddn.edcd.io/schemas/fssallbodiesfound/1" : "schemas/fssallbodiesfound-v1.0.json",
"https://eddn.edcd.io/schemas/fssallbodiesfound/1/test" : "schemas/fssallbodiesfound-v1.0.json",
"https://eddn.edcd.io/schemas/fssbodysignals/1" : "schemas/fssbodysignals-v1.0.json",
"https://eddn.edcd.io/schemas/fssbodysignals/1/test" : "schemas/fssbodysignals-v1.0.json",
"https://eddn.edcd.io/schemas/fsssignaldiscovered/1" : "schemas/fsssignaldiscovered-v1.0.json",
"https://eddn.edcd.io/schemas/fsssignaldiscovered/1/test" : "schemas/fsssignaldiscovered-v1.0.json",
}
GATEWAY_OUTDATED_SCHEMAS = [ # noqa: E221
"http://schemas.elite-markets.net/eddn/commodity/1",
"http://schemas.elite-markets.net/eddn/commodity/1/test",
"http://schemas.elite-markets.net/eddn/commodity/2",
"http://schemas.elite-markets.net/eddn/commodity/2/test",
"http://schemas.elite-markets.net/eddn/commodity/3",
"http://schemas.elite-markets.net/eddn/commodity/3/test",
"http://schemas.elite-markets.net/eddn/outfitting/1",
"http://schemas.elite-markets.net/eddn/outfitting/1/test",
"http://schemas.elite-markets.net/eddn/outfitting/2",
"http://schemas.elite-markets.net/eddn/outfitting/2/test",
"http://schemas.elite-markets.net/eddn/shipyard/1",
"http://schemas.elite-markets.net/eddn/shipyard/1/test",
"http://schemas.elite-markets.net/eddn/shipyard/2",
"http://schemas.elite-markets.net/eddn/shipyard/2/test",
"http://schemas.elite-markets.net/eddn/blackmarket/1",
"http://schemas.elite-markets.net/eddn/blackmarket/1/test",
"http://schemas.elite-markets.net/eddn/journal/1",
"http://schemas.elite-markets.net/eddn/journal/1/test",
]
###############################################################################
# Monitor settings
###############################################################################
MONITOR_HTTP_BIND_ADDRESS = "0.0.0.0" # noqa: E221
MONITOR_HTTP_PORT = 9091 # noqa: E221
MONITOR_RECEIVER_BINDINGS = ["tcp://127.0.0.1:8500"] # noqa: E221
MONITOR_DB = { # noqa: E221
"user": "eddn",
"password": "cvLYM8AEqg29YTatFMEcqph3YkDWUMvC",
"database": "eddn"
}
MONITOR_UA = "UA-496332-23" # noqa: E221
##########################################################################
# Bouncer settings
##########################################################################
BOUNCER_HTTP_BIND_ADDRESS = "127.0.0.1" # noqa: E221
BOUNCER_HTTP_PORT = 8081 # noqa: E221
BOUNCER_LIVE_GATEWAY_URL = 'https://eddn.edcd.io:4430/upload/'
def load_from(self, file_name: str) -> None:
f = open(file_name, 'r')
conf = simplejson.load(f)
for key, value in conf.items():
if key in dir(self):
self.__setattr__(key, value)
else:
print(f"Ignoring unknown setting {key}")
Settings = _Settings()
def loadConfig(cl_args) -> None:
"""
Load in a commandline-specified settings file, if applicable.
A convenience method if you don't need other things specified as commandline
options. Otherwise, point the filename to Settings.loadFrom().
:param cl_args: An `argparse.parse_args()` return.
"""
if cl_args.config:
Settings.loadFrom(cl_args.config)