-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcreate_docu.py
executable file
·128 lines (105 loc) · 4.74 KB
/
create_docu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#! /usr/bin/env python3
import os
import codecs
import shutil
import logging
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("-l", "--lang", type=str, help="languages to build (en,de)")
parser.add_argument("-o", "--outputs", type=str, help="output formates (html,pdf,epub)")
parser.add_argument("-f", "--files", type=str, help="docu files to build")
parser.add_argument("-t", "--theme", type=str, help="pdf theme to use (opsi)")
parser.add_argument("-s", "--stylesheet", type=str, help="html style to use (opsi)")
parser.add_argument("-p", "--project-path", type=str, help="path to docu project")
parser.add_argument("--log-level", type=int, help="Python log level.", default=logging.WARNING)
# parser.add_argument("-a", "--asciidoc-option", type=str, help="asciidoc option to add (asciidoctor -a <...>)")
args = parser.parse_args()
logging.basicConfig(level=args.log_level)
logging.info(args)
if not args.project_path:
project_path = os.getcwd()
logging.debug(project_path)
languages = []
if args.lang:
for lang in args.lang.split(","):
languages.append(lang)
if len(languages) == 0:
languages = ["de", "en"]
outputs = []
if args.outputs:
for output in args.outputs.split(","):
outputs.append(output)
if len(outputs) == 0:
outputs = ["html", "pdf", "epub"]
input_files = []
if args.files:
for f in args.files.split(","):
input_files.append(f)
#-a pdf-style=conf/opsi-theme.yml
if args.theme:
pdf_style = f"-a pdf-style={project_path}/conf/{args.theme}-theme.yml"
else:
pdf_style = ""
if args.stylesheet:
html_style = f"-a stylesdir={project_path}/conf/stylesheets -a stylesheet={args.stylesheet}.css"
else:
html_style = ""
logging.debug(languages)
logging.debug(outputs)
logging.debug(input_files)
logging.debug(pdf_style)
logging.debug(html_style)
def copy_images(filename, source_dir, destination):
img_lines = []
img_files = []
with codecs.open(filename, "r") as html:
for line in html:
if "<img src=" in line:
img_line = line.split("\"")
for s in img_line:
if ".png" in s or ".jpg" in s or ".jpeg" in s:
img_files.append(s)
for f in img_files:
# logging.debug(f"copy {f} to {destination}")
shutil.copy(f"{source_dir}/{f}", destination)
if html_style:
logging.debug("copy css images")
if os.path.exists(f"{destination}/opsi-css"):
shutil.rmtree(f"{destination}/opsi-css")
shutil.copytree(f"{project_path}/conf/stylesheets/images", f"{destination}/opsi-css")
def listdirs(path):
return [d for d in os.listdir(path) if os.path.isdir(os.path.join(path, d)) and d.startswith("opsi")]
for lang in languages:
logging.debug(listdirs(lang))
for root, dirs, files in os.walk(lang):
if "opsi" not in root:
continue
for f in files:
if input_files and os.path.splitext(f)[0] not in input_files:
continue
root_basename = os.path.basename(root)
logging.debug(f"{root_basename} --- {os.path.splitext(f)[0]}")
if root_basename == os.path.splitext(f)[0]:
logging.debug("FILE: %s", f)
source = os.path.join(root,f)
for output in outputs:
destination_folder = f"build/{output}/{lang}/{root_basename}"
try:
os.makedirs(destination_folder)
except OSError:
logging.debug ("Creation of the directory %s failed" % destination_folder)
else:
logging.debug ("Successfully created the directory %s " % destination_folder)
destination = os.path.join(destination_folder, f"{root_basename}.{output}")
if output == "pdf":
logging.debug(f"asciidoctor -r asciidoctor-pdf -b pdf -a icons=font -a doctype=book -chapter-label="" -a icons=font {pdf_style} -a imagesdir=../images -D '{destination_folder}' {f}")
os.system(f"asciidoctor -r asciidoctor-pdf -b pdf -a icons=font -a doctype=book -a title-logo-image=../images/opsi_logo.png -a icons=font {pdf_style} -a imagesdir=../images -D '{destination_folder}' {os.path.join(root, f)}")
if output == "html":
logging.debug(f'asciidoctor -a encoding=UTF-8 -a doctype=book -a icons=font -chapter-label="" -a xrefstyle=full -a lang={lang} {html_style} --verbose --out-file "{destination}" {source} ')
os.system(f'asciidoctor -a encoding=UTF-8 -a doctype=book -a icons=font -a xrefstyle=full -a lang={lang} {html_style} --verbose --out-file "{destination}" {source} ')
copy_images(destination, f"{lang}/images", destination_folder)
if output == "epub":
shutil.copytree(f"{root}/../images", f"{root}/images")
logging.debug(f"asciidoctor -r asciidoctor-epub3 -b epub3 -a icons=font -a doctype=book -chapter-label="" -a icons=font -a imagesdir=images -D '{destination_folder}' {f}")
os.system(f"asciidoctor -r asciidoctor-epub3 -b epub3 -a icons=font -a doctype=book -a icons=font -a imagesdir=images -D '{destination_folder}' {os.path.join(root, f)}")
shutil.rmtree(f"{root}/images")