forked from tweecode/twine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiddlywiki.py
439 lines (331 loc) · 11.7 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
#
# TiddlyWiki.py
#
# 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, os, sys, tempfile, codecs
import PyRSS2Gen as rss
#
# TiddlyWiki class
#
class TiddlyWiki:
"""An entire TiddlyWiki."""
def __init__ (self, author = 'twee'):
"""Optionally pass an author name."""
self.author = author
self.tiddlers = {}
self.storysettings = {}
def tryGetting (self, names, default = ''):
"""Tries retrieving the text of several tiddlers by name; returns default if none exist."""
for name in names:
if name in self.tiddlers:
return self.tiddlers[name].text
return default
def toTwee (self, order = None):
"""Returns Twee source code for this TiddlyWiki."""
if not order: order = self.tiddlers.keys()
output = u''
for i in order:
output += self.tiddlers[i].toTwee()
return output
def toHtml (self, app, target = None, order = None):
"""Returns HTML code for this TiddlyWiki. If target is passed, adds a header."""
if not order: order = self.tiddlers.keys()
output = u''
if (target):
header = open(app.getPath() + os.sep + 'targets' + os.sep + target + os.sep + 'header.html')
output = header.read()
header.close()
if self.storysettings.has_key('Obfuscate') and \
self.storysettings['Obfuscate'] == 'SWAP' and self.storysettings.has_key('ObfuscateKey') :
nss = u''
for nsc in self.storysettings['ObfuscateKey']:
if nss.find(nsc) == -1 and not nsc in ':\\\"n0':
nss = nss + nsc
self.storysettings['ObfuscateKey'] = nss
for i in order:
if not any('Twine.private' in t for t in self.tiddlers[i].tags) and \
not any('Twine.system' in t for t in self.tiddlers[i].tags):
if (not (self.storysettings.has_key('Obfuscate') and \
self.storysettings['Obfuscate'] == 'SWAP' and \
self.storysettings.has_key('ObfuscateKey'))) or \
self.tiddlers[i].title == 'StorySettings':
output += self.tiddlers[i].toHtml(self.author)
else:
output += self.tiddlers[i].toHtml(self.author, obfuscation = True, obfuscationkey = self.storysettings['ObfuscateKey'])
if (target):
footername = app.getPath() + os.sep + 'targets' + os.sep + target + os.sep + 'footer.html'
if os.path.exists(footername):
footer = open(footername,'r')
output += footer.read()
footer.close()
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;}' + '\n'
output += r'{\colortbl;\red128\green128\blue128;}' + '\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(r'\[\[(.*?)\]\]', r'\ul \1\ulnone ', text) # links
text = re.sub(r'\/\/(.*?)\/\/', r'\i \1\i0 ', text) # italics
text = re.sub(r'(\<\<.*?\>\>)', r'\cf1 \i \1\i0 \cf0', text) # macros
output += r'\fs24\b1' + rtf_encode(self.tiddlers[i].title) + r'\b0\fs20' + '\\\n'
output += text + '\\\n\\\n'
output += '}'
return output
def toRss (self, num_items = 5):
"""Returns an RSS2 object of recently changed tiddlers."""
url = self.try_getting(['StoryUrl', 'SiteUrl'])
title = self.try_getting(['StoryTitle', 'SiteTitle'], 'Untitled Story')
subtitle = self.try_getting(['StorySubtitle', 'SiteSubtitle'])
# build a date-sorted list of tiddler titles
sorted_keys = self.tiddlers.keys()
sorted_keys.sort(key = lambda i: self.tiddlers[i].modified)
# and then generate our items
rss_items = []
for i in sorted_keys[:num_items]:
rss_items.append(self.tiddlers[i].toRss())
return rss.RSS2(
title = title,
link = url,
description = subtitle,
pubDate = datetime.datetime.now(),
items = rss_items
)
def addTwee (self, source):
"""Adds Twee source code to this TiddlyWiki."""
source = source.replace("\r\n", "\n")
tiddlers = source.split('\n::')
for i in tiddlers:
self.addTiddler(Tiddler('::' + i))
def addHtml (self, source):
"""Adds HTML source code to this TiddlyWiki."""
divs_re = re.compile(r'<div id="storeArea">(.*)</div>\s*</html>',
re.DOTALL)
divs = divs_re.search(source)
if divs:
for div in divs.group(1).split('<div'):
self.addTiddler(Tiddler('<div' + div, 'html'))
def addTweeFromFilename(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()
self.addTwee(w)
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
#
# Tiddler class
#
class Tiddler:
"""A single tiddler in a TiddlyWiki."""
def __init__ (self, source, type = 'twee'):
"""Pass source code, and optionally 'twee' or 'html'"""
if type == 'twee':
self.initTwee(source)
else:
self.initHtml(source)
def __repr__ (self):
return "<Tiddler '" + self.title + "'>"
def __cmp__ (self, other):
"""Compares a Tiddler to another."""
return 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()
# 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):
"""Initializes a Tiddler from HTML source code."""
# title
self.title = 'untitled passage'
title_re = re.compile(r'tiddler="(.*?)"')
title = title_re.search(source)
if title:
self.title = title.group(1)
# tags
self.tags = []
tags_re = re.compile(r'tags="(.*?)"')
tags = tags_re.search(source)
if tags and tags.group(1) != '':
self.tags = tags.group(1).split(' ')
# creation date
self.created = time.localtime()
created_re = re.compile(r'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'modified="(.*?)"')
modified = modified_re.search(source)
if (modified):
self.modified = decode_date(modified.group(1))
# body text
self.text = ''
text_re = re.compile(r'<div.*?>(.*)</div>')
text = text_re.search(source)
if (text):
self.text = decode_text(text.group(1))
def toHtml (self, author = 'twee', obfuscation = False, obfuscationkey = ''):
"""Returns an HTML representation of this tiddler."""
now = time.localtime()
output = ''
if not obfuscation:
output = '<div tiddler="' + self.title + '" tags="'
for tag in self.tags:
output += tag + ' '
output = output.strip()
else:
output = '<div tiddler="' + encode_obfuscate_swap(self.title, obfuscationkey) + '" tags="'
for tag in self.tags:
output += encode_obfuscate_swap(tag + ' ', obfuscationkey)
output = output.strip()
output += '" modified="' + encode_date(self.modified) + '"'
output += ' created="' + encode_date(self.created) + '"'
output += ' modifier="' + author + '">'
output += encode_text(self.text, obfuscation, obfuscationkey) + '</div>'
return output
def toTwee (self):
"""Returns a Twee representation of this tiddler."""
output = u':: ' + self.title
if len(self.tags) > 0:
output += u' ['
for tag in self.tags:
output += tag + ' '
output = output.strip()
output += u']'
output += u"\n" + self.text + u"\n\n\n"
return output
def toRss (self, author = 'twee'):
"""Returns an RSS representation of this tiddler."""
return rss.RSSItem(
title = self.title,
link = '',
description = self.text,
pubDate = datetime.datetime.now()
)
def links (self, includeExternal = False):
"""
Returns a list of all passages linked to by this one. By default,
only returns internal links, but you can override it with the includeExternal
parameter.
"""
if ('script' in self.tags) or ('stylesheet' in self.tags):
return []
# regular hyperlinks
links = re.findall(r'\[\[(.+?)\]\]', self.text)
# check for [[title|target]] formats
def filterPrettyLinks (text):
if '|' in text: return re.sub('.*\|', '', text)
else: return text
# remove external links
def isInternalLink (text):
return not re.match('http://', text)
links = map(filterPrettyLinks, links)
if not includeExternal: links = filter(isInternalLink, links)
# <<display ''>>
displays = re.findall(r'\<\<display\s+[\'"](.+?)[\'"]\s?\>\>', self.text, re.IGNORECASE)
# <<choice ''>>
choices = re.findall(r'\<\<choice\s+[\'"](.+?)[\'"]\s?\>\>', self.text, re.IGNORECASE)
# <<actions ''>>
actions = list()
actionBlocks = re.findall(r'\<\<actions\s+(.*?)\s?\>\>', self.text, re.IGNORECASE)
for block in actionBlocks:
actions = actions + re.findall(r'[\'"](.*?)[\'"]', block)
# remove duplicates by converting to a set
return list(set(links + displays + choices + actions))
#
# Helper functions
#
def encode_text (text, obfuscation, obfuscationkey):
"""Encodes a string for use in HTML output."""
output = text
if obfuscation: output = encode_obfuscate_swap(output, obfuscationkey)
output = output.replace('\\', '\s')
output = re.sub(r'\r?\n', r'\\n', output)
output = output.replace('<', '<')
output = output.replace('>', '>')
output = output.replace('"', '"')
return output
def encode_obfuscate_swap(text, obfuscationkey):
"""Does basic character pair swapping obfuscation"""
r = ''
for c in text:
p = obfuscationkey.find(c)
if p <> -1:
if p % 2 == 0:
p1 = p + 1
if p1 >= len(obfuscationkey):
p1 = p
else:
p1 = p - 1
c = obfuscationkey[p1]
r = r + c
return r
def decode_text (text):
"""Decodes a string from HTML."""
output = text
output = output.replace('\\n', '\n')
output = output.replace('\s', '\\')
output = output.replace('<', '<')
output = output.replace('>', '>')
output = output.replace('"', '"')
return output
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')