-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite-generator.py
More file actions
141 lines (132 loc) · 4.44 KB
/
website-generator.py
File metadata and controls
141 lines (132 loc) · 4.44 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import configparser
import importlib.util
import os
import re
import utils
definitions = {
"runtime": {
"cwd": os.path.dirname(os.path.realpath(__file__)),
},
"filenames": {
"index": "index.html",
"notfound": "404.html",
"search": "s.htm",
"css": "g.css",
"sitemap": "sitemap.xml",
},
"link_types": {
"default": 0,
"group": 1,
"artist": 2,
"release": 3,
"recording": 4,
"language": 5,
},
}
## Config
config = configparser.ConfigParser()
configFile = os.path.join(definitions["runtime"]["cwd"], "config.ini")
if os.path.isfile(configFile):
config.read(configFile)
else:
print("Error: config.ini does not exist")
exit()
## Function for optimizing templates’ code
def shrinkwrapTemplate(markup):
return re.sub(r"\n\s*", "", markup)
## Function for reading and optimizing templates’ code
def getTemplateContents(templateFileName):
if templateFileName == "sitemap.mustache":
return open(os.path.join(templatesPath, templateFileName), "r").read()
else:
return shrinkwrapTemplate(open(os.path.join(templatesPath, templateFileName), "r").read())
## Read and store template files
templates = {}
templatesPath = os.path.join(definitions["runtime"]["cwd"], "src", "templates")
templatesFileNames = next(os.walk(templatesPath))[2]
for templateFileName in templatesFileNames:
(templateName, _) = os.path.splitext(templateFileName)
templates[templateName] = getTemplateContents(templateFileName)
## Schema
##
## data:
## [...]
## "database": {
## LetterGroup {
## Artist {
## "name": String,
## "printable_name": String,
## "releases": [
## {
## "name": String,
## "printable_name": String,
## "recordings": [
## [
## {
## "name": String,
## "printable_name": String,
## "text": String,
## "metadata": {},
## "disc_no": Int,
## "track_no": Int,
## "postfix": String,
## }
## ]
## ],
## "year": Int
## }
## ]
## }
## }
## }
## "translations": {
## Language {
## LetterGroup {
## Artist {
## "name": String,
## "printable_name": String,
## "releases": [
## {
## "name": String,
## "printable_name": String,
## "recordings": [
## [
## {
## "name": String,
## "printable_name": String,
## "text": String,
## "metadata": {},
## }
## ]
## ]
## }
## ]
## }
## }
## }
## }
## "paths": String[]
## "keywords": {}
##
data = {
"definitions": definitions,
"config": config,
"templates": templates,
"database": {},
"translations": {},
"videos": {},
"paths": [],
"keywords": {},
}
if data["config"].getboolean("Site", "CreateSitemap", fallback=False):
data["sitemap"] = []
buildStagesDirectory = os.path.join(definitions["runtime"]["cwd"], os.path.splitext(os.path.basename(__file__))[0] + ".d")
for buildStageFilename in sorted(os.listdir(buildStagesDirectory), key=str.lower):
if buildStageFilename.endswith(".py"):
spec = importlib.util.spec_from_file_location(buildStageFilename, os.path.join(buildStagesDirectory, buildStageFilename))
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
buildStageMainFn = getattr(module, "main")
buildStageMainFn(data)