-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig.py
466 lines (341 loc) · 14 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
# =========================================
# DEPS
# --------------------------------------
import rootpath
rootpath.append()
import sys
import os
import logging
import inspect
import mybad
from os import environ as env
from os import path, listdir
from deepmerge import Merger
from attributedict.collections import AttributeDict
from six import PY2, string_types
from config2.serializers import json_ as json
from config2.serializers import yaml_ as yaml
# =========================================
# CONSTANTS
# --------------------------------------
DEFAULT_ENV = None
DEFAULT_ENV_KEYS = ['PYTHON_ENV', 'ENV']
# NOTE: not supported for now
#
# DEFAULT_CONFIG_ENV = DEFAULT_ENV
# DEFAULT_CONFIG_ENV_KEYS = ['NODE_CONFIG_ENV']
DEFAULT_CONFIG_DIRECTORY_NAME = 'config'
DEFAULT_CONFIG_FORMATS = [
'json',
'yml',
]
DEFAULT_CONFIG_FORMAT_EXTENSIONS = {
'json': 'json',
'yaml': 'yaml',
'yml': 'yaml',
}
DEFAULT_CONFIG_SERIALIZERS = {
'json': json,
'yaml': yaml,
}
# DEFAULT_CONFIG_FORMAT = 'yaml'
DEFAULT_CONFIG_DEFAULT_FILE_BASENAME = 'default'
DEFAULT_CONFIG_CUSTOM_ENV_FILE_BASENAME = 'custom-environment-variables'
DEFAULT_CONFIG_RESERVED_FILE_BASENAMES = [
DEFAULT_CONFIG_DEFAULT_FILE_BASENAME,
DEFAULT_CONFIG_CUSTOM_ENV_FILE_BASENAME,
]
DEFAULT_ROOT_DETECT_FILE_PATTERN = '^.git|requirements.txt|setup.py|config$'
# REVIEW: https://github.com/lorenwest/node-config/wiki/Environment-Variables
# NOTE: not supported for now
#
# NODE_CONFIG
# NODE_APP_INSTANCE
# ALLOW_CONFIG_MUTATIONS
# NODE_CONFIG_STRICT_MODE
# DEFAULT_SUPPRESS_NO_CONFIG_WARNING
DISABLED = 1000 # NOTE: no easy way of disable Python standard logger instance without affecting global settings, so this is a workaround for now
# =========================================
# Errors
# --------------------------------------
class ConfigError(mybad.Error):
pass
# =========================================
# CLASSES
# --------------------------------------
class Config(AttributeDict):
def __init__(self,
env = None,
path = None,
config_path = None,
config_directory_name = None,
logger = False,
detect = True,
silent = True,
):
if isinstance(env, string_types):
if os.path.sep in env:
path = env
env = None
env = env or DEFAULT_ENV
# env = env or Config.detect_env(DEFAULT_ENV_KEYS, DEFAULT_ENV)
if not path:
try:
this_file_path = os.path.abspath(__file__).replace('.pyc', '.py')
if PY2:
frames = [
inspect.getframeinfo(frame[0]) for frame in inspect.stack()
]
else:
frames = list(inspect.stack())
filenames = [
frame.filename for frame in frames
]
for frame in frames:
caller_file_path = os.path.abspath(frame.filename)
is_not_this_file = (frame.filename != this_file_path)
is_not_importlib = not ('frozen importlib' in frame.filename) # Python `import <module>`, etc.
is_caller_file = is_not_this_file and is_not_importlib
if is_caller_file:
path = os.path.dirname(frame.filename)
break
except Exception as error:
path = os.getcwd()
path = os.path.abspath(path)
if detect:
if isinstance(detect, string_types):
detect_root_pattern = detect
elif isinstance(detect, (tuple, list)):
detect_root_pattern = detect.join('|')
else:
detect_root_pattern = DEFAULT_ROOT_DETECT_FILE_PATTERN
root_path = rootpath.detect(path, detect_root_pattern)
root_path = root_path or os.getcwd()
else:
root_path = path
config_directory_name = config_directory_name or DEFAULT_CONFIG_DIRECTORY_NAME # TODO: log warning if `config_path` used, means `config_directory_name` is ignored
config_path = config_path or os.path.join(root_path, config_directory_name)
if logger == False:
logger = logger or self.__class__.logger('base')
logger.setLevel(DISABLED)
else:
logger = logger or self.__class__.logger('base')
self.__config_data__ = {}
self.__config_directory_name__ = config_directory_name
self.__config_files__ = []
self.__config_path__ = config_path
self.__default_config_file__ = None
self.__env_config_file__ = None
self.__env_config_files__ = []
self.__env_variables_file__ = None
self.__env__ = env
self.__files__ = []
self.__logger__ = logger
self.__path__ = path
self.__root_path__ = root_path
self.__silent__ = silent
self.reload()
super(AttributeDict, self).__init__({})
def get_env(self):
return self.__env__
def get(self, key = None, default = None):
if key is None:
result = self.__dict__
else:
result = self.__dict__.get(key, default)
result = AttributeDict.dict(result)
return result
def items(self):
return list(map(lambda key: (key, self.__dict__.get(key, None)), self.__dict__.keys()))
def keys(self):
return list(self.__dict__.keys())
def values(self):
return list(map(lambda key: self.__dict__.get(key, None), self.__dict__.keys()))
def has(self, key):
return (key in self.keys())
def reload(self):
try:
detected_files = self.__class__.detect_files(self.__config_path__)
# detect: custom-environment-variables.yml
env_variables_file = dict(enumerate(filter((lambda config_file:
config_file.basename == DEFAULT_CONFIG_CUSTOM_ENV_FILE_BASENAME
), detected_files))).get(0, None)
# detect: default.yml
default_config_file = dict(enumerate(filter((lambda config_file:
config_file.basename == DEFAULT_CONFIG_DEFAULT_FILE_BASENAME
), detected_files))).get(0, None)
# detect: development.yml, production.yml, ...
env_config_files = filter((lambda config_file:
config_file.basename not in DEFAULT_CONFIG_RESERVED_FILE_BASENAMES
), detected_files)
env_config_files = list(env_config_files)
# current environment only
env_config_file = dict(enumerate(filter((lambda config_file:
config_file.basename == self.__env__
), detected_files))).get(0, None)
config_files = [default_config_file] + env_config_files
config_files = filter((lambda config_file:
config_file is not None
), [default_config_file, env_config_file])
config_files = list(config_files)
files = config_files + [env_variables_file]
files = filter((lambda config_file:
config_file is not None
), files)
files = list(files)
# load: default.yml
try:
self.__class__.load_file(default_config_file)
except Exception as error:
if not self.__silent__:
raise error
# load: development.yml, production.yml, ...
for environment_config_file in env_config_files:
try:
self.__class__.load_file(environment_config_file)
except Exception as error:
if not self.__silent__:
raise error
# load: custom-environment-variables.yml
if env_variables_file:
try:
self.__class__.load_file(env_variables_file)
env_variables_file.data = self.__class__.map_env_variable_config(env_variables_file.data)
except Exception as error:
if not self.__silent__:
raise error
config_datas = map((lambda _config_file:
_config_file and _config_file.data and _config_file.data.copy() or {}
), config_files)
config_datas = list(config_datas)
if env_variables_file:
config_datas.append(env_variables_file.data.copy())
config_data = self.__class__.merge(*config_datas)
self.__env_variables_file__ = env_variables_file
self.__default_config_file__ = default_config_file
self.__env_config_files__ = env_config_files
self.__env_config_file__ = env_config_file
self.__config_files__ = config_files
self.__files__ = files
self.__config_data__ = config_data
self.update(config_data)
except Exception as error:
if not self.__silent__:
raise error
@staticmethod
def map_env_variable_config(env_variable_mapping_object):
env_variable_mapping_object = env_variable_mapping_object or {}
env_variable_config = {} # dict(env_variable_mapping_object)
for key, value in env_variable_mapping_object.items():
if isinstance(value, dict):
env_variable_config_value = Config.map_env_variable_config(value)
if env_variable_config_value is not None:
if isinstance(env_variable_config_value, dict):
if len(env_variable_config_value):
env_variable_config[key] = env_variable_config_value
else:
env_variable_config[key] = env_variable_config_value
else:
env_variable_key = value
env_variable_value = env.get(env_variable_key)
if env_variable_value is not None:
env_variable_config[key] = env_variable_value
return env_variable_config
@staticmethod
def detect_files(config_path):
config_files = []
try:
for config_file_name in listdir(config_path):
config_file_path = path.join(config_path, config_file_name)
config_file_name_parts = dict(enumerate(config_file_name.split('.')))
config_file_basename = config_file_name_parts.get(0, None)
config_file_extension = config_file_name_parts.get(1, None)
is_valid_config_file_extension = (config_file_extension in DEFAULT_CONFIG_FORMAT_EXTENSIONS.keys())
if is_valid_config_file_extension:
config_files.append(AttributeDict({
'basename': config_file_basename,
'path': config_file_path,
'name': config_file_name,
'extension': config_file_extension,
'format': DEFAULT_CONFIG_FORMAT_EXTENSIONS.get(config_file_extension, None)
}))
except FileNotFoundError:
pass
return config_files
@staticmethod
def load_file(config_file):
config_file = config_file or {} # AttributeDict({})
try:
if hasattr(config_file, 'path') and config_file['path']:
with open(config_file.path) as file:
try:
config_file.raw = file.read()
except IOError as error:
raise ConfigError('Tried but failed to `read` detected config file `{path}`.'.format(**config_file))
try:
serializer = DEFAULT_CONFIG_SERIALIZERS[config_file.format]
config_file.data = serializer.unpack(config_file.raw)
except Exception as error:
raise ConfigError('Tried but failed to `unpack` (de-serialize) detected config file `{path}` using serializer `{format}`.'.format(**config_file))
except AttributeError as error:
raise ConfigError('Tried but failed to `load` detected config file.'.format(**config_file) + ' Reason: {}'.format(error))
return config_file
@staticmethod
def logger(key, options = {}):
logging.basicConfig(
level = logging.INFO,
stream = sys.stdout,
format = "%(levelname)s %(name)s %(message)s"
)
logger = logging.getLogger('config2:%s' % (key))
return logger
@staticmethod
def merge(*dicts):
result_dict = {}
merger = Merger(
# merge strategies - for each type.
[
(dict, ['merge']),
(list, ['override']),
],
# fallback strategies - for all other types
['override'],
# conflict strategies
['override'],
)
for next_dict in dicts:
merger.merge(result_dict, next_dict)
return result_dict
@staticmethod
def detect_env(keys, default = None):
matching_keys = list(filter(lambda key: env.get(key, None), keys))
matching_keys = list(filter(lambda key: key is not None, matching_keys))
matching_key = len(matching_keys) and matching_keys[0]
matching_key = matching_key or default
if matching_key:
value = env.get(matching_key, None)
else:
value = None
return value
@staticmethod
def create(*args, **kvargs):
env = dict(enumerate(args)).get(0, None)
env = env or kvargs.get('env', None)
env = env or Config.detect_env(DEFAULT_ENV_KEYS, DEFAULT_ENV)
try:
del args[0]
except:
pass
try:
del kvargs['env']
except:
pass
config = Config(env, *args, **kvargs)
return config
# =========================================
# INSTANCES
# --------------------------------------
try:
config = Config.create()
except Exception as error:
print('WARN: {0}'.format(error))