2019-03-06 19:57:31 +00:00
|
|
|
import os
|
2018-11-22 18:31:59 +00:00
|
|
|
import io
|
|
|
|
import gzip
|
|
|
|
import re
|
|
|
|
import base64
|
2019-03-06 19:57:31 +00:00
|
|
|
import yaml
|
2019-09-02 11:13:40 +00:00
|
|
|
import copy
|
2020-04-08 15:30:58 +00:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2019-03-06 19:57:31 +00:00
|
|
|
|
|
|
|
import jinja2
|
|
|
|
from jinja2.utils import missing, object_type_repr
|
|
|
|
from jinja2._compat import string_types
|
2019-04-18 16:30:50 +00:00
|
|
|
from jinja2.filters import make_attrgetter
|
|
|
|
from jinja2.runtime import Undefined
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
import pyminifier.token_utils
|
|
|
|
import pyminifier.minification
|
|
|
|
import pyminifier.compression
|
|
|
|
import pyminifier.obfuscate
|
|
|
|
import types
|
|
|
|
|
|
|
|
import logging
|
2019-04-18 16:30:50 +00:00
|
|
|
|
2018-11-22 18:31:59 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2019-02-05 17:48:29 +00:00
|
|
|
|
2018-11-22 18:31:59 +00:00
|
|
|
@jinja2.contextfunction
|
2019-04-18 16:30:50 +00:00
|
|
|
def option(context, attribute, default_value=u'', source='options'):
|
|
|
|
""" Get attribute from options data structure, default_value otherwise """
|
|
|
|
environment = context.environment
|
|
|
|
options = environment.globals['_config'][source]
|
2019-02-05 17:48:29 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
if not attribute:
|
|
|
|
return default_value
|
2019-02-05 17:48:29 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
try:
|
|
|
|
getter = make_attrgetter(environment, attribute)
|
|
|
|
value = getter(options)
|
2019-02-05 17:48:29 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
if isinstance(value, Undefined):
|
|
|
|
return default_value
|
2019-03-06 19:57:31 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
return value
|
2019-02-05 17:48:29 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
except (jinja2.exceptions.UndefinedError):
|
|
|
|
return default_value
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
@jinja2.contextfunction
|
2019-09-11 12:53:33 +00:00
|
|
|
def include_raw_gz(context, files=None, gz=True, remove_comments=False):
|
2018-11-22 18:31:59 +00:00
|
|
|
jenv = context.environment
|
|
|
|
output = ''
|
|
|
|
for name in files:
|
|
|
|
output = output + jinja2.Markup(jenv.loader.get_source(jenv, name)[0])
|
|
|
|
|
2019-09-11 12:53:33 +00:00
|
|
|
if remove_comments:
|
|
|
|
# Remove full line comments but not shebang
|
|
|
|
_re = re.compile(r'^\s*#[^!]')
|
|
|
|
stripped_output = ''
|
|
|
|
for curline in output.splitlines():
|
|
|
|
if re.match(_re, curline):
|
|
|
|
logger.debug("Removed {}".format(curline))
|
|
|
|
else:
|
2019-09-11 14:26:53 +00:00
|
|
|
stripped_output = stripped_output + curline + '\n'
|
2019-09-11 12:53:33 +00:00
|
|
|
|
|
|
|
output = stripped_output
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
if not gz:
|
|
|
|
return(output)
|
|
|
|
|
|
|
|
buf = io.BytesIO()
|
|
|
|
f = gzip.GzipFile(mode='w', fileobj=buf, mtime=0)
|
|
|
|
f.write(output.encode())
|
|
|
|
f.close()
|
|
|
|
|
2019-09-11 11:42:49 +00:00
|
|
|
# MaxSize is 21847
|
|
|
|
logger.info("Compressed user-data from {} to {}".format(len(output), len(buf.getvalue())))
|
2018-11-22 18:31:59 +00:00
|
|
|
return base64.b64encode(buf.getvalue()).decode('utf-8')
|
|
|
|
|
|
|
|
|
|
|
|
@jinja2.contextfunction
|
|
|
|
def raise_helper(context, msg):
|
|
|
|
raise Exception(msg)
|
|
|
|
|
|
|
|
|
|
|
|
# Custom tests
|
|
|
|
def regex(value='', pattern='', ignorecase=False, match_type='search'):
|
|
|
|
''' Expose `re` as a boolean filter using the `search` method by default.
|
|
|
|
This is likely only useful for `search` and `match` which already
|
|
|
|
have their own filters.
|
|
|
|
'''
|
|
|
|
if ignorecase:
|
|
|
|
flags = re.I
|
|
|
|
else:
|
|
|
|
flags = 0
|
|
|
|
_re = re.compile(pattern, flags=flags)
|
|
|
|
if getattr(_re, match_type, 'search')(value) is not None:
|
2019-02-07 15:36:16 +00:00
|
|
|
return True
|
2018-11-22 18:31:59 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def match(value, pattern='', ignorecase=False):
|
|
|
|
''' Perform a `re.match` returning a boolean '''
|
|
|
|
return regex(value, pattern, ignorecase, 'match')
|
|
|
|
|
|
|
|
|
|
|
|
def search(value, pattern='', ignorecase=False):
|
|
|
|
''' Perform a `re.search` returning a boolean '''
|
|
|
|
return regex(value, pattern, ignorecase, 'search')
|
|
|
|
|
|
|
|
|
|
|
|
# Custom filters
|
2019-04-18 16:30:50 +00:00
|
|
|
def sub(value='', pattern='', replace='', ignorecase=False):
|
2018-11-22 18:31:59 +00:00
|
|
|
if ignorecase:
|
|
|
|
flags = re.I
|
|
|
|
else:
|
|
|
|
flags = 0
|
2019-02-07 15:36:16 +00:00
|
|
|
return re.sub(pattern, replace, value, flags=flags)
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
def pyminify(source, obfuscate=False, minify=True):
|
|
|
|
# pyminifier options
|
2019-02-07 15:36:16 +00:00
|
|
|
options = types.SimpleNamespace(
|
|
|
|
tabs=False, replacement_length=1, use_nonlatin=0,
|
|
|
|
obfuscate=0, obf_variables=1, obf_classes=0, obf_functions=0,
|
|
|
|
obf_import_methods=0, obf_builtins=0)
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
tokens = pyminifier.token_utils.listified_tokenizer(source)
|
|
|
|
|
|
|
|
if minify:
|
|
|
|
source = pyminifier.minification.minify(tokens, options)
|
|
|
|
tokens = pyminifier.token_utils.listified_tokenizer(source)
|
|
|
|
|
|
|
|
if obfuscate:
|
|
|
|
name_generator = pyminifier.obfuscate.obfuscation_machine(use_unicode=False)
|
|
|
|
pyminifier.obfuscate.obfuscate("__main__", tokens, options, name_generator=name_generator)
|
2019-02-07 15:36:16 +00:00
|
|
|
# source = pyminifier.obfuscate.apply_obfuscation(source)
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
source = pyminifier.token_utils.untokenize(tokens)
|
2019-02-07 15:36:16 +00:00
|
|
|
# logger.info(source)
|
2018-11-22 18:31:59 +00:00
|
|
|
minified_source = pyminifier.compression.gz_pack(source)
|
2019-04-18 16:30:50 +00:00
|
|
|
logger.info("Compressed python code from {} to {}".format(len(source), len(minified_source)))
|
2018-11-22 18:31:59 +00:00
|
|
|
return minified_source
|
|
|
|
|
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
def inline_yaml(block):
|
2019-03-06 19:57:31 +00:00
|
|
|
return yaml.safe_load(block)
|
|
|
|
|
|
|
|
|
|
|
|
class SilentUndefined(jinja2.Undefined):
|
|
|
|
'''
|
|
|
|
Log warning for undefiend but continue
|
|
|
|
'''
|
|
|
|
def _fail_with_undefined_error(self, *args, **kwargs):
|
|
|
|
if self._undefined_hint is None:
|
|
|
|
if self._undefined_obj is missing:
|
|
|
|
hint = '%r is undefined' % self._undefined_name
|
|
|
|
elif not isinstance(self._undefined_name, string_types):
|
|
|
|
hint = '%s has no element %r' % (
|
|
|
|
object_type_repr(self._undefined_obj),
|
|
|
|
self._undefined_name
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
hint = '%r has no attribute %r' % (
|
|
|
|
object_type_repr(self._undefined_obj),
|
|
|
|
self._undefined_name
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
hint = self._undefined_hint
|
|
|
|
|
|
|
|
logger.warning("Undefined variable: {}".format(hint))
|
|
|
|
return ''
|
|
|
|
|
|
|
|
|
2018-11-22 18:31:59 +00:00
|
|
|
def JinjaEnv(template_locations=[]):
|
2019-01-21 10:43:36 +00:00
|
|
|
jenv = jinja2.Environment(trim_blocks=True,
|
|
|
|
lstrip_blocks=True,
|
2019-03-06 19:57:31 +00:00
|
|
|
extensions=['jinja2.ext.loopcontrols', 'jinja2.ext.do'])
|
2019-04-18 16:30:50 +00:00
|
|
|
# undefined=SilentUndefined,
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
jinja_loaders = []
|
|
|
|
for _dir in template_locations:
|
2019-12-09 13:32:39 +00:00
|
|
|
jinja_loaders.append(jinja2.FileSystemLoader(str(_dir)))
|
2018-11-22 18:31:59 +00:00
|
|
|
jenv.loader = jinja2.ChoiceLoader(jinja_loaders)
|
|
|
|
|
|
|
|
jenv.globals['include_raw'] = include_raw_gz
|
|
|
|
jenv.globals['raise'] = raise_helper
|
2019-04-18 16:30:50 +00:00
|
|
|
jenv.globals['option'] = option
|
2018-11-22 18:31:59 +00:00
|
|
|
|
2019-04-18 16:30:50 +00:00
|
|
|
jenv.filters['sub'] = sub
|
2018-11-22 18:31:59 +00:00
|
|
|
jenv.filters['pyminify'] = pyminify
|
2019-04-18 16:30:50 +00:00
|
|
|
jenv.filters['inline_yaml'] = inline_yaml
|
2018-11-22 18:31:59 +00:00
|
|
|
|
|
|
|
jenv.tests['match'] = match
|
|
|
|
jenv.tests['regex'] = regex
|
|
|
|
jenv.tests['search'] = search
|
|
|
|
|
|
|
|
return jenv
|
2019-03-06 19:57:31 +00:00
|
|
|
|
|
|
|
|
2019-09-02 11:13:40 +00:00
|
|
|
def read_config_file(path, variables={}):
|
|
|
|
""" reads yaml config file, passes it through jinja and returns data structre
|
|
|
|
|
|
|
|
- OS ENV are available as {{ ENV.<VAR> }}
|
|
|
|
- variables defined in parent configs are available as {{ <VAR> }}
|
|
|
|
"""
|
|
|
|
jinja_variables = copy.deepcopy(variables)
|
|
|
|
jinja_variables['ENV'] = os.environ
|
2019-03-06 19:57:31 +00:00
|
|
|
|
2019-12-09 13:32:39 +00:00
|
|
|
if path.exists():
|
2019-03-06 19:57:31 +00:00
|
|
|
logger.debug("Reading config file: {}".format(path))
|
2020-04-08 15:30:58 +00:00
|
|
|
|
|
|
|
# First check for sops being present
|
2019-03-06 19:57:31 +00:00
|
|
|
try:
|
|
|
|
jenv = jinja2.Environment(
|
2020-04-08 15:30:58 +00:00
|
|
|
enable_async=True,
|
|
|
|
auto_reload=False,
|
|
|
|
loader=jinja2.FunctionLoader(_sops_loader),
|
2019-03-06 19:57:31 +00:00
|
|
|
undefined=jinja2.StrictUndefined,
|
|
|
|
extensions=['jinja2.ext.loopcontrols'])
|
2020-04-08 15:30:58 +00:00
|
|
|
template = jenv.get_template(str(path))
|
2019-09-02 11:13:40 +00:00
|
|
|
rendered_template = template.render(jinja_variables)
|
2019-03-06 19:57:31 +00:00
|
|
|
data = yaml.safe_load(rendered_template)
|
|
|
|
if data:
|
|
|
|
return data
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
logger.exception("Error reading config file: {} ({})".format(path, e))
|
2020-04-08 15:30:58 +00:00
|
|
|
sys.exit(1)
|
2019-03-06 19:57:31 +00:00
|
|
|
|
|
|
|
return {}
|
2020-04-08 15:30:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _sops_loader(path):
|
|
|
|
""" Tries to loads yaml file
|
|
|
|
If "sops" key is detected the file is piped through sops before returned
|
|
|
|
"""
|
|
|
|
with open(path, 'r') as f:
|
|
|
|
config_raw = f.read()
|
|
|
|
data = yaml.safe_load(config_raw)
|
|
|
|
|
2020-05-01 13:06:53 +00:00
|
|
|
if data and 'sops' in data:
|
2020-04-08 15:30:58 +00:00
|
|
|
try:
|
|
|
|
result = subprocess.run([
|
|
|
|
'sops',
|
|
|
|
'--input-type', 'yaml',
|
|
|
|
'--output-type', 'yaml',
|
|
|
|
'--decrypt', '/dev/stdin'
|
2020-04-20 22:00:39 +00:00
|
|
|
], stdout=subprocess.PIPE, input=config_raw.encode('utf-8'),
|
|
|
|
env=dict(os.environ, **{"AWS_SDK_LOAD_CONFIG": "1"}))
|
2020-04-08 15:30:58 +00:00
|
|
|
except FileNotFoundError:
|
|
|
|
logger.exception("SOPS encrypted config {}, but unable to find sops binary! Try eg: https://github.com/mozilla/sops/releases/download/v3.5.0/sops-v3.5.0.linux".format(path))
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
return result.stdout.decode('utf-8')
|
|
|
|
else:
|
|
|
|
return config_raw
|