This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 418
/
main.py
110 lines (84 loc) · 3.19 KB
/
main.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
import os
import shutil
import base64
import json
import mkdocs
import requests
from requests.auth import HTTPBasicAuth
from jinja2 import Template
def define_env(env):
"Definition of the module"
# boxes page
with open('src/boxes/data.json', 'rb') as data_file_object:
boxes = json.load(data_file_object)
# dict: repoName -> box
dicBox = dict(zip(
[box['repoName'] for box in boxes],
boxes
))
with open('src/data/boxes.json', 'rb') as boxes_file_object:
deets = json.load(boxes_file_object)
# merge boxes and deets
for key in deets.keys():
try:
dicBox[key]['deets'] = deets[key]
except KeyError:
print("%s is not a box!" % key)
# env.conf['extra']['boxes'] = boxes
env.conf['extra']['boxes'] = list(dicBox.values())
if os.environ.get("LOCAL_BUILD"):
env.conf['extra']['boxes'] = env.conf['extra']['boxes'][:6]
with open('src/boxes/box.html.jinja2', 'r') as file_:
template = Template(file_.read())
site_dir = env.conf['docs_dir']
username = os.environ.get("TRUFFLESUITE_COM_GH_API_USERNAME")
key = os.environ.get("TRUFFLESUITE_COM_GH_API_KEY")
for box in env.conf['extra']['boxes']:
print(box['repoName'])
box_dir = os.path.join(site_dir, 'boxes', box['displayName'])
if os.path.exists(box_dir):
shutil.rmtree(box_dir)
os.makedirs(box_dir)
file_path = os.path.join(box_dir, 'index.md')
response = requests.get("https://api.github.com/repos/" + box['userOrg'] + "/" + box['repoName'] + "/readme", auth=HTTPBasicAuth(username, key))
json_response = response.json()
try:
markdown = base64.b64decode(json_response['content'])
outputText = template.render(box=box, readme=markdown.decode('utf-8'))
with open(file_path, 'wb') as f:
f.write(outputText.encode('utf-8'))
except Exception as ex:
print('error: ' + repr(ex))
print(json_response)
def on_pre_page_macros(env):
"Pre-page actions"
# blog posts page
with open('src/blog/data.json', 'rb') as blog_file_object:
posts = json.load(blog_file_object)
publishedposts = []
for key in posts.keys():
if posts[key]['published']:
entry = posts[key]
entry['route'] = key
publishedposts.append(entry)
env.conf['extra']['posts'] = publishedposts
# guide page
with open('src/guides/data.json', 'rb') as guide_file_object:
guides = json.load(guide_file_object)
publishedguides = []
for key in guides.keys():
if guides[key]['published']:
entry = guides[key]
entry['route'] = key
publishedguides.append(entry)
env.conf['extra']['guides'] = publishedguides
# team page
with open('src/staff/data.json', 'rb') as team_file_object:
team = json.load(team_file_object)
env.conf['extra']['team'] = team
# events page
with open('src/events/data.json', 'rb') as events_file_object:
events = json.load(events_file_object)
env.conf['extra']['events'] = events
def on_post_build(env):
"Post-build actions"