This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_schema.py
144 lines (111 loc) · 3.72 KB
/
config_schema.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
import logging
''' This class is used to validate the config
'''
class Schema:
def __init__(self):
pass
def _validate(self):
pass
def __hyphen_to_underscore(self, k):
return k.replace('-', '_')
def _populate(self, data, definition):
try:
for (k, v) in data.items():
k = self.__hyphen_to_underscore(k)
if k in definition:
vtype = definition[k]
if isinstance(vtype, list):
assert isinstance(v, list), "{} should be a list".format(k)
newlist = []
for item in v:
newlist.append(vtype[0](item))
setattr(self, k, newlist)
else:
setattr(self, k, vtype(v))
self._validate()
except AssertionError as err:
logging.error("Invalid config: %s", str(err))
raise Exception("Invalid config")
def _assert_non_empty(self, *attrs):
for attr in attrs:
assert len(getattr(self, attr)) > 0, "{}.{} must not be empty".format(type(self).__name__, attr)
def _assert_non_null(self, *attrs):
for attr in attrs:
assert getattr(self, attr) is not None, "{}.{} must not be None".format(type(self).__name__, attr)
class InterceptQuerySettings(Schema):
def __init__(self, data):
self.plugin = None
self.function = None
self._populate(data, {
'plugin': str,
'function': str
})
def _validate(self):
self._assert_non_null('plugin', 'function')
self._assert_non_empty('plugin', 'function')
class InterceptCommandSettings(Schema):
def __init__(self, data):
self.queries = []
self.connects = None
self._populate(data, {
'queries': [InterceptQuerySettings],
'connects': str
})
class InterceptSettings(Schema):
def __init__(self, data):
self.commands = None
self.responses = None
self._populate(data, {
'commands': InterceptCommandSettings,
'responses': str
})
class Connection(Schema):
def __init__(self, data):
self.name = None
self.host = None
self.port = None
self._populate(data, {
'name': str,
'host': str,
'port': int
})
def _validate(self):
self._assert_non_null('name', 'host', 'port')
self._assert_non_empty('name')
class InstanceSettings(Schema):
def __init__(self, data):
self.listen = None
self.redirect = None
self.intercept = None
self._populate(data, {
'listen': Connection,
'redirect': Connection,
'intercept': InterceptSettings
})
def _validate(self):
self._assert_non_null('listen', 'redirect')
class Settings(Schema):
def __init__(self, data):
self.log_level = None
self.intercept_log = None
self.general_log = None
self._populate(data, {
'log_level': str,
'intercept_log': str,
'general_log': str
})
def _validate(self):
self._assert_non_null('log_level', 'intercept_log', 'general_log')
self._assert_non_empty('log_level', 'intercept_log', 'general_log')
class Config(Schema):
def __init__(self, data):
self.plugins = []
self.settings = None
self.instances = []
self._populate(data, {
'plugins' : [str],
'settings' : Settings,
'instances' : [InstanceSettings]
})
def _validate(self):
self._assert_non_empty('instances')