-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy path37_create_entity_pages_v2.0.py
270 lines (238 loc) · 8.89 KB
/
37_create_entity_pages_v2.0.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# input the term
# output the page created or updated
# source of truth repository the mongodatabase
from pymongo import MongoClient
import os
import requests
import json
import yaml
# database where the attributes are stored
dbName = "smartdatamodels"
collectionName = "properties"
# connection with the database
client = MongoClient()
db = client[dbName]
colProperties = db[collectionName]
# root of the files
root = "/var/www/html/"
def open_jsonref(fileUrl):
import jsonref
import requests
if fileUrl[0:4] == "http":
# es URL
pointer = requests.get(fileUrl)
return jsonref.loads(pointer.content.decode('utf-8'))
else:
# es file
file = open(fileUrl, "r")
return jsonref.loads(file.read())
def open_yaml(fileUrl):
# import yaml
from ruamel.yaml import YAML
yaml_object = YAML(typ='safe', pure=True)
import requests
try:
if fileUrl[0:4] == "http":
# es URL
pointer = requests.get(fileUrl)
return yaml_object.load(pointer.content.decode('utf-8'))
except:
return None
else:
# es file
try:
file = open(fileUrl, "r")
return yaml_object.load(file.read())
except:
return None
def echo(concept, variable):
print("*** " + concept + " ***")
print(variable)
print("--- " + concept + " ---")
def create_context_entity_page(entity, subject):
# This function assumes the location of the mongodb with the terms
# in localhost and the collection has to be 'properties' into the database 'smartdatamodels'
root = "/var/www/html/"
### retrieve the data
queryTerm = {"dataModel": entity, "repoName": subject}
query = colProperties.find(queryTerm)
queryResult = [entity_ for entity_ in query]
echo("query result", queryResult)
echo("type of query result", type(queryResult))
# echo("type of query result 0", type(queryResult[0]))
# dataModelsUsed = []
# dataTypesUsed = []
# propertiesDescriptions = []
attributesList = []
yamlUrl = "https://raw.githubusercontent.com/smart-data-models/" + subject + "/master/" + entity + "/model.yaml"
entityDict = open_yaml(yamlUrl)
print(entityDict)
for entity_ in queryResult:
if "parentId" in entity_:
continue
elif "subpropertiesContext" in entity_:
attributesList.append((entity_["property"], entity_["context"], entity_["subpropertiesContext"]))
else:
attributesList.append((entity_["property"], entity_["context"], ""))
definition = entityDict[entity]["description"]
version = entityDict[entity]["x-version"]
schemaUrl = "https://raw.githubusercontent.com/smart-data-models/" + subject + "/master/" + entity + "/schema.json"
examplesUrl = "https://raw.githubusercontent.com/smart-data-models/" + subject + "/master/" + entity + "/examples"
adoptersUrl= "https://raw.githubusercontent.com/smart-data-models/" + subject + "/master/" + entity + "/ADOPTERS.yaml"
contributorsUrl = "https://raw.githubusercontent.com/smart-data-models/" + subject + "/master/" + "CONTRIBUTORS.yaml"
requiredAttributes = entityDict[entity]["required"]
#########################
### CREATING THE PAGE ###
#########################
#initialize the styles
html = """<style>
div.blueTable {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: left;
border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
.divTable.blueTable .divTableBody .divTableCell {
font-size: 13px;
}
.divTable.blueTable .divTableRow:nth-child(even) {
background: #D0E4F5;
}
.divTable.blueTable .divTableHeading {
background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444;
}
.divTable.blueTable .divTableHeading .divTableHead {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
.divTable.blueTable .divTableHeading .divTableHead:first-child {
border-left: none;
}
.blueTable .tableFootStyle {
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background: #D0E4F5;
background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
border-top: 2px solid #444444;
}
.blueTable .tableFootStyle {
font-size: 14px;
}
.blueTable .tableFootStyle .links {
text-align: right;
}
.blueTable .tableFootStyle .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}
.blueTable.outerTableFooter {
border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
padding: 3px 5px;
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}
</style>
"""
page = {}
### Heading
rowDivStart = "<div class=\"divTableRow\"><div class=\"divTableCell\">"
rowDivEnd = "</div></div>"
html += "<div class=\"divTable blueTable\"><div class=\"divTableHeading\"><div class=\"divTableRow\"><div class=\"divTableHead\"><h1>" + entity + "</h1></div></div></div>"
### Definition of the entity
html += rowDivStart + "<h2>" + "Definition" + "</h2>" + definition + rowDivEnd
### Version of the entity
html += rowDivStart + "<h2>" + "Version" + "</h2>" + version + rowDivEnd
### Schema of the entity
html += rowDivStart + "<h2>" + "Original Schema" + "</h2>" + "<a href=\"" + schemaUrl + "\">" + schemaUrl + "</a>" + rowDivEnd
### Contributors of the entity
html += rowDivStart + "<h2>" + "Contributors of the Subject" + "</h2>" + "<a href=\"" + contributorsUrl + "\">" + contributorsUrl + "</a>" + rowDivEnd
### ADOPTERS of the entity
html += rowDivStart + "<h2>" + "Adopters of the data model" + "</h2>" + "<a href=\"" + adoptersUrl + "\">" + adoptersUrl + "</a>" + rowDivEnd
### Examples of the entity
html += rowDivStart + "<h2>" + "Examples of the data model" + "</h2>" + "<a href=\"" + examplesUrl + "\">" + examplesUrl + "</a>" + rowDivEnd
### attributes List
html += rowDivStart + "<h3>" + "Attributes of the entity" + "</h3> " + rowDivEnd
html += "<ul>"
for attribute, context, subcontext in attributesList:
if "@" in context:
html += "<li>" + attribute + "</li>"
else:
html += "<li>" + "<a href=" + chr(34) + context + \
chr(34) + ">" + attribute + "</a></li>"
if isinstance(subcontext, list):
html += "<ul>"
for subprop in subcontext:
for k, v in subprop.items():
if "@" in v:
html += "<li>" + k + "</li>"
else:
html += "<li>" + "<a href=" + chr(34) + v + \
chr(34) + ">" + str(k) + "</a></li>"
html += "</ul>"
html += "</ul>"
### Required attributes List
html += rowDivStart + "<h3>" + "Required attributes" + "</h3> " + rowDivEnd
html += "<ul>"
for attribute in requiredAttributes:
html += "<li>" + attribute + "</li>"
html += "</ul>"
path = root + subject
htmlFile = path + "/" + entity
print("The html file is " + htmlFile)
# Check whether the specified path exists or not
isExist = os.path.exists(path)
if not isExist:
# Create a new directory because it does not exist
os.makedirs(path)
print("The new directory is created!")
with open(htmlFile, "w+") as file:
file.write(html)
configFile ="datamodels_to_publish.json"
dataModelsToPublish = open_jsonref(configFile)
repoName = dataModelsToPublish["subject"]
subject = repoName
dataModels = dataModelsToPublish["dataModels"]
if isinstance(dataModels, str):
dataModels = [dataModels]
# creating the pages here for the data models
indexPage = "sitemap.txt"
sitemapUrl = "https://smartdatamodels.org/sitemap.txt"
pointer = requests.get(sitemapUrl).text
cr = chr(10)
uris = pointer.split(cr)
print(dataModels)
newEntitiesUris = []
for dataModel in dataModels:
create_context_entity_page(dataModel, repoName)
newEntitiesUris.append("https://smartdatamodels.org/" + subject + "/" + dataModel)
for newEntityUri in newEntitiesUris:
if newEntityUri not in uris:
uris.append(newEntityUri)
indexContent = cr.join(uris)
with open(root + "sitemap.txt", "w+") as file:
file.write(indexContent)