-
Notifications
You must be signed in to change notification settings - Fork 1
/
supernotes_format.py
executable file
·416 lines (333 loc) · 10.6 KB
/
supernotes_format.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#!/usr/bin/env python3
import json
import os
import re
import sys
class SupernotesCollection:
"""Collects all of the supernotes associated with an article."""
short_reference = None
volume = None
number = None
paragraphs = []
def __init__(self, file, volume, number):
"""
Construct SupernotesCollection.
Use file containing supernotes JSON data and volume and number
for issue.
"""
self.short_reference = file.content['metadata']['short-reference']
self.volume = volume
self.number = number
self.paragraphs = []
paragraph_keys = list(file.content['supernotes'].keys())
# Want the numerical sort order, not string order
paragraph_keys = [int(x) for x in paragraph_keys]
paragraph_keys.sort()
for element in paragraph_keys:
paragraph_collection = file.content['supernotes'][str(element)]
self.paragraphs.append(
Paragraph(paragraph_collection, element, self))
def generate_supernotes(self):
result = ''
result += '[\n'
for p in self.paragraphs:
result += p.output()
result = result[:-2] + '\n'
result += ']'
return result
def output(self):
"""Cycle through paragraphs and output them."""
issue_directory = "issue-{}-{}".format(self.volume, self.number)
try:
os.mkdir(issue_directory)
except Exception:
pass
os.chdir(issue_directory)
try:
os.mkdir(self.short_reference)
except Exception:
pass
os.chdir(self.short_reference)
f = open('supernotes.json', 'w')
f.write(self.generate_supernotes())
f.close()
class Paragraph:
"""Collects all supernotes on a paragraph identified by number."""
collection = None
content = None
number = None
notes = []
def __init__(self, data, number, collection):
"""
Construct Paragraph.
Take data and append appropriate set of supernotes to notes list.
"""
self.number = number
self.collection = collection
self.notes = []
ordered_keys = [['commentary', CommentarySet],
['citation', CitationSet],
['image', ImageSet],
['map', MapSet],
['link', LinkSet],
['video', VideoSet]]
for key in ordered_keys:
if key[0] in data:
self.notes.append(
key[1](data[key[0]], collection))
def output(self):
result = ''
result += '{\n'
result += '"paragraph": {},\n'.format(self.number)
result += '"notes": [\n'
for note in self.notes:
result += note.output()
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class CommentarySet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for comment in data:
self.content.append(comment)
def output(self):
result = ''
result += '{\n'
result += '"type": "commentary",\n'
result += '"notes": [\n'
for element in self.content:
result += '"{}",\n'.format(element)
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class CitationSet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for citation in data:
self.content.append(citation)
def output(self):
result = ''
result += '{\n'
result += '"type": "citation",\n'
result += '"notes": [\n'
for element in self.content:
result += '"{}",\n'.format(element)
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class ImageSet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for image in data:
self.content.append(
Image(image, collection))
def output(self):
result = ''
result += '{\n'
result += '"type": "image",\n'
result += '"notes": [\n'
for element in self.content:
result += element.output()
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class Image:
collection = None
url = None
alt = None
credit = None
caption = None
def __init__(self, data, collection):
for field in ['url-format', 'alt', 'credit', 'caption']:
if field in data:
if field == 'url-format':
self.url = re.split('/', data[field])[-1]
else:
setattr(self, field, data[field])
def output(self):
result = ''
result += '{\n'
result += '"url": "{}",\n'.format(self.url)
result += '"alt": "{}",\n'.format(self.alt)
result += '"caption": "{}",\n'.format(self.caption)
result += '"credit": "{}"\n'.format(self.credit)
result += '},\n'
return result
class MapSet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for map in data:
self.content.append(
Map(map, collection))
def output(self):
result = ''
result += '{\n'
result += '"type": "map",\n'
result += '"notes": [\n'
for element in self.content:
result += element.output()
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class Map:
collection = None
tileset = None
center = {}
zoom = None
minZoom = None
maxZoom = None
markers = []
def __init__(self, data, collection):
for field in ['tileset', 'center', 'zoom',
'minZoom', 'maxZoom', 'markers']:
setattr(self, field, data[field])
def output(self):
result = ''
result += '{\n'
result += '"tileset": "{}",\n'.format(self.tileset)
result += '"center": {\n'
result += '"longitude": "{}",\n'.format(self.center['longitude'])
result += '"latitude": "{}",\n'.format(self.center['latitude'])
result += '},\n'
result += '"zoom": "{}",\n'.format(self.zoom)
result += '"minZoom": "{}",\n'.format(self.minZoom)
result += '"maxZoom": "{}",\n'.format(self.maxZoom)
result += '"markers": [\n'
for marker in self.markers:
result += '{\n'
result += '"position": {\n'
result += '"longitude": "{}",\n'.format(
marker['position']['longitude'])
result += '"latitude": "{}"\n'.format(
marker['position']['latitude'])
result += '},\n'
result += '"message": "{}"\n'.format(marker['message'])
result += '},\n'
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class LinkSet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for link in data:
self.content.append(
Link(link, collection))
def output(self):
result = ''
result += '{\n'
result += '"type": "link",\n'
result += '"notes": [\n'
for element in self.content:
result += element.output()
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class Link:
collection = None
label = None
url = None
def __init__(self, data, collection):
self.collection = collection
self.label = data['label']
self.url = data['url']
def output(self):
result = ''
result += '{\n'
result += '"label": "{}",\n'.format(self.label)
result += '"url": "{}"\n'.format(self.url)
result += '},\n'
return result
class VideoSet:
collection = None
content = []
def __init__(self, data, collection):
self.collection = collection
self.content = []
for video in data:
self.content.append(
Video(video, collection))
def output(self):
result = ''
result += '{\n'
result += '"type": "video",\n'
result += '"notes": [\n'
for element in self.content:
result += element.output()
result = result[:-2] + '\n'
result += ']\n'
result += '},\n'
return result
class Video:
collection = None
service = None
id = None
width = None
height = None
caption = None
def __init__(self, data, collection):
self.collection = collection
for field in ['service', 'id', 'width', 'height', 'caption']:
setattr(self, field, data[field])
def output(self):
result = ''
result += '{\n'
result += '"service": "{}",\n'.format(self.service)
result += '"id": "{}",\n'.format(self.id)
result += '"width": "{}",\n'.format(self.width)
result += '"height": "{}",\n'.format(self.height)
result += '"caption": "{}"\n'.format(self.caption)
result += '},\n'
return result
class ContentFile:
stream = None
content = None
def __init__(self, stream):
self.stream = stream
self.content = json.loads(self.stream.read())
if __name__ == '__main__':
content_files = []
skipped_names = [
'contributors', 'cover.jpg', 'bundle.json',
'cover-chapter-1.jpg', 'cover-chapter-2.jpg',
'cover-chapter-3.jpg']
volume = None
number = None
for idx, arg in enumerate(sys.argv):
if idx == 0:
pass
elif idx == 1:
volume = arg
elif idx == 2:
number = arg
else:
name = arg.split('/')[-1]
if name not in skipped_names:
content_files.append(ContentFile(open(arg)))
current_directory = os.getcwd()
for file in content_files:
os.chdir(current_directory)
if 'supernotes' in file.content:
collection = SupernotesCollection(file, volume, number)
collection.output()