forked from tweecode/twine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiddlywiki.py
637 lines (515 loc) · 23.3 KB
/
tiddlywiki.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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
"""
A Python implementation of the Twee compiler.
This code was written by Chris Klimas <[email protected]>
It is licensed under the GNU General Public License v2
http://creativecommons.org/licenses/GPL/2.0/
This file defines two classes: Tiddler and TiddlyWiki. These match what
you'd normally see in a TiddlyWiki; the goal here is to provide classes
that translate between Twee and TiddlyWiki output seamlessly.
"""
import re, datetime, time, locale, os, sys, tempfile, codecs
import tweeregex
from tweelexer import TweeLexer
class TiddlyWiki:
"""An entire TiddlyWiki."""
def __init__(self, author = 'twee'):
"""Optionally pass an author name."""
self.author = author
self.tiddlers = {}
self.storysettings = {}
def hasTiddler(self, name):
return name in self.tiddlers
def toTwee(self, order = None):
"""Returns Twee source code for this TiddlyWiki.
The 'order' argument is a sequence of passage titles specifying the order
in which passages should appear in the output string; by default passages
are returned in arbitrary order.
"""
tiddlers = self.tiddlers
if order is None:
order = tiddlers.keys()
return u''.join(tiddlers[i].toTwee() for i in order)
def read(self, filename):
try:
source = codecs.open(filename, 'r', 'utf_8_sig', 'strict')
w = source.read()
except UnicodeDecodeError:
try:
source = codecs.open(filename, 'r', 'utf16', 'strict')
w = source.read()
except:
source = open(filename, 'rb')
w = source.read()
source.close()
# Normalise line endings
w = w.replace('\r\n','\n')
return w
def toHtml(self, app, header = None, order = None, startAt = '', defaultName = ''):
"""Returns HTML code for this TiddlyWiki."""
if not order: order = self.tiddlers.keys()
output = u''
if not header:
app.displayError("building: no story format was specified.\n"
+ "Please select another format from the Story Format submenu.\n\n")
return
try:
headerPath = header.path + 'header.html'
# TODO: Move file reading to Header class.
output = self.read(headerPath)
except IOError:
app.displayError("building: the story format '" + header.label + "' isn't available.\n"
+ "Please select another format from the Story Format submenu.\n\n")
return
def insertEngine(app, output, filename, label, extra = ''):
if output.count(label) > 0:
try:
enginecode = self.read(filename)
return output.replace(label,enginecode + extra)
except IOError:
app.displayError("building: the file '" + filename + "' used by the story format '" + header.label + "' wasn't found.\n\n")
return None
else:
return output
# Insert version number
output = output.replace('"VERSION"', "Made in " + app.NAME + " " + app.VERSION)
# Insert timestamp
# Due to Windows limitations, the timezone offset must be computed manually.
tz_offset = (lambda t: '%s%02d%02d' % (('+' if t <= 0 else '-',) + divmod(abs(t) / 60, 60)))(time.timezone)
# Obtain the encoding expected to be used by strftime in this locale
strftime_encoding = locale.getlocale(locale.LC_TIME)[1] or locale.getpreferredencoding()
# Write the timestamp
output = output.replace('"TIME"', "Built on "+time.strftime("%d %b %Y at %H:%M:%S, "+tz_offset).decode(strftime_encoding))
# Insert the test play "start at passage" value
if (startAt):
output = output.replace('"START_AT"', '"' + startAt.replace('\\', r'\\').replace('"', '\"') + '"')
else:
output = output.replace('"START_AT"', '""')
# Embed any engine related files required by the header.
embedded = header.filesToEmbed()
for key in embedded.keys():
output = insertEngine(app, output, embedded[key], key)
if not output: return
# Insert the Backup Story Title
if defaultName:
name = defaultName.replace('"',r'\"')
output = re.sub('<title>.*?</title>', '<title>'+name+'</title>', output) \
.replace('"Untitled Story"', '"'+name+'"')
# Insert the description
if "description" in self.storysettings:
output = re.sub('<meta name="description" content="">', \
lambda a: a.group(0).replace('""', '"' + self.storysettings['description'] + '"'), output)
# Check if the scripts are personally requesting jQuery or Modernizr
jquery = 'jquery' in self.storysettings and self.storysettings['jquery'] != "off"
modernizr = 'modernizr' in self.storysettings and self.storysettings['modernizr'] != "off"
for i in filter(lambda a: (a.isScript() or a.isStylesheet()), self.tiddlers.itervalues()):
if not jquery and i.isScript() and re.search(r'requires? jquery', i.text, re.I):
jquery = True
if not modernizr and re.search(r'requires? modernizr', i.text, re.I):
modernizr = True
if jquery and modernizr:
break
# Insert jQuery
if jquery:
output = insertEngine(app, output, app.builtinTargetsPath + 'jquery.js', '"JQUERY"')
if not output: return
else:
output = output.replace('"JQUERY"','')
# Insert Modernizr
if modernizr:
output = insertEngine(app, output, app.builtinTargetsPath + 'modernizr.js', '"MODERNIZR"')
if not output: return
else:
output = output.replace('"MODERNIZR"','')
argEncoders = []
bodyEncoders = []
rot13 = 'obfuscate' in self.storysettings and \
self.storysettings['obfuscate'] != 'off';
# In case it was set to "swap" (legacy 1.4.1 file),
# alter and remove old properties.
if rot13:
self.storysettings['obfuscate'] = "rot13"
if 'obfuscatekey' in self.storysettings:
del self.storysettings['obfuscatekey']
# Finally add the passage data
storyfragments = []
for i in order:
tiddler = self.tiddlers[i]
# Strip out comments from storysettings and reflect any alterations made
if tiddler.title == 'StorySettings':
tiddler.text = ''.join([(str(k)+":"+str(v)+"\n") for k,v in self.storysettings.iteritems()])
if self.NOINCLUDE_TAGS.isdisjoint(tiddler.tags):
if not rot13 or tiddler.title == 'StorySettings' or tiddler.isImage() :
storyfragments.append(tiddler.toHtml(self.author, False))
else:
storyfragments.append(tiddler.toHtml(self.author, rot13))
storycode = u''.join(storyfragments)
if output.count('"STORY"') > 0:
output = output.replace('"STORY"', storycode)
else:
output += storycode
if (header):
footername = header.path + 'footer.html'
if os.path.exists(footername):
output += self.read(footername)
else:
output += '</div></body></html>'
return output
def toRtf(self, order = None):
"""Returns RTF source code for this TiddlyWiki."""
if not order: order = self.tiddlers.keys()
def rtf_encode_char(unicodechar):
if ord(unicodechar) < 128:
return str(unicodechar)
return r'\u' + str(ord(unicodechar)) + r'?'
def rtf_encode(unicodestring):
return r''.join(rtf_encode_char(c) for c in unicodestring)
# preamble
output = r'{\rtf1\ansi\ansicpg1251' + '\n'
output += r'{\fonttbl\f0\fswiss\fcharset0 Arial;\f1\fmodern\fcharset0 Courier;}' + '\n'
output += r'{\colortbl;\red128\green128\blue128;\red51\green51\blue204;}' + '\n'
output += r'\margl1440\margr1440\vieww9000\viewh8400\viewkind0' + '\n'
output += r'\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx792' + '\n'
output += r'\tx8640\ql\qnatural\pardirnatural\pgnx720\pgny720' + '\n'
# content
for i in order:
text = rtf_encode(self.tiddlers[i].text)
text = re.sub(r'\n', '\\\n', text) # newlines
text = re.sub(tweeregex.LINK_REGEX, r'\\b\cf2 \ul \1\ulnone \cf0 \\b0 ', text) # links
text = re.sub(r"''(.*?)''", r'\\b \1\\b0 ', text) # bold
text = re.sub(r'\/\/(.*?)\/\/', r'\i \1\i0 ', text) # italics
text = re.sub(r"\^\^(.*?)\^\^", r'\\super \1\\nosupersub ', text) # sup
text = re.sub(r"~~(.*?)~~", r'\\sub \1\\nosupersub ', text) # sub
text = re.sub(r"==(.*?)==", r'\\strike \1\\strike0 ', text) # strike
text = re.sub(r'(\<\<.*?\>\>)', r'\\f1\cf1 \1\cf0\\f0 ', text) # macros
text = re.sub(tweeregex.HTML_REGEX, r'\\f1\cf1 \g<0>\cf0\\f0 ', text) # macros
text = re.sub(tweeregex.MONO_REGEX, r'\\f1 \1\\f0 ', text) # monospace
text = re.sub(tweeregex.COMMENT_REGEX, '', text) # comments
output += r'\fs24\b1 ' + rtf_encode(self.tiddlers[i].title) + r'\b0\fs20 ' + '\\\n'
output += text + '\\\n\\\n'
output += '}'
return output
def addTwee(self, source):
"""Adds Twee source code to this TiddlyWiki.
Returns the tiddler titles in the order they occurred in the Twee source.
"""
source = source.replace("\r\n", "\n")
source = '\n' + source
tiddlers = source.split('\n::')[1:]
order = []
for i in tiddlers:
tiddler = Tiddler('::' + i)
self.addTiddler(tiddler)
order.append(tiddler.title)
return order
def addHtml(self, source):
"""Adds HTML source code to this TiddlyWiki.
Returns the tiddler titles in the order they occurred in the HTML.
"""
order = []
divs = re.search(r'<div\sid=["\']?store(?:A|-a)rea["\']?(?: hidden)?>(.*)</div>', source,
re.DOTALL)
if divs:
divs = divs.group(1);
# HTML may be obfuscated.
obfuscatekey = ''
storysettings_re = r'[^>]*\stiddler=["\']?StorySettings["\']?[^>]*>.*?</div>'
storysettings = re.search(r'<div'+storysettings_re, divs, re.DOTALL)
if storysettings:
ssTiddler = self.addTiddler(Tiddler(storysettings.group(0), 'html'))
obfuscate = re.search(r'obfuscate\s*:\s*((?:[^\no]|o(?!ff))*)\s*(?:\n|$)', ssTiddler.text, re.I)
if obfuscate:
if "swap" in obfuscate.group(1):
# Find the legacy 'obfuscatekey' option from 1.4.0.
match = re.search(r'obfuscatekey\s*:\s*(\w*)\s*(?:\n|$)', ssTiddler.text, re.I)
if match:
obfuscatekey = match.group(1)
nss = u''
for nsc in obfuscatekey:
if nss.find(nsc) == -1 and not nsc in ':\\\"n0':
nss = nss + nsc
obfuscatekey = nss
else:
obfuscatekey = "anbocpdqerfsgthuivjwkxlymz"
divs = divs[:storysettings.start(0)] + divs[storysettings.end(0)+1:]
for div in divs.split('<div'):
div.strip()
if div:
tiddler = Tiddler('<div' + div, 'html', obfuscatekey)
self.addTiddler(tiddler)
order.append(tiddler.title)
return order
def addHtmlFromFilename(self, filename):
return self.addHtml(self.read(filename))
def addTweeFromFilename(self, filename):
return self.addTwee(self.read(filename))
def addTiddler(self, tiddler):
"""Adds a Tiddler object to this TiddlyWiki."""
if tiddler.title in self.tiddlers:
if (tiddler == self.tiddlers[tiddler.title]) and \
(tiddler.modified > self.tiddlers[tiddler.title].modified):
self.tiddlers[tiddler.title] = tiddler
else:
self.tiddlers[tiddler.title] = tiddler
return tiddler
FORMATTED_INFO_PASSAGES = frozenset([
'StoryMenu', 'StoryTitle', 'StoryAuthor', 'StorySubtitle', 'StoryInit'])
UNFORMATTED_INFO_PASSAGES = frozenset(['StoryIncludes', 'StorySettings'])
INFO_PASSAGES = FORMATTED_INFO_PASSAGES | UNFORMATTED_INFO_PASSAGES
SPECIAL_TAGS = frozenset(['Twine.image'])
NOINCLUDE_TAGS = frozenset(['Twine.private', 'Twine.system'])
INFO_TAGS = frozenset(['script', 'stylesheet', 'annotation']) | SPECIAL_TAGS | NOINCLUDE_TAGS
class Tiddler:
"""A single tiddler in a TiddlyWiki."""
def __init__(self, source, type = 'twee', obfuscatekey = ""):
# cache of passage names linked from this one
self.links = []
self.displays = []
self.images = []
self.macros = []
self.modifier = None
"""Pass source code, and optionally 'twee' or 'html'"""
if type == 'twee':
self.initTwee(source)
else:
self.initHtml(source, obfuscatekey)
def __getstate__(self):
"""Need to retain pickle format backwards-compatibility with Twine 1.3.5 """
return {
'created': self.created,
'modified': self.modified,
'title': self.title,
'tags': self.tags,
'text': self.text,
}
def __repr__(self):
return "<Tiddler '" + self.title + "'>"
def __cmp__(self, other):
"""Compares a Tiddler to another."""
return hasattr(other, 'text') and self.text == other.text
def initTwee(self, source):
"""Initializes a Tiddler from Twee source code."""
# we were just born
self.created = self.modified = time.localtime()
# used only during builds
self.pos = [0,0]
# figure out our title
lines = source.strip().split('\n')
meta_bits = lines[0].split('[')
self.title = meta_bits[0].strip(' :')
# find tags
self.tags = []
if len(meta_bits) > 1:
tag_bits = meta_bits[1].split(' ')
for tag in tag_bits:
self.tags.append(tag.strip('[]'))
# and then the body text
self.text = u''
for line in lines[1:]:
self.text += line + "\n"
self.text = self.text.strip()
def initHtml(self, source, obfuscatekey = ""):
"""Initializes a Tiddler from HTML source code."""
def decode_obfuscate_swap(text):
"""
Does basic character pair swapping obfuscation.
No longer used since 1.4.2, but can decode passages from 1.4.0 and 1.4.1
"""
r = ''
for c in text:
upper = c.isupper()
p = obfuscatekey.find(c.lower())
if p <> -1:
if p % 2 == 0:
p1 = p + 1
if p1 >= len(obfuscatekey):
p1 = p
else:
p1 = p - 1
c = obfuscatekey[p1].upper() if upper else obfuscatekey[p1]
r = r + c
return r
# title
self.title = 'Untitled Passage'
title_re = re.compile(r'(?:data\-)?(?:tiddler|name)="([^"]*?)"')
title = title_re.search(source)
if title:
self.title = title.group(1)
if obfuscatekey:
self.title = decode_obfuscate_swap(self.title);
# tags
self.tags = []
tags_re = re.compile(r'(?:data\-)?tags="([^"]*?)"')
tags = tags_re.search(source)
if tags and tags.group(1) != '':
if obfuscatekey:
self.tags = decode_obfuscate_swap(tags.group(1)).split(' ');
else: self.tags = tags.group(1).split(' ')
# creation date
self.created = time.localtime()
created_re = re.compile(r'(?:data\-)?created="([^"]*?)"')
created = created_re.search(source)
if created:
self.created = decode_date(created.group(1))
# modification date
self.modified = time.localtime()
modified_re = re.compile(r'(?:data\-)?modified="([^"]*?)"')
modified = modified_re.search(source)
if (modified):
self.modified = decode_date(modified.group(1))
# modifier
modifier_re = re.compile(r'(?:data\-)?modifier="([^"]*?)"')
modifier = modifier_re.search(source)
if modifier:
self.modifier = modifier.group(1)
# position
self.pos = [0,0]
pos_re = re.compile(r'(?:data\-)?(?:twine\-)?position="([^"]*?)"')
pos = pos_re.search(source)
if pos:
coord = pos.group(1).split(',')
if len(coord) == 2:
try:
self.pos = map(int, coord)
except ValueError:
pass
# body text
self.text = ''
text_re = re.compile(r'<div(?:[^"]|(?:".*?"))*?>((?:[^<]|<(?!\/div>))*)<\/div>')
text = text_re.search(source)
if (text):
self.text = decode_text(text.group(1))
if obfuscatekey:
self.text = decode_obfuscate_swap(self.text)
def toHtml(self, author, rot13):
"""Returns an HTML representation of this tiddler.
The encoder arguments are sequences of functions that take a single text argument
and return a modified version of the given text.
"""
def applyRot13(text):
return text.decode('rot13') if rot13 else text
args = (
('tiddler', applyRot13(self.title.replace('"', '"'))),
('tags', ' '.join(applyRot13(tag) for tag in self.tags)),
('created', encode_date(self.created)),
('modifier', author.replace('"', '"'))
)
return u'<div%s%s>%s</div>' % (
''.join(' %s="%s"' % arg for arg in args),
' twine-position="%d,%d"' % tuple(self.pos) if hasattr(self, "pos") else "",
encode_text(applyRot13(self.text))
)
def toTwee(self):
"""Returns a Twee representation of this tiddler."""
output = u':: ' + self.title
if (len(self.tags) > 0 or hasattr(self,'x')):
output += u' ['
for tag in self.tags:
output += tag + ' '
if (hasattr(self,'x')):
#export coordinates
output += 'x:'+str(self.x)+' '+'y:'+ str(self.y)+' '
output = output.strip()
output += u']'
output += u"\n" + self.text + u"\n\n\n"
return output
def isImage(self):
return 'Twine.image' in self.tags
def isAnnotation(self):
return 'annotation' in self.tags
def isStylesheet(self):
return 'stylesheet' in self.tags
def isScript(self):
return 'script' in self.tags
def isInfoPassage(self):
return self.title in TiddlyWiki.INFO_PASSAGES
def isStoryText(self):
""" Excludes passages which do not contain renderable Twine code. """
return self.title not in TiddlyWiki.UNFORMATTED_INFO_PASSAGES \
and TiddlyWiki.INFO_TAGS.isdisjoint(self.tags)
def isStoryPassage(self):
""" A more restrictive variant of isStoryText that excludes the StoryTitle, StoryMenu etc."""
return self.title not in TiddlyWiki.INFO_PASSAGES \
and TiddlyWiki.INFO_TAGS.isdisjoint(self.tags)
def linksAndDisplays(self):
return list(set(self.links+self.displays))
def update(self):
"""
Update the lists of all passages linked/displayed by this one.
Returns internal links and <<choice>>/<<actions>> macros.
"""
if not self.isStoryText() and not self.isAnnotation() and not self.isStylesheet():
self.displays = []
self.links = []
self.images = []
self.macros = []
return
images = set()
macros = set()
links = set()
# <<display>>
self.displays = list(set(re.findall(r'\<\<display\s+[\'"]?(.+?)[\'"]?\s?\>\>', self.text, re.IGNORECASE)))
macros = set()
# other macros (including shorthand <<display>>)
for m in re.finditer(tweeregex.MACRO_REGEX, self.text):
# Exclude shorthand <<print>>
if m.group(1) and m.group(1)[0] != '$':
macros.add(m.group(1))
self.macros = list(macros)
# Regular hyperlinks (also matches wiki-style links inside macros)
for m in re.finditer(tweeregex.LINK_REGEX, self.text):
# Exclude external links
link = m.group(2) or m.group(1)
if TweeLexer.linkStyle(link) != TweeLexer.EXTERNAL:
links.add(m.group(2) or m.group(1))
# Include images
for m in re.finditer(tweeregex.IMAGE_REGEX, self.text):
if m.group(5):
links.add(m.group(5))
# HTML data-passage links
for m in re.finditer(tweeregex.HTML_REGEX, self.text):
attrs = m.group(2)
if attrs:
dataPassage = re.search(r"""data-passage\s*=\s*(?:([^<>'"=`\s]+)|'((?:[^'\\]*\\.)*[^'\\]*)'|"((?:[^"\\]*\\.)*[^"\\]*)")""", attrs)
if dataPassage:
theSet = images if m.group(1) == "img" else links
theSet.add(dataPassage.group(1) or dataPassage.group(2) or dataPassage.group(3))
# <<choice passage_name [link_text]>>
for block in re.findall(r'\<\<choice\s+(.*?)\s?\>\>', self.text):
item = re.match(r'(?:"([^"]*)")|(?:\'([^\']*)\')|([^"\'\[\s]\S*)', block)
if item:
links.add(''.join(item.groups('')))
# <<actions '' ''>>
for block in re.findall(r'\<\<actions\s+(.*?)\s?\>\>', self.text):
links.update(re.findall(r'[\'"](.*?)[\'"]', block))
self.links = list(links)
# Images
for block in re.finditer(tweeregex.IMAGE_REGEX, self.text):
images.add(block.group(4))
self.images = list(images)
#
# Helper functions
#
def encode_text(text):
"""Encodes a string for use in HTML output."""
output = text.replace('\\', '\s') \
.replace('\t', '\\t') \
.replace('<', '<') \
.replace('>', '>') \
.replace('"', '"') \
.replace('\0', '�')
output = re.sub(r'\r?\n', r'\\n', output)
return output
def decode_text(text):
"""Decodes a string from HTML."""
return text.replace('\\n', '\n') \
.replace('\\t', '\t') \
.replace('\s', '\\') \
.replace('<', '<') \
.replace('>', '>') \
.replace('"', '"')
def encode_date(date):
"""Encodes a datetime in TiddlyWiki format."""
return time.strftime('%Y%m%d%H%M', date)
def decode_date(date):
"""Decodes a datetime from TiddlyWiki format."""
return time.strptime(date, '%Y%m%d%H%M')