forked from ghewgill/ljdump
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconvertdump.py
executable file
·316 lines (240 loc) · 9.99 KB
/
convertdump.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
#!/usr/bin/python
# Copyright 2009, Sean M. Graham (www.sean-graham.com)
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# - Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# - Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import xml.dom.minidom
import os
import codecs
import sys
import getopt
import re
from time import strptime, strftime
def getNodeText(doc, nodename):
rc = ""
try:
nodelist = doc.getElementsByTagName(nodename)[0].childNodes
except:
return ""
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
rc = rc + node.data
return rc
def appendTextNode(doc, parent, nodename, value):
nodeValue = value
# make sure value is properly encoded
try:
bytes = nodeValue.encode("UTF-8")
except:
bytes = nodeValue.encode("cp1252")
nodeValue = unicode(bytes, "UTF-8")
element = doc.createElement(nodename)
if( nodeValue != "" ):
textNode = doc.createTextNode(nodeValue)
element.appendChild(textNode)
parent.appendChild(element)
def addEntryForId(outDoc, element, username, id, includeSecure):
entryFile = open("%s/L-%s" % (username,id), "r")
inDoc = xml.dom.minidom.parse(entryFile)
# Create an entry element
entry = outDoc.createElement("entry")
# Create an itemid element
appendTextNode(outDoc, entry, "itemid", getNodeText(inDoc,"itemid"))
# Create an eventtime element
appendTextNode(outDoc, entry, "eventtime", getNodeText(inDoc, "eventtime"))
# Create an subject element
appendTextNode(outDoc, entry, "subject", getNodeText(inDoc, "subject"))
# Create an event node (special case because for some reason there are two
# 'event' elements in the pydump output, which is probably LJ's fault)
event = inDoc.getElementsByTagName("event")[0]
eventText = getNodeText(event, "event")
appendTextNode(outDoc, entry, "event", replaceLJTags(eventText))
security = getNodeText(inDoc, "security")
if(security != ""):
# don't append this entry unless the user provided the argument
if(includeSecure == False):
print("omitting secure entry: L-%s" % id)
return
else:
if(security == "usemask"):
print("including allowmask entry: L-%s" % id)
# Create an allowmask element
maskText = getNodeText(inDoc, "allowmask")
if(maskText != ""):
appendTextNode(outDoc, entry, "allowmask", maskText)
else:
appendTextNode(outDoc, entry, "allowmask", "0")
else:
print("including private entry: L-%s" % id)
appendTextNode(outDoc, entry, "security", security)
# Create a taglist element
appendTextNode(outDoc, entry, "taglist", getNodeText(inDoc, "taglist"))
# XXXSMG: make sure there is a comment file before trying to do anything
# with it
addCommentsForId(outDoc, entry, username, id)
element.appendChild(entry)
def addCommentsForId(outDoc, entry, username, id):
try:
commentFile = open("%s/C-%s" % (username,id), "r")
except IOError: # there are no comments for this entry
return
inDoc = xml.dom.minidom.parse(commentFile)
comments = inDoc.getElementsByTagName("comment")
for comment in comments:
outComment = outDoc.createElement("comment")
entry.appendChild(outComment)
# add the item id for the comment
appendTextNode(outDoc, outComment, "itemid",
getNodeText(comment, "id"))
# convert the time string
timeString = getNodeText(comment, "date")
if( timeString != "" ):
inDate = strptime(timeString, "%Y-%m-%dT%H:%M:%SZ")
outDate = strftime("%Y-%m-%d %H:%M:%S", inDate)
appendTextNode(outDoc, outComment, "eventtime", outDate)
else:
emptyTime = outDoc.createElement("eventtime")
outComment.appendChild(emptyTime)
# Create an subject element
appendTextNode(outDoc, outComment, "subject",
getNodeText(comment, "subject"))
# Create an event element
bodyText = getNodeText(comment, "body")
appendTextNode(outDoc, outComment, "event", replaceLJTags(bodyText))
# Create the author element
author = outDoc.createElement("author")
outComment.appendChild(author)
try:
cUser = getNodeText(comment, "user")
except:
cUser = "anonymous"
appendTextNode(outDoc, author, "name", cUser)
appendTextNode(outDoc, author, "email", cUser + "@livejournal.com")
# Create the parent_itemid
parentId = getNodeText(comment, "parentid")
if(parentId != ""):
appendTextNode(outDoc, outComment, "parent_itemid", parentId)
# regular expressions used in replaceLJTags()
# (global for later reuse - suggestion by jparise)
userRE = re.compile('<lj user="(.*?)" ?/?>', re.IGNORECASE)
commRE = re.compile('<lj comm="(.*?)" ?/?>', re.IGNORECASE)
namedCutRE = re.compile('<lj-cut +text="(.*?)" ?/?>',
re.IGNORECASE|re.DOTALL)
cutRE = re.compile('<lj-cut>', re.IGNORECASE)
cutRE = re.compile('</lj-cut>', re.IGNORECASE)
embedRE = re.compile('<lj-embed id="[0-9]+">', re.IGNORECASE)
def replaceLJTags(entry):
rv = entry
# replace lj user tags
rv = re.sub(userRE, '<a href="http://www.livejournal.com/users/\\1" class="lj-user">\\1</a>', rv)
# replace lj comm tags
rv = re.sub(commRE, '<a href="http://community.livejournal.com/\\1/" class="lj-comm">\\1</a>', rv)
# replace lj-cut tags
rv = re.sub(namedCutRE, '<!--more \\1-->', rv)
rv = re.sub(cutRE, '<!--more-->', rv)
rv = re.sub(cutRE, '', rv)
# replace lj-embed tags
# this doesn't actually work. LJ doesn't include the embedded content
# when ljdump calls 'getevents', but instead includes an lj-embed tag
# with an id and nothing else.
#rv = re.sub(embedRE, '', rv)
return rv
def usage():
print( "Usage: convertdump.py [arguments]" )
print( """
This will convert a pydump archive into something compatible with the
WordPress LiveJournal importer. This is the same format used by the Windows
ljArchive exporter.
Arguments:
-u --user username of archive to process [required]
-l --limit limit the number of entries in each xml file (default 250)
-i --insecure include private and protected entries in the output
-h --help show this help page
Example:
./convertdump.py --user stevemartin --limit 200 --insecure
""")
def main(argv):
username = ""
entryLimit = 250
includeSecure = False;
if( len(argv) == 0 ):
usage()
sys.exit(2)
try:
opts, args = getopt.getopt(sys.argv[1:], "hu:l:i", ["help",
"user=",
"limit=",
"insecure"])
except getopt.GetoptError, err:
# print help information and exit:
print str(err) # will print something like "option -a not recognized"
usage()
sys.exit(2)
for o, a in opts:
if o == "-v":
verbose = True
elif o in ("-u", "--user"):
username = a
elif o in ("-l", "--limit"):
entryLimit = int(a)
elif o in ("-i", "--insecure"):
print( "Warning: Including secure entries in XML output" )
includeSecure = True
elif o in ("-h", "--help"):
usage()
sys.exit()
else:
assert False, "unhandled option"
userDir = os.listdir(username)
highNum = -1
entryArray = []
# get the list of entries
for file in userDir:
if file.startswith("L-"):
entryNum = int(file.replace("L-",""))
entryArray.append(entryNum)
if( highNum < entryNum ):
highNum = entryNum
entryArray.sort()
# Create the minidom document
outDoc = xml.dom.minidom.Document()
# Create the <livejournal> base element
ljElement = outDoc.createElement("livejournal")
outDoc.appendChild(ljElement)
currentFileEntry = 0
# start processing entries
for entry in entryArray:
addEntryForId(outDoc, ljElement, username, entry, includeSecure)
currentFileEntry += 1
if( currentFileEntry == entryLimit or entry == entryArray[-1] ):
f = open("%s - %s.xml" % (username, entry), "w")
tempXML = outDoc.toxml("UTF-8")
f.write(tempXML)
currentFileEntry = 0
# Create the minidom document
outDoc = xml.dom.minidom.Document()
# Create the <livejournal> base element
ljElement = outDoc.createElement("livejournal")
outDoc.appendChild(ljElement)
if __name__ == "__main__":
main(sys.argv[1:])