2019-10-08 09:39:27 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""Global settings definition."""
|
2019-10-07 12:44:45 +00:00
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
import os
|
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
import anyconfig
|
2019-10-08 22:59:40 +00:00
|
|
|
import environs
|
2019-10-08 09:30:31 +00:00
|
|
|
import jsonschema.exceptions
|
2019-10-15 08:48:18 +00:00
|
|
|
import ruamel.yaml
|
2019-10-07 12:44:45 +00:00
|
|
|
from appdirs import AppDirs
|
|
|
|
from jsonschema._utils import format_as_index
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2021-01-01 12:50:41 +00:00
|
|
|
import ansibledoctor.exception
|
|
|
|
from ansibledoctor.utils import Singleton
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
config_dir = AppDirs("ansible-doctor").user_config_dir
|
|
|
|
default_config_file = os.path.join(config_dir, "config.yml")
|
|
|
|
|
|
|
|
|
|
|
|
class Config():
|
|
|
|
"""
|
|
|
|
Create an object with all necessary settings.
|
|
|
|
|
|
|
|
Settings are loade from multiple locations in defined order (last wins):
|
|
|
|
- default settings defined by `self._get_defaults()`
|
|
|
|
- yaml config file, defaults to OS specific user config dir (https://pypi.org/project/appdirs/)
|
|
|
|
- provides cli parameters
|
|
|
|
"""
|
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
SETTINGS = {
|
|
|
|
"config_file": {
|
|
|
|
"default": "",
|
|
|
|
"env": "CONFIG_FILE",
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
2019-10-09 21:19:57 +00:00
|
|
|
"role_dir": {
|
2019-10-08 22:56:39 +00:00
|
|
|
"default": "",
|
2019-10-09 21:19:57 +00:00
|
|
|
"env": "ROLE_DIR",
|
2019-10-08 22:56:39 +00:00
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
2020-01-22 12:07:05 +00:00
|
|
|
"role_name": {
|
|
|
|
"default": "",
|
|
|
|
"env": "ROLE_NAME",
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
2019-10-08 22:56:39 +00:00
|
|
|
"dry_run": {
|
|
|
|
"default": False,
|
|
|
|
"env": "DRY_RUN",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().bool
|
|
|
|
},
|
|
|
|
"logging.level": {
|
|
|
|
"default": "WARNING",
|
|
|
|
"env": "LOG_LEVEL",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
|
|
|
"logging.json": {
|
|
|
|
"default": False,
|
|
|
|
"env": "LOG_JSON",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().bool
|
|
|
|
},
|
|
|
|
"output_dir": {
|
|
|
|
"default": os.getcwd(),
|
|
|
|
"env": "OUTPUT_DIR",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
|
|
|
"template_dir": {
|
|
|
|
"default": os.path.join(os.path.dirname(os.path.realpath(__file__)), "templates"),
|
|
|
|
"env": "TEMPLATE_DIR",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
|
|
|
"template": {
|
|
|
|
"default": "readme",
|
|
|
|
"env": "TEMPLATE",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
|
|
|
"force_overwrite": {
|
|
|
|
"default": False,
|
|
|
|
"env": "FORCE_OVERWRITE",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().bool
|
|
|
|
},
|
|
|
|
"custom_header": {
|
|
|
|
"default": "",
|
|
|
|
"env": "CUSTOM_HEADER",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().str
|
|
|
|
},
|
|
|
|
"exclude_files": {
|
|
|
|
"default": [],
|
|
|
|
"env": "EXCLUDE_FILES",
|
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().list
|
|
|
|
},
|
2021-07-27 20:01:56 +00:00
|
|
|
"role_detection": {
|
|
|
|
"default": True,
|
|
|
|
"env": "ROLE_DETECTION",
|
2021-07-27 19:32:39 +00:00
|
|
|
"file": True,
|
|
|
|
"type": environs.Env().bool
|
|
|
|
},
|
2019-10-08 22:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ANNOTATIONS = {
|
|
|
|
"meta": {
|
|
|
|
"name": "meta",
|
2019-10-15 07:54:03 +00:00
|
|
|
"automatic": True,
|
2022-02-21 20:38:47 +00:00
|
|
|
"subtypes": ["value"],
|
|
|
|
"allow_multiple": False
|
2019-10-08 22:56:39 +00:00
|
|
|
},
|
|
|
|
"todo": {
|
|
|
|
"name": "todo",
|
|
|
|
"automatic": True,
|
2022-02-21 20:38:47 +00:00
|
|
|
"subtypes": ["value"],
|
|
|
|
"allow_multiple": True
|
2019-10-08 22:56:39 +00:00
|
|
|
},
|
|
|
|
"var": {
|
|
|
|
"name": "var",
|
|
|
|
"automatic": True,
|
2022-02-21 20:38:47 +00:00
|
|
|
"subtypes": ["value", "example", "description"],
|
|
|
|
"allow_multiple": False
|
2019-10-08 22:56:39 +00:00
|
|
|
},
|
|
|
|
"example": {
|
|
|
|
"name": "example",
|
2019-10-15 07:54:03 +00:00
|
|
|
"automatic": True,
|
2022-02-21 20:38:47 +00:00
|
|
|
"subtypes": [],
|
|
|
|
"allow_multiple": False
|
2019-10-08 22:56:39 +00:00
|
|
|
},
|
|
|
|
"tag": {
|
|
|
|
"name": "tag",
|
|
|
|
"automatic": True,
|
2022-02-26 12:35:34 +00:00
|
|
|
"subtypes": ["value", "description"],
|
|
|
|
"allow_multiple": False
|
2019-10-08 22:56:39 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, args={}):
|
2019-10-07 12:44:45 +00:00
|
|
|
"""
|
|
|
|
Initialize a new settings class.
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
:param args: An optional dict of options, arguments and commands from the CLI.
|
|
|
|
:param config_file: An optional path to a yaml config file.
|
|
|
|
:returns: None
|
|
|
|
|
|
|
|
"""
|
2019-10-08 22:56:39 +00:00
|
|
|
self._args = args
|
|
|
|
self._schema = None
|
|
|
|
self.config_file = default_config_file
|
2019-10-09 21:19:57 +00:00
|
|
|
self.role_dir = os.getcwd()
|
2019-10-08 22:56:39 +00:00
|
|
|
self.config = None
|
|
|
|
self._set_config()
|
2019-10-07 12:44:45 +00:00
|
|
|
self.is_role = self._set_is_role() or False
|
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
def _get_args(self, args):
|
|
|
|
cleaned = dict(filter(lambda item: item[1] is not None, args.items()))
|
2019-10-07 12:44:45 +00:00
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
normalized = {}
|
|
|
|
for key, value in cleaned.items():
|
|
|
|
normalized = self._add_dict_branch(normalized, key.split("."), value)
|
2019-10-07 12:44:45 +00:00
|
|
|
|
|
|
|
# Override correct log level from argparse
|
|
|
|
levels = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
|
2019-10-08 22:56:39 +00:00
|
|
|
log_level = levels.index(self.SETTINGS["logging.level"]["default"])
|
|
|
|
if normalized.get("logging"):
|
|
|
|
for adjustment in normalized["logging"]["level"]:
|
2019-10-07 12:44:45 +00:00
|
|
|
log_level = min(len(levels) - 1, max(log_level + adjustment, 0))
|
2019-10-08 22:56:39 +00:00
|
|
|
normalized["logging"]["level"] = levels[log_level]
|
2019-10-07 12:44:45 +00:00
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
return normalized
|
2019-10-07 12:44:45 +00:00
|
|
|
|
|
|
|
def _get_defaults(self):
|
2019-10-08 22:56:39 +00:00
|
|
|
normalized = {}
|
|
|
|
for key, item in self.SETTINGS.items():
|
|
|
|
normalized = self._add_dict_branch(normalized, key.split("."), item["default"])
|
|
|
|
|
2020-01-22 12:07:05 +00:00
|
|
|
# compute role_name default
|
|
|
|
normalized["role_name"] = os.path.basename(self.role_dir)
|
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
self.schema = anyconfig.gen_schema(normalized)
|
|
|
|
return normalized
|
|
|
|
|
|
|
|
def _get_envs(self):
|
|
|
|
normalized = {}
|
|
|
|
for key, item in self.SETTINGS.items():
|
|
|
|
if item.get("env"):
|
|
|
|
prefix = "ANSIBLE_DOCTOR_"
|
|
|
|
envname = prefix + item["env"]
|
|
|
|
try:
|
|
|
|
value = item["type"](envname)
|
|
|
|
normalized = self._add_dict_branch(normalized, key.split("."), value)
|
|
|
|
except environs.EnvError as e:
|
|
|
|
if '"{}" not set'.format(envname) in str(e):
|
|
|
|
pass
|
|
|
|
else:
|
2021-01-01 12:50:41 +00:00
|
|
|
raise ansibledoctor.exception.ConfigError(
|
2020-04-05 21:16:53 +00:00
|
|
|
"Unable to read environment variable", str(e)
|
|
|
|
)
|
2019-10-08 22:56:39 +00:00
|
|
|
|
|
|
|
return normalized
|
|
|
|
|
|
|
|
def _set_config(self):
|
|
|
|
args = self._get_args(self._args)
|
|
|
|
envs = self._get_envs()
|
2019-10-07 12:44:45 +00:00
|
|
|
defaults = self._get_defaults()
|
2019-10-08 22:56:39 +00:00
|
|
|
|
|
|
|
# preset config file path
|
|
|
|
if envs.get("config_file"):
|
|
|
|
self.config_file = self._normalize_path(envs.get("config_file"))
|
2019-10-09 21:19:57 +00:00
|
|
|
if envs.get("role_dir"):
|
|
|
|
self.role_dir = self._normalize_path(envs.get("role_dir"))
|
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
if args.get("config_file"):
|
|
|
|
self.config_file = self._normalize_path(args.get("config_file"))
|
2019-10-09 21:19:57 +00:00
|
|
|
if args.get("role_dir"):
|
|
|
|
self.role_dir = self._normalize_path(args.get("role_dir"))
|
2019-10-08 22:56:39 +00:00
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
source_files = []
|
|
|
|
source_files.append(self.config_file)
|
2019-10-09 21:19:57 +00:00
|
|
|
source_files.append(os.path.join(os.getcwd(), ".ansibledoctor"))
|
|
|
|
source_files.append(os.path.join(os.getcwd(), ".ansibledoctor.yml"))
|
|
|
|
source_files.append(os.path.join(os.getcwd(), ".ansibledoctor.yaml"))
|
2019-10-07 12:44:45 +00:00
|
|
|
|
|
|
|
for config in source_files:
|
|
|
|
if config and os.path.exists(config):
|
|
|
|
with open(config, "r", encoding="utf8") as stream:
|
|
|
|
s = stream.read()
|
2019-10-08 09:30:31 +00:00
|
|
|
try:
|
2019-10-15 08:48:18 +00:00
|
|
|
file_dict = ruamel.yaml.safe_load(s)
|
2020-04-05 21:16:53 +00:00
|
|
|
except (
|
|
|
|
ruamel.yaml.composer.ComposerError, ruamel.yaml.scanner.ScannerError
|
|
|
|
) as e:
|
2019-10-15 08:48:18 +00:00
|
|
|
message = "{} {}".format(e.context, e.problem)
|
2021-01-01 12:50:41 +00:00
|
|
|
raise ansibledoctor.exception.ConfigError(
|
2019-10-15 08:48:18 +00:00
|
|
|
"Unable to read config file {}".format(config), message
|
|
|
|
)
|
2019-10-08 09:30:31 +00:00
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
if self._validate(file_dict):
|
|
|
|
anyconfig.merge(defaults, file_dict, ac_merge=anyconfig.MS_DICTS)
|
2019-10-07 12:44:45 +00:00
|
|
|
defaults["logging"]["level"] = defaults["logging"]["level"].upper()
|
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
if self._validate(envs):
|
|
|
|
anyconfig.merge(defaults, envs, ac_merge=anyconfig.MS_DICTS)
|
2019-10-07 12:44:45 +00:00
|
|
|
|
2019-10-08 22:56:39 +00:00
|
|
|
if self._validate(args):
|
|
|
|
anyconfig.merge(defaults, args, ac_merge=anyconfig.MS_DICTS)
|
|
|
|
|
2019-10-09 21:19:57 +00:00
|
|
|
fix_files = ["output_dir", "template_dir", "custom_header"]
|
|
|
|
for file in fix_files:
|
|
|
|
if defaults[file] and defaults[file] != "":
|
|
|
|
defaults[file] = self._normalize_path(defaults[file])
|
2019-10-08 22:56:39 +00:00
|
|
|
|
2019-10-09 21:19:57 +00:00
|
|
|
if "config_file" in defaults:
|
2019-10-08 22:56:39 +00:00
|
|
|
defaults.pop("config_file")
|
2019-10-09 21:19:57 +00:00
|
|
|
if "role_dir" in defaults:
|
|
|
|
defaults.pop("role_dir")
|
|
|
|
|
|
|
|
defaults["logging"]["level"] = defaults["logging"]["level"].upper()
|
2019-10-08 22:56:39 +00:00
|
|
|
|
|
|
|
self.config = defaults
|
|
|
|
|
|
|
|
def _normalize_path(self, path):
|
|
|
|
if not os.path.isabs(path):
|
2019-10-09 21:19:57 +00:00
|
|
|
base = os.path.join(os.getcwd(), path)
|
|
|
|
return os.path.abspath(os.path.expanduser(os.path.expandvars(base)))
|
2019-10-08 09:30:31 +00:00
|
|
|
else:
|
2019-10-08 22:56:39 +00:00
|
|
|
return path
|
2019-10-08 09:30:31 +00:00
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
def _set_is_role(self):
|
2019-10-09 21:19:57 +00:00
|
|
|
if os.path.isdir(os.path.join(self.role_dir, "tasks")):
|
2019-10-08 09:30:31 +00:00
|
|
|
return True
|
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
def _validate(self, config):
|
|
|
|
try:
|
|
|
|
anyconfig.validate(config, self.schema, ac_schema_safe=False)
|
2019-10-08 09:30:31 +00:00
|
|
|
except jsonschema.exceptions.ValidationError as e:
|
|
|
|
schema_error = "Failed validating '{validator}' in schema{schema}\n{message}".format(
|
2019-10-07 12:44:45 +00:00
|
|
|
validator=e.validator,
|
2019-10-08 09:30:31 +00:00
|
|
|
schema=format_as_index(list(e.relative_schema_path)[:-1]),
|
|
|
|
message=e.message
|
2019-10-07 12:44:45 +00:00
|
|
|
)
|
2021-01-01 12:50:41 +00:00
|
|
|
raise ansibledoctor.exception.ConfigError("Configuration error", schema_error)
|
2019-10-07 12:44:45 +00:00
|
|
|
|
2019-10-08 09:30:31 +00:00
|
|
|
return True
|
2019-10-07 12:44:45 +00:00
|
|
|
|
|
|
|
def _add_dict_branch(self, tree, vector, value):
|
|
|
|
key = vector[0]
|
|
|
|
tree[key] = value \
|
|
|
|
if len(vector) == 1 \
|
2019-10-08 22:56:39 +00:00
|
|
|
else self._add_dict_branch(tree[key] if key in tree else {}, vector[1:], value)
|
2019-10-07 12:44:45 +00:00
|
|
|
return tree
|
2019-10-07 06:52:00 +00:00
|
|
|
|
|
|
|
def get_annotations_definition(self, automatic=True):
|
|
|
|
annotations = {}
|
|
|
|
if automatic:
|
2019-10-08 22:56:39 +00:00
|
|
|
for k, item in self.ANNOTATIONS.items():
|
2019-10-07 06:52:00 +00:00
|
|
|
if "automatic" in item.keys() and item["automatic"]:
|
|
|
|
annotations[k] = item
|
|
|
|
return annotations
|
|
|
|
|
|
|
|
def get_annotations_names(self, automatic=True):
|
|
|
|
annotations = []
|
|
|
|
if automatic:
|
2019-10-08 22:56:39 +00:00
|
|
|
for k, item in self.ANNOTATIONS.items():
|
2019-10-07 06:52:00 +00:00
|
|
|
if "automatic" in item.keys() and item["automatic"]:
|
|
|
|
annotations.append(k)
|
|
|
|
return annotations
|
|
|
|
|
2019-10-07 12:44:45 +00:00
|
|
|
def get_template(self):
|
2019-10-07 06:52:00 +00:00
|
|
|
"""
|
|
|
|
Get the base dir for the template to use.
|
|
|
|
|
|
|
|
:return: str abs path
|
|
|
|
"""
|
2019-10-07 12:44:45 +00:00
|
|
|
template_dir = self.config.get("template_dir")
|
|
|
|
template = self.config.get("template")
|
|
|
|
return os.path.realpath(os.path.join(template_dir, template))
|
2019-10-07 06:52:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SingleConfig(Config, metaclass=Singleton):
|
2020-04-05 21:16:53 +00:00
|
|
|
"""Singleton config class."""
|
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
pass
|