117 lines
3.9 KiB
Python
117 lines
3.9 KiB
Python
import os
|
|
import logging
|
|
|
|
from .utils import read_yaml_file, ensure_dir
|
|
from .stackgroup import StackGroup
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class CloudBender(object):
|
|
""" Config Class to handle recursive conf/* config tree """
|
|
def __init__(self, root_path):
|
|
self.root = root_path
|
|
self.sg = None
|
|
self.all_stacks = []
|
|
self.ctx = {
|
|
"config_path": os.path.join(self.root, "config"),
|
|
"template_path": os.path.join(self.root, "cloudformation"),
|
|
"parameter_path": os.path.join(self.root, "parameters"),
|
|
"artifact_paths": [os.path.join(self.root, "artifacts")]
|
|
}
|
|
self.default_settings = {
|
|
'vars': {'Mode': 'FortyTwo'}
|
|
}
|
|
|
|
if not os.path.isdir(self.root):
|
|
raise "Check '{0}' exists and is a valid project folder.".format(root_path)
|
|
|
|
def read_config(self):
|
|
"""Load the <path>/config.yaml, <path>/*.yaml as stacks, sub-folders are child groups """
|
|
|
|
# Read top level config.yaml and extract CloudBender CTX
|
|
_config = read_yaml_file(os.path.join(self.ctx['config_path'], 'config.yaml'))
|
|
if _config and _config.get('CloudBender'):
|
|
self.ctx.update(_config.get('CloudBender'))
|
|
|
|
# Make sure all paths are abs
|
|
for k, v in self.ctx.items():
|
|
if k in ['config_path', 'template_path', 'parameter_path', 'artifact_paths']:
|
|
if isinstance(v, list):
|
|
new_list = []
|
|
for path in v:
|
|
if not os.path.isabs(path):
|
|
new_list.append(os.path.normpath(os.path.join(self.root, path)))
|
|
else:
|
|
new_list.append(path)
|
|
self.ctx[k] = new_list
|
|
|
|
elif isinstance(v, str):
|
|
if not os.path.isabs(v):
|
|
self.ctx[k] = os.path.normpath(os.path.join(self.root, v))
|
|
|
|
if k in ['template_path', 'parameter_path']:
|
|
ensure_dir(self.ctx[k])
|
|
|
|
self.sg = StackGroup(self.ctx['config_path'], self.ctx)
|
|
self.sg.read_config(self.default_settings)
|
|
|
|
self.all_stacks = self.sg.get_stacks()
|
|
|
|
# If cfn vars config is completely empty set some default for tests to work
|
|
# if "vars" not in _config:
|
|
# _config = { "vars": { 'Azs': {'TestAZ': 'Next'}, 'Segments': {'Testnet': 'internet'}, "Mode": "Piped" } }
|
|
# self.vars.update(_config.get('vars'))
|
|
|
|
def dump_config(self):
|
|
logger.debug("<CloudBender: {}>".format(vars(self)))
|
|
self.sg.dump_config()
|
|
|
|
def clean(self):
|
|
for s in self.all_stacks:
|
|
s.delete_template_file()
|
|
s.delete_parameter_file()
|
|
|
|
def resolve_stacks(self, token):
|
|
stacks = []
|
|
|
|
# remove optional leading "config/" to allow bash path expansions
|
|
if token.startswith("config/"):
|
|
token = token[7:]
|
|
|
|
# If path ends with yaml we look for stacks
|
|
if token.endswith('.yaml'):
|
|
stacks = self.sg.get_stacks(token, match_by='path')
|
|
|
|
# otherwise assume we look for a group, if we find a group return all stacks below
|
|
else:
|
|
# Strip potential trailing slash
|
|
token = token.rstrip('/')
|
|
|
|
sg = self.sg.get_stackgroup(token, match_by='path')
|
|
if sg:
|
|
stacks = sg.get_stacks()
|
|
|
|
return stacks
|
|
|
|
def filter_stacks(self, filter_by, stacks=None):
|
|
# filter_by is a dict { property, value }
|
|
|
|
# if no group of stacks provided, look in all available
|
|
if not stacks:
|
|
stacks = self.all_stacks
|
|
|
|
matching_stacks = []
|
|
for s in stacks:
|
|
match = True
|
|
|
|
for p, v in filter_by.items():
|
|
if not (hasattr(s, p) and getattr(s, p) == v):
|
|
match = False
|
|
break
|
|
|
|
if match:
|
|
matching_stacks.append(s)
|
|
|
|
return matching_stacks
|