-
Notifications
You must be signed in to change notification settings - Fork 162
/
extract_examples.py
85 lines (63 loc) · 2.67 KB
/
extract_examples.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
import json
import os
import re
from liquid import Template, Environment
from yaml import load, dump
try:
from yaml import CLoader as Loader, CDumper as Dumper
except ImportError:
from yaml import Loader, Dumper
def jsonify(input):
return json.dumps(input)
env = Environment()
env.add_filter("jsonify", jsonify)
def get_globals(path):
globals = {"data" : {}}
for file in os.listdir(path):
with open(os.path.join(path, file)) as f:
globals["data"][file.replace(".yml", "")] = load(f, Loader=Loader)
return globals
def parse_liquid_template(template):
globals = get_globals(os.path.join("_data"))
liquid_tpl = env.from_string(template)
rendered = liquid_tpl.render(site=globals)
rendered = re.sub("\s?no_toc\s?", "", rendered)
rendered = re.sub("\s?class=\"\s?\"", "", rendered)
return rendered
def search_name_for_example(file_path, examples):
new_file_path = file_path.replace(".md", "")
return f"{os.path.basename(new_file_path)}-{(len(examples) + 1)}"
def search_examples_in_file(file_path):
examples = []
with open(file_path, 'r') as f:
content = f.read()
for x in re.finditer("({% comment %}Example name\: (.*?){% endcomment %}\n)?{% capture example %}((.|\n)*?){% endcapture %}", content):
examples.append({
"name": x.group(2) or search_name_for_example(file_path, examples),
"content" : parse_liquid_template(x.group(3))
})
return examples
def generate_examples_json(file_path, examples):
new_file_path = file_path.replace(".md", ".json").replace("docs", "api")
os.makedirs(os.path.dirname(new_file_path), exist_ok=True)
with open(new_file_path, "w") as f:
f.write(json.dumps(examples, indent=4))
for path, subdirs, files in os.walk("docs"):
for name in files:
file_path = os.path.join(path, name)
if file_path.endswith(".md"):
examples = search_examples_in_file(file_path)
if (examples):
generate_examples_json(file_path, examples)
# Check components status
STATUESE_API_DIR = os.path.join('api', 'statuses')
resulted_json = {}
os.makedirs(STATUESE_API_DIR, exist_ok=True)
with open(os.path.join('api', 'components_status.json'), "r") as f:
resulted_json = json.loads(f.read())
for item in resulted_json['items']:
normalized_title = re.search(r'`(.*?)`.*', item['title']).group(1)
item['title'] = normalized_title
item['content']['title'] = normalized_title
with open(os.path.join(STATUESE_API_DIR, normalized_title.lower().replace(' ', '_') + '.json'), "w") as fapi:
fapi.write(json.dumps(item, indent=4))