-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenox.py
237 lines (193 loc) · 7.57 KB
/
genox.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import logging
import os
import shutil
import time
from pathlib import Path
import markdown2
import yaml
from jinja2 import Environment, FileSystemLoader
GENOX_IGNORE_LIST = {}
class MetaParseException(ValueError):
pass
class GenHook:
def call_hook(hook_name, site, context):
func = getattr(GenHook, hook_name)
if func:
func(site, context)
else:
logging.info('Invalid Hook name')
raise ValueError('Invalid Hook name')
@staticmethod
def index_list(site, context):
from itertools import groupby
index_list = []
for k, _ in site.items():
if k.startswith(context['container_path']) and k != context['rel_path']:
index_list.append(site[k])
index_list.sort(key=lambda x: x['date'], reverse=True)
index_group = {}
for k, it in groupby(index_list, lambda x: x['date'].year):
index_group[k] = list(it)
context['index_list'] = index_list
context['index_group'] = index_group
def extract_yaml(text):
"""
Extracts YAML metadata block from the top of the
text, and returns it along with the remaining text.
"""
first_line = True
metadata = []
content = []
metadata_parsed = False
for line in text.split('\n'):
if first_line:
first_line = False
if line.strip() != '---':
raise MetaParseException('Invalid metadata')
elif line.strip() == '' and not metadata_parsed:
pass
elif line.strip() == '---' and not metadata_parsed:
# reached the last line
metadata_parsed = True
elif not metadata_parsed:
metadata.append(line)
else:
content.append(line)
try:
content = '\n'.join(content)
metadata = yaml.load('\n'.join(metadata), Loader=yaml.FullLoader)
metadata = metadata or {}
except:
raise
return metadata, content
# Markdown to html conversions
_md_extras = [
"code-friendly",
"fenced-code-blocks",
"footnotes",
"header-ids",
"markdown-in-html",
# "metadata",
]
_markdown = markdown2.Markdown(extras=_md_extras).convert
def md2html(md):
return _markdown(md)
def dir_ignored(directory, ignore_patterns):
return any(os.path.basename(directory).startswith(y) for y in ignore_patterns)
def genox_ignored(relpath):
return relpath in GENOX_IGNORE_LIST
def rebuild_tree_hardlinks(src, dst, static_dir, ignore_ext):
os.makedirs(dst, exist_ok=True)
# shutil.rmtree(dst)
for item in os.listdir(src):
s = os.path.join(src, item)
d = os.path.join(dst, item)
if os.path.isdir(s):
shutil.copytree(s, d, copy_function=os.link, ignore=shutil.ignore_patterns(*['*' + ext for ext in ignore_ext]))
else:
shutil.copy2(s, d)
shutil.copytree(static_dir, os.path.join(dst, static_dir), copy_function=os.link)
def get_jinja_renderer(layout_dir, defaults, globals={}):
jinja_loader = FileSystemLoader(layout_dir)
jinja_env = Environment(loader=jinja_loader)
jinja_env.filters['datetimeformat'] = lambda x, y: x.strftime(y)
jinja_env.globals = globals
def renderer(layout, context):
t = jinja_env.get_template(layout)
return t.render(context)
return renderer
def render(src, dst, context, renderer):
layout = context.get('layout')
if not layout.endswith('.html'):
layout += '.html'
if os.path.isfile(dst):
logging.info(f"A file already exists at the destination: {dst}")
logging.info(f"Skipping src file: {src} to prevent overwriting.")
return
# make directories
dst_path = Path(dst)
dst_path.parent.mkdir(parents=True, exist_ok=True)
with open(dst, 'w') as fp:
logging.info("Writing to file: {}".format(dst))
fp.write(renderer(layout, context))
def index(directory, md_ext, config):
site = {}
src = config['input_dir']
for root, dirs, files in os.walk(directory, topdown=True):
if genox_ignored(root):
logging.info(f"Ignoring directory: {root}")
# Ignoring all subdirectories also
dirs[:] = []
continue
for fname in files:
fpath = os.path.join(root, fname)
relfpath = os.path.relpath(fpath, src)
if genox_ignored(fpath):
logging.info(f"Ignoring file: {fpath}")
continue
fbase, fext = os.path.splitext(fname)
if fext in md_ext:
try:
metadata, content = extract_yaml(open(fpath).read())
except:
logging.info(f"Skipping file with invalid metadata: {fpath}")
continue
site[relfpath] = config['defaults'].copy()
site[relfpath].update(metadata)
site[relfpath]['site'] = config['site']
site[relfpath]['raw_content'] = content
site[relfpath]['content'] = md2html(content)
site[relfpath]['rel_path'] = relfpath
site[relfpath]['rel_url'] = "/{}/".format(os.path.relpath(os.path.join(root, fbase), src))
site[relfpath]['container_path'] = os.path.relpath(root, src)
if fbase == "_index":
site[relfpath]['slug'] = os.path.basename(root)
site[relfpath]['is_index'] = True
site[relfpath]['rel_url'] = "/{}/".format(os.path.relpath(root, src))
else:
site[relfpath]['slug'] = fbase
site[relfpath]['rel_url'] = "/{}/".format(os.path.relpath(os.path.join(root, fbase), src))
return site
def build(site, dst, renderer):
for fpath, context in site.items():
slug = context.get('slug', None)
container_path = context.get('container_path')
output_fpath = os.path.join(dst, container_path)
if context.get('is_index', None):
output_fpath = os.path.join(output_fpath, "index.html")
else:
output_fpath = os.path.join(output_fpath, slug)
output_fpath = os.path.join(output_fpath, "index.html")
logging.info("Rendering: {}".format(output_fpath))
hooks = context.get('hooks', None)
if hooks:
logging.info(hooks)
for hook_name in hooks:
GenHook.call_hook(hook_name, site, context)
render(fpath, output_fpath, context, renderer)
def main():
config = yaml.load(open('config.yml').read(), Loader=yaml.FullLoader)
src, dst, layout_dir, md_ext = config['input_dir'], config['output_dir'], config['layout_dir'], config['md_ext']
global GENOX_IGNORE_LIST
try:
with open('.genoxignore', 'r') as fp:
GENOX_IGNORE_LIST = fp.read().splitlines()
except FileNotFoundError:
logging.info(".genoxignore file not found")
static_dir = config['static_dir']
rebuild_tree_hardlinks(src, dst, static_dir, md_ext)
site = index(src, md_ext, config)
jinja_renderer = get_jinja_renderer(layout_dir, config['defaults'], globals=site)
# print(site)
build(site, dst, jinja_renderer)
def cli():
logging.basicConfig(filename='.oxgen.log', filemode='w', level=logging.DEBUG)
logging.info("Starting oxgen..")
t_start = time.time()
main()
print("Site built in \033[43m\033[31m{:0.3f}\033[0m\033[49m seconds. That's quite fast, ain't it?".format(
time.time() - t_start))
# print("Built: {} pages.".format(len(oxgen.site['pages'])))
logging.info("Finished. Exiting...")
if __name__ == '__main__':
cli()