2015-12-07 02:40:13 +01:00
|
|
|
"""
|
|
|
|
conf.py - PyLink configuration core.
|
|
|
|
|
2016-06-21 19:56:53 +02:00
|
|
|
This module is used to access the configuration of the current PyLink instance.
|
|
|
|
It provides simple checks for validating and loading YAML-format configurations from arbitrary files.
|
2015-12-07 02:40:13 +01:00
|
|
|
"""
|
|
|
|
|
2015-05-31 21:20:09 +02:00
|
|
|
import yaml
|
2015-08-04 04:27:19 +02:00
|
|
|
import sys
|
2015-08-29 04:27:38 +02:00
|
|
|
from collections import defaultdict
|
|
|
|
|
2016-06-21 03:18:54 +02:00
|
|
|
from . import world
|
2015-05-31 21:20:09 +02:00
|
|
|
|
2015-09-28 20:30:51 +02:00
|
|
|
def validateConf(conf):
|
|
|
|
"""Validates a parsed configuration dict."""
|
|
|
|
assert type(conf) == dict, "Invalid configuration given: should be type dict, not %s." % type(conf).__name__
|
2016-02-08 03:01:12 +01:00
|
|
|
|
|
|
|
for section in ('bot', 'servers', 'login', 'logging'):
|
2015-09-28 20:30:51 +02:00
|
|
|
assert conf.get(section), "Missing %r section in config." % section
|
2016-02-08 03:01:12 +01:00
|
|
|
|
2015-09-28 20:30:51 +02:00
|
|
|
for netname, serverblock in conf['servers'].items():
|
|
|
|
for section in ('ip', 'port', 'recvpass', 'sendpass', 'hostname',
|
2015-09-29 04:22:19 +02:00
|
|
|
'sid', 'sidrange', 'protocol', 'maxnicklen'):
|
2015-09-28 20:30:51 +02:00
|
|
|
assert serverblock.get(section), "Missing %r in server block for %r." % (section, netname)
|
2016-02-08 03:01:12 +01:00
|
|
|
|
2015-09-29 04:22:19 +02:00
|
|
|
assert type(serverblock.get('channels')) == list, "'channels' option in " \
|
2015-09-28 20:30:51 +02:00
|
|
|
"server block for %s must be a list, not %s." % (netname, type(serverblock['channels']).__name__)
|
2016-02-08 03:01:12 +01:00
|
|
|
|
2015-09-28 20:30:51 +02:00
|
|
|
assert type(conf['login'].get('password')) == type(conf['login'].get('user')) == str and \
|
|
|
|
conf['login']['password'] != "changeme", "You have not set the login details correctly!"
|
2016-02-08 03:01:12 +01:00
|
|
|
|
2015-09-28 20:30:51 +02:00
|
|
|
return conf
|
|
|
|
|
2015-11-12 03:55:51 +01:00
|
|
|
def loadConf(fname, errors_fatal=True):
|
2015-09-28 20:30:51 +02:00
|
|
|
"""Loads a PyLink configuration file from the filename given."""
|
2016-06-21 19:55:42 +02:00
|
|
|
global confname, conf
|
|
|
|
confname = fname.split('.', 1)[0]
|
2015-09-28 20:30:51 +02:00
|
|
|
with open(fname, 'r') as f:
|
|
|
|
try:
|
|
|
|
conf = yaml.load(f)
|
2016-06-21 19:55:42 +02:00
|
|
|
conf = validateConf(conf)
|
2015-09-28 20:30:51 +02:00
|
|
|
except Exception as e:
|
|
|
|
print('ERROR: Failed to load config from %r: %s: %s' % (fname, type(e).__name__, e))
|
2015-11-12 03:55:51 +01:00
|
|
|
if errors_fatal:
|
|
|
|
sys.exit(4)
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
return conf
|