generated from 8go/nio-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.py
156 lines (124 loc) · 5.38 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python3
r"""config.py.
0123456789012345678901234567890123456789012345678901234567890123456789012345678
0000000000111111111122222222223333333333444444444455555555556666666666777777777
# config.py
This file implements utility functions for
- reading in the YAML config file
- performing the according initialization and set-up
Don't change tabbing, spacing, or formating as the
file is automatically linted and beautified.
"""
import logging
import re
import os
import yaml
import sys
from typing import List, Any
from errors import ConfigError
logger = logging.getLogger()
class Config(object):
"""Handle config file."""
def __init__(self, filepath):
"""Initialize.
Arguments:
---------
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())
# Logging setup
formatter = logging.Formatter(
'%(asctime)s | %(name)s [%(levelname)s] %(message)s')
log_level = self._get_cfg(["logging", "level"], default="INFO")
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")
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)
if console_logging_enabled:
handler = logging.StreamHandler(sys.stdout)
handler.setFormatter(formatter)
logger.addHandler(handler)
# Storage setup
self.database_filepath = self._get_cfg(
["storage", "database_filepath"], required=True)
self.store_filepath = self._get_cfg(
["storage", "store_filepath"], required=True)
self.command_dict_filepath = self._get_cfg(
["storage", "command_dict_filepath"], default=None)
self.room_dict_filepath = self._get_cfg(
["storage", "room_dict_filepath"], default=None)
# 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")
# Matrix bot account setup
self.user_id = self._get_cfg(["matrix", "user_id"], required=True)
if not re.match("@.*:.*", self.user_id):
raise ConfigError(
"matrix.user_id must be in the form @name:domain")
self.user_password = self._get_cfg(
["matrix", "user_password"], required=False, default=None)
self.access_token = self._get_cfg(
["matrix", "access_token"], required=False, default=None)
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)
self.command_prefix = self._get_cfg(
["command_prefix"], default="!c") + " "
if not self.user_password and not self.access_token:
raise ConfigError(
"Either user_password or access_token must be specified")
self.trust_own_devices = self._get_cfg(
["matrix", "trust_own_devices"], default=False, required=False)
self.change_device_name = self._get_cfg(
["matrix", "change_device_name"], default=False, required=False)
self.process_audio = self._get_cfg(
["matrix", "process_audio"], default=False, required=False)
self.accept_invitations = self._get_cfg(
["matrix", "accept_invitations"], default=True, required=False)
def _get_cfg(
self,
path: List[str],
default: Any = None,
required: bool = True,
) -> Any:
"""Get a config option.
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, allow default to be None
if required:
raise ConfigError(
f"Config option {'.'.join(path)} is required")
# or return the default value
return default
# We found the option. Return it
return config