forked from pyinfra-dev/pyinfra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
94 lines (66 loc) · 2.21 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
import ast
from os import path
import six
from pyinfra.api import Config
from .util import exec_file
def extract_file_config(filename, config=None):
with open(filename, 'r') as f:
data = f.read()
ast_data = ast.parse(data, filename=filename)
config_data = {}
for node in ast_data.body:
if not isinstance(node, ast.Assign):
continue
# Named Python objects (e.g. True/False/None)
if isinstance(node.value, ast.Name):
if node.value.id == 'True':
value = True
elif node.value.id == 'False':
value = False
else:
value = None
# NameConstant is Python 3+ only
elif six.PY3 and isinstance(node.value, ast.NameConstant):
value = node.value.value
# Strings
elif isinstance(node.value, ast.Str):
value = node.value.s
# Integers
elif isinstance(node.value, ast.Num):
value = node.value.n
# Config cannot be anything else
else:
continue
# If one of the assignments matches a config variable (e.g. SUDO = True)
# then assign it to the config object!
for target in node.targets:
if target.id.isupper() and hasattr(Config, target.id):
config_data[target.id] = value
# If we have a config, update and exit
if config:
for key, value in six.iteritems(config_data):
setattr(config, key, value)
return
return config_data
def load_config(deploy_dir):
'''
Loads any local config.py file.
'''
config = Config()
config_filename = path.join(deploy_dir, 'config.py')
if path.exists(config_filename):
extract_file_config(config_filename, config)
# Now execute the file to trigger loading of any hooks
exec_file(config_filename)
return config
def load_deploy_config(deploy_filename, config=None):
'''
Loads any local config overrides in the deploy file.
'''
if not config:
config = Config()
if not deploy_filename:
return
if path.exists(deploy_filename):
extract_file_config(deploy_filename, config)
return config