ansible-doctor/ansibledoctor/DocumentationGenerator.py

139 lines
5.7 KiB
Python
Raw Normal View History

2019-10-07 08:52:00 +02:00
#!/usr/bin/env python3
2019-10-08 11:39:27 +02:00
"""Prepare output and write compiled jinja2 templates."""
2019-10-07 08:52:00 +02:00
import codecs
import glob
import json
import ntpath
import os
import pprint
import sys
2019-10-08 11:30:31 +02:00
from functools import reduce
2019-10-08 11:39:27 +02:00
2019-10-07 08:52:00 +02:00
import jinja2.exceptions
import ruamel.yaml
from jinja2 import Environment
from jinja2 import FileSystemLoader
from six import binary_type
from six import text_type
2019-10-08 11:39:27 +02:00
import ansibledoctor.Exception
2019-10-07 08:52:00 +02:00
from ansibledoctor.Config import SingleConfig
from ansibledoctor.Utils import FileUtils
from ansibledoctor.Utils import SingleLog
class Generator:
def __init__(self, doc_parser):
self.template_files = []
self.extension = "j2"
self._parser = None
self.config = SingleConfig()
2019-10-08 11:30:31 +02:00
self.log = SingleLog()
self.logger = self.log.logger
self.logger.info("Using template dir: " + self.config.get_template())
2019-10-07 08:52:00 +02:00
self._parser = doc_parser
self._scan_template()
def _scan_template(self):
"""
Search for Jinja2 (.j2) files to apply to the destination.
:return: None
"""
role_dir = self.config.get_template()
2019-10-07 08:52:00 +02:00
for file in glob.iglob(role_dir + "/**/*." + self.extension, recursive=True):
relative_file = file[len(role_dir) + 1:]
2019-10-07 08:52:00 +02:00
if ntpath.basename(file)[:1] != "_":
2019-10-08 11:30:31 +02:00
self.logger.debug("Found template file: " + relative_file)
2019-10-07 08:52:00 +02:00
self.template_files.append(relative_file)
else:
2019-10-08 11:30:31 +02:00
self.logger.debug("Ignoring template file: " + relative_file)
2019-10-07 08:52:00 +02:00
def _create_dir(self, directory):
if not self.config.config["dry_run"] and not os.path.isdir(directory):
try:
os.makedirs(directory, exist_ok=True)
self.logger.info("Creating dir: " + directory)
except FileExistsError as e:
self.log.sysexit_with_message(str(e))
2019-10-07 08:52:00 +02:00
def _write_doc(self):
files_to_overwite = []
for file in self.template_files:
doc_file = os.path.join(self.config.config.get("output_dir"), os.path.splitext(file)[0])
2019-10-07 08:52:00 +02:00
if os.path.isfile(doc_file):
files_to_overwite.append(doc_file)
header_file = self.config.config.get("custom_header")
role_data = self._parser.get_data()
header_content = ""
if bool(header_file):
role_data["internal"]["append"] = True
try:
with open(header_file, "r") as a:
header_content = a.read()
except FileNotFoundError as e:
self.log.sysexit_with_message("Can not open custom header file\n{}".format(str(e)))
if len(files_to_overwite) > 0 and self.config.config.get("force_overwrite") is False:
2019-10-09 00:56:39 +02:00
if not self.config.config["dry_run"]:
2019-10-08 11:30:31 +02:00
self.logger.warn("This files will be overwritten:")
print(*files_to_overwite, sep="\n")
2019-10-08 11:30:31 +02:00
try:
FileUtils.query_yes_no("Do you want to continue?")
except ansibledoctor.Exception.InputError:
self.log.sysexit_with_message("Aborted...")
2019-10-07 08:52:00 +02:00
for file in self.template_files:
2019-10-08 11:30:31 +02:00
doc_file = os.path.join(self.config.config.get("output_dir"), os.path.splitext(file)[0])
source_file = self.config.get_template() + "/" + file
2019-10-07 08:52:00 +02:00
2019-10-08 11:30:31 +02:00
self.logger.debug("Writing doc output to: " + doc_file + " from: " + source_file)
2019-10-07 08:52:00 +02:00
# make sure the directory exists
self._create_dir(os.path.dirname(doc_file))
2019-10-07 08:52:00 +02:00
if os.path.exists(source_file) and os.path.isfile(source_file):
with open(source_file, "r") as template:
data = template.read()
if data is not None:
try:
# print(json.dumps(role_data, indent=4, sort_keys=True))
jenv = Environment(loader=FileSystemLoader(self.config.get_template()), lstrip_blocks=True, trim_blocks=True) # nosec
2019-10-07 08:52:00 +02:00
jenv.filters["to_nice_yaml"] = self._to_nice_yaml
2019-10-08 11:30:31 +02:00
jenv.filters["deep_get"] = self._deep_get
data = jenv.from_string(data).render(role_data, role=role_data)
2019-10-09 00:56:39 +02:00
if not self.config.config["dry_run"]:
with open(doc_file, "wb") as outfile:
outfile.write(header_content.encode("utf-8"))
outfile.write(data.encode("utf-8"))
2019-10-08 11:30:31 +02:00
self.logger.info("Writing to: " + doc_file)
2019-10-07 08:52:00 +02:00
else:
2019-10-08 11:30:31 +02:00
self.logger.info("Writing to: " + doc_file)
except (jinja2.exceptions.UndefinedError, jinja2.exceptions.TemplateSyntaxError)as e:
self.log.sysexit_with_message(
"Jinja2 templating error while loading file: '{}'\n{}".format(file, str(e)))
2019-10-07 08:52:00 +02:00
except UnicodeEncodeError as e:
2019-10-08 11:30:31 +02:00
self.log.sysexit_with_message(
"Unable to print special characters\n{}".format(str(e)))
2019-10-07 08:52:00 +02:00
def _to_nice_yaml(self, a, indent=4, *args, **kw):
"""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()
2019-10-08 11:30:31 +02:00
def _deep_get(self, _, dictionary, keys, *args, **kw):
default = None
return reduce(lambda d, key: d.get(key, default) if isinstance(d, dict) else default, keys.split("."), dictionary)
2019-10-07 08:52:00 +02:00
def render(self):
2019-10-08 11:30:31 +02:00
self.logger.info("Using output dir: " + self.config.config.get("output_dir"))
self._write_doc()