2019-10-07 06:52:00 +00:00
|
|
|
#!/usr/bin/env python3
|
2019-10-08 09:39:27 +00:00
|
|
|
"""Prepare output and write compiled jinja2 templates."""
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2024-10-08 08:08:06 +00:00
|
|
|
import json
|
2019-10-07 06:52:00 +00:00
|
|
|
import os
|
2022-02-19 13:58:35 +00:00
|
|
|
import re
|
2019-10-08 09:30:31 +00:00
|
|
|
from functools import reduce
|
2019-10-08 09:39:27 +00:00
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
import jinja2.exceptions
|
|
|
|
import ruamel.yaml
|
2024-06-17 11:51:03 +00:00
|
|
|
import structlog
|
2023-01-20 10:56:12 +00:00
|
|
|
from jinja2 import Environment, FileSystemLoader
|
2022-03-27 11:13:34 +00:00
|
|
|
from jinja2.filters import pass_eval_context
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2021-01-01 12:50:41 +00:00
|
|
|
from ansibledoctor.config import SingleConfig
|
2024-06-12 18:59:55 +00:00
|
|
|
from ansibledoctor.template import Template
|
2024-06-17 11:51:03 +00:00
|
|
|
from ansibledoctor.utils import FileUtils, sysexit_with_message
|
2019-10-07 06:52:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Generator:
|
2020-04-05 21:16:53 +00:00
|
|
|
"""Generate documentation from jinja2 templates."""
|
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
def __init__(self, doc_parser):
|
2024-06-17 11:51:03 +00:00
|
|
|
self.log = structlog.get_logger()
|
2024-06-12 18:59:55 +00:00
|
|
|
self.config = SingleConfig()
|
|
|
|
self.template = Template(
|
|
|
|
self.config.config.get("template.name"),
|
|
|
|
self.config.config.get("template.src"),
|
|
|
|
)
|
2019-10-07 06:52:00 +00:00
|
|
|
self._parser = doc_parser
|
|
|
|
|
|
|
|
def _create_dir(self, directory):
|
2019-10-09 21:23:14 +00:00
|
|
|
if not self.config.config["dry_run"] and not os.path.isdir(directory):
|
|
|
|
try:
|
|
|
|
os.makedirs(directory, exist_ok=True)
|
2024-06-17 11:51:03 +00:00
|
|
|
self.log.info(f"Creating dir: {directory}")
|
2019-10-09 21:23:14 +00:00
|
|
|
except FileExistsError as e:
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message(e)
|
2019-10-07 06:52:00 +00:00
|
|
|
|
|
|
|
def _write_doc(self):
|
|
|
|
files_to_overwite = []
|
|
|
|
|
2024-06-12 18:59:55 +00:00
|
|
|
for tf in self.template.files:
|
2020-04-05 21:16:53 +00:00
|
|
|
doc_file = os.path.join(
|
2024-06-12 18:59:55 +00:00
|
|
|
self.config.config.get("renderer.dest"), os.path.splitext(tf)[0]
|
2020-04-05 21:16:53 +00:00
|
|
|
)
|
2019-10-07 06:52:00 +00:00
|
|
|
if os.path.isfile(doc_file):
|
|
|
|
files_to_overwite.append(doc_file)
|
|
|
|
|
2024-06-07 19:51:10 +00:00
|
|
|
header_file = self.config.config.get("renderer.include_header")
|
2019-10-09 21:24:47 +00:00
|
|
|
role_data = self._parser.get_data()
|
|
|
|
header_content = ""
|
|
|
|
if bool(header_file):
|
|
|
|
role_data["internal"]["append"] = True
|
|
|
|
try:
|
2023-01-20 10:56:12 +00:00
|
|
|
with open(header_file) as a:
|
2019-10-09 21:24:47 +00:00
|
|
|
header_content = a.read()
|
|
|
|
except FileNotFoundError as e:
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message("Can not open custom header file", path=header_file, error=e)
|
2023-01-20 10:56:12 +00:00
|
|
|
|
|
|
|
if (
|
2023-11-10 13:50:50 +00:00
|
|
|
len(files_to_overwite) > 0
|
2024-06-07 19:51:10 +00:00
|
|
|
and self.config.config.get("renderer.force_overwrite") is False
|
2023-01-20 10:56:12 +00:00
|
|
|
and not self.config.config["dry_run"]
|
|
|
|
):
|
|
|
|
files_to_overwite_string = "\n".join(files_to_overwite)
|
2023-11-23 09:33:36 +00:00
|
|
|
prompt = f"These files will be overwritten:\n{files_to_overwite_string}".replace(
|
|
|
|
"\n", "\n... "
|
|
|
|
)
|
2023-01-20 10:56:12 +00:00
|
|
|
|
|
|
|
try:
|
2023-11-23 09:33:36 +00:00
|
|
|
if not FileUtils.query_yes_no(f"{prompt}\nDo you want to continue?"):
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message("Aborted...")
|
2024-06-12 18:59:55 +00:00
|
|
|
except KeyboardInterrupt:
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message("Aborted...")
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2024-06-12 18:59:55 +00:00
|
|
|
for tf in self.template.files:
|
2020-04-05 21:16:53 +00:00
|
|
|
doc_file = os.path.join(
|
2024-06-12 18:59:55 +00:00
|
|
|
self.config.config.get("renderer.dest"), os.path.splitext(tf)[0]
|
2020-04-05 21:16:53 +00:00
|
|
|
)
|
2024-06-12 18:59:55 +00:00
|
|
|
template = os.path.join(self.template.path, tf)
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2024-06-17 11:51:03 +00:00
|
|
|
self.log.debug("Writing renderer output", path=doc_file, src=os.path.dirname(template))
|
2019-10-07 06:52:00 +00:00
|
|
|
|
|
|
|
# make sure the directory exists
|
2019-10-09 21:24:47 +00:00
|
|
|
self._create_dir(os.path.dirname(doc_file))
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2024-06-12 18:59:55 +00:00
|
|
|
if os.path.exists(template) and os.path.isfile(template):
|
|
|
|
with open(template) as template:
|
2019-10-07 06:52:00 +00:00
|
|
|
data = template.read()
|
|
|
|
if data is not None:
|
|
|
|
try:
|
2020-04-05 21:28:39 +00:00
|
|
|
jenv = Environment( # nosec
|
2024-06-12 18:59:55 +00:00
|
|
|
loader=FileSystemLoader(self.template.path),
|
2020-04-05 21:16:53 +00:00
|
|
|
lstrip_blocks=True,
|
2023-01-20 10:56:12 +00:00
|
|
|
trim_blocks=True,
|
2023-11-10 13:50:50 +00:00
|
|
|
autoescape=jinja2.select_autoescape(),
|
2020-04-05 21:28:39 +00:00
|
|
|
)
|
2019-10-07 06:52:00 +00:00
|
|
|
jenv.filters["to_nice_yaml"] = self._to_nice_yaml
|
2024-10-08 06:26:25 +00:00
|
|
|
jenv.filters["to_code"] = self._to_code
|
2019-10-08 09:30:31 +00:00
|
|
|
jenv.filters["deep_get"] = self._deep_get
|
2023-02-09 18:27:22 +00:00
|
|
|
jenv.filters["safe_join"] = self._safe_join
|
|
|
|
# keep the old name of the function to not break custom templates.
|
|
|
|
jenv.filters["save_join"] = self._safe_join
|
2024-06-07 19:51:10 +00:00
|
|
|
template_options = self.config.config.get("template.options")
|
2024-06-01 20:05:16 +00:00
|
|
|
data = jenv.from_string(data).render(
|
2024-06-07 19:51:10 +00:00
|
|
|
role_data, role=role_data, options=template_options
|
2024-06-01 20:05:16 +00:00
|
|
|
)
|
2019-10-08 22:56:39 +00:00
|
|
|
if not self.config.config["dry_run"]:
|
2019-10-07 12:44:45 +00:00
|
|
|
with open(doc_file, "wb") as outfile:
|
2019-10-09 21:24:47 +00:00
|
|
|
outfile.write(header_content.encode("utf-8"))
|
2019-10-07 12:44:45 +00:00
|
|
|
outfile.write(data.encode("utf-8"))
|
2020-04-05 21:16:53 +00:00
|
|
|
except (
|
2023-02-09 18:27:22 +00:00
|
|
|
jinja2.exceptions.UndefinedError,
|
|
|
|
jinja2.exceptions.TemplateSyntaxError,
|
2023-11-10 13:50:50 +00:00
|
|
|
jinja2.exceptions.TemplateRuntimeError,
|
2020-04-05 21:16:53 +00:00
|
|
|
) as e:
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message(
|
|
|
|
"Jinja2 template error while loading file", path=tf, error=e
|
2020-04-05 21:16:53 +00:00
|
|
|
)
|
2019-10-07 06:52:00 +00:00
|
|
|
except UnicodeEncodeError as e:
|
2024-06-17 11:51:03 +00:00
|
|
|
sysexit_with_message("Failed to print special characters", error=e)
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2023-01-20 10:56:12 +00:00
|
|
|
def _to_nice_yaml(self, a, indent=4, **kw):
|
2019-10-07 06:52:00 +00:00
|
|
|
"""Make verbose, human readable yaml."""
|
|
|
|
yaml = ruamel.yaml.YAML()
|
|
|
|
yaml.indent(mapping=indent, sequence=(indent * 2), offset=indent)
|
|
|
|
stream = ruamel.yaml.compat.StringIO()
|
|
|
|
yaml.dump(a, stream, **kw)
|
|
|
|
return stream.getvalue().rstrip()
|
|
|
|
|
2024-10-08 08:08:06 +00:00
|
|
|
def _to_code(self, a, to_multiline=False, tab_var=False, preserve_ms=False, lang="plain"):
|
2024-10-08 06:26:25 +00:00
|
|
|
"""Wrap a string in backticks."""
|
|
|
|
if a is None or a == "":
|
|
|
|
return ""
|
|
|
|
|
|
|
|
if (isinstance(a, list) and len(a) < 1) or (isinstance(a, dict) and not a):
|
|
|
|
return ""
|
|
|
|
|
2024-10-08 08:08:06 +00:00
|
|
|
if isinstance(a, list) and len(a) > 1 and preserve_ms:
|
2024-10-08 06:26:25 +00:00
|
|
|
return a
|
|
|
|
|
2024-10-08 08:08:06 +00:00
|
|
|
if isinstance(a, list) and len(a) == 1:
|
|
|
|
return f"`{self._tab_var(a[0], tab_var)}`"
|
|
|
|
|
2024-10-08 06:26:25 +00:00
|
|
|
if (isinstance(a, list)) and to_multiline:
|
|
|
|
return "```" + lang + "\n" + "\n".join(a) + "\n```"
|
|
|
|
|
2024-10-08 08:08:06 +00:00
|
|
|
return f"`{self._tab_var(a, tab_var)}`"
|
|
|
|
|
|
|
|
def _tab_var(self, a, tab_var):
|
|
|
|
"""Wrap a string in backticks."""
|
|
|
|
if not tab_var:
|
|
|
|
return a
|
|
|
|
|
|
|
|
return json.dumps(a)
|
2024-10-08 06:26:25 +00:00
|
|
|
|
2023-01-20 10:56:12 +00:00
|
|
|
def _deep_get(self, _, dictionary, keys):
|
2019-10-08 09:30:31 +00:00
|
|
|
default = None
|
2020-04-05 21:16:53 +00:00
|
|
|
return reduce(
|
2023-11-10 13:50:50 +00:00
|
|
|
lambda d, key: d.get(key, default) if isinstance(d, dict) else default,
|
|
|
|
keys.split("."),
|
|
|
|
dictionary,
|
2020-04-05 21:16:53 +00:00
|
|
|
)
|
2019-10-08 09:30:31 +00:00
|
|
|
|
2022-03-27 11:13:34 +00:00
|
|
|
@pass_eval_context
|
2023-02-09 18:27:22 +00:00
|
|
|
def _safe_join(self, eval_ctx, value, d=""):
|
2019-10-15 07:54:03 +00:00
|
|
|
if isinstance(value, str):
|
|
|
|
value = [value]
|
2022-02-19 13:58:35 +00:00
|
|
|
|
2022-03-02 13:33:37 +00:00
|
|
|
normalized = jinja2.filters.do_join(eval_ctx, value, d, attribute=None)
|
|
|
|
|
2024-06-07 19:51:10 +00:00
|
|
|
if self.config.config.renderer.autotrim:
|
2023-06-14 11:31:01 +00:00
|
|
|
for s in [r" +(\n|\t| )", r"(\n|\t) +"]:
|
|
|
|
normalized = re.sub(s, "\\1", normalized)
|
|
|
|
|
|
|
|
return jinja2.filters.do_mark_safe(normalized)
|
2019-10-15 07:54:03 +00:00
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
def render(self):
|
2019-10-07 12:44:45 +00:00
|
|
|
self._write_doc()
|