matrix-alertbot/config.py

97 lines
3.7 KiB
Python
Raw Normal View History

2019-09-25 14:26:29 +02:00
import logging
import re
import os
import yaml
import sys
from typing import List, Any
2019-09-25 14:26:29 +02:00
from errors import ConfigError
logger = logging.getLogger()
class Config(object):
def __init__(self, filepath):
"""
Args:
filepath (str): Path to config file
"""
if not os.path.isfile(filepath):
raise ConfigError(f"Config file '{filepath}' does not exist")
# Load in the config file at the given filepath
with open(filepath) as file_stream:
self.config = yaml.safe_load(file_stream.read())
2019-09-25 14:26:29 +02:00
# Logging setup
formatter = logging.Formatter('%(asctime)s | %(name)s [%(levelname)s] %(message)s')
log_level = self._get_cfg(["logging", "level"], default="INFO")
2019-09-25 14:26:29 +02:00
logger.setLevel(log_level)
file_logging_enabled = self._get_cfg(["logging", "file_logging", "enabled"], default=False)
file_logging_filepath = self._get_cfg(["logging", "file_logging", "filepath"], default="bot.log")
2019-09-25 14:26:29 +02:00
if file_logging_enabled:
handler = logging.FileHandler(file_logging_filepath)
handler.setFormatter(formatter)
logger.addHandler(handler)
console_logging_enabled = self._get_cfg(["logging", "console_logging", "enabled"], default=True)
2019-09-25 14:26:29 +02:00
if console_logging_enabled:
handler = logging.StreamHandler(sys.stdout)
handler.setFormatter(formatter)
logger.addHandler(handler)
2020-02-24 23:13:28 +01:00
# Storage setup
self.database_filepath = self._get_cfg(["storage", "database_filepath"], required=True)
self.store_filepath = self._get_cfg(["storage", "store_filepath"], required=True)
2019-09-25 14:26:29 +02:00
2020-02-25 00:56:09 +01:00
# Create the store folder if it doesn't exist
if not os.path.isdir(self.store_filepath):
if not os.path.exists(self.store_filepath):
os.mkdir(self.store_filepath)
else:
raise ConfigError(f"storage.store_filepath '{self.store_filepath}' is not a directory")
2019-09-25 14:26:29 +02:00
# Matrix bot account setup
self.user_id = self._get_cfg(["matrix", "user_id"], required=True)
if not re.match("@.*:.*", self.user_id):
2019-09-25 14:26:29 +02:00
raise ConfigError("matrix.user_id must be in the form @name:domain")
2020-02-24 23:13:28 +01:00
self.user_password = self._get_cfg(["matrix", "user_password"], required=True)
self.device_id = self._get_cfg(["matrix", "device_id"], required=True)
self.device_name = self._get_cfg(["matrix", "device_name"], default="nio-template")
self.homeserver_url = self._get_cfg(["matrix", "homeserver_url"], required=True)
2020-02-24 23:13:28 +01:00
self.enable_encryption = self._get_cfg(["matrix", "enable_encryption"], default=False)
self.command_prefix = self._get_cfg(["command_prefix"], default="!c") + " "
def _get_cfg(
self,
path: List[str],
default: Any = None,
required: bool = True,
) -> Any:
"""Get a config option from a path and option name, specifying whether it is
required.
Raises:
ConfigError: If required is specified and the object is not found
(and there is no default value provided), this error will be raised
"""
# Sift through the the config until we reach our option
config = self.config
for name in path:
config = config.get(name)
# If at any point we don't get our expected option...
if config is None:
# Raise an error if it was required
if required or not default:
2020-02-24 23:13:28 +01:00
raise ConfigError(f"Config option {'.'.join(path)} is required")
# or return the default value
return default
2019-09-25 14:26:29 +02:00
# We found the option. Return it
return config