This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
migrate.py
341 lines (310 loc) · 12.5 KB
/
migrate.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
import datetime
import itertools
import logging
import re
import urllib
from xml.etree import ElementTree
from django.utils import simplejson
from django.utils import html
from google.appengine.api import urlfetch
from google.appengine.ext import db
from google.appengine.ext import deferred
import config
import models
import post_deploy
import pygments
import pygments.lexers
import pygments.formatters
import pygments.util
def disqus_request(method, request_type=urlfetch.GET, **kwargs):
kwargs['api_version'] = '1.1'
if request_type == urlfetch.GET:
url = "http://disqus.com/api/%s?%s" % (method, urllib.urlencode(kwargs))
payload = None
else:
url = "http://disqus.com/api/%s/" % (method,)
payload = urllib.urlencode(kwargs)
response = urlfetch.fetch(url, payload, method=request_type)
if response.status_code != 200:
raise Exception("Invalid status code", response.status_code, response.content)
result = simplejson.loads(response.content)
if not result['succeeded']:
raise Exception("RPC did not succeed", result)
return result
class BaseMigration(object):
def __init__(self, disqus_user_key, disqus_forum_name):
forums = disqus_request('get_forum_list', user_api_key=disqus_user_key)
for forum in forums['message']:
if forum['shortname'] == disqus_forum_name:
forum_id = forum['id']
break
else:
raise Exception("Forum not found", disqus_forum_name)
self.forum_key = disqus_request(
'get_forum_api_key',
user_api_key=disqus_user_key,
forum_id=forum_id)['message']
class BloogBreakingMigration(BaseMigration):
class Article(db.Model):
title = db.StringProperty()
article_type = db.StringProperty()
html = db.TextProperty()
published = db.DateTimeProperty()
updated = db.DateTimeProperty()
tags = db.StringListProperty()
class Comment(db.Model):
name = db.StringProperty()
email = db.StringProperty()
homepage = db.StringProperty()
body = db.TextProperty()
published = db.DateTimeProperty()
def migrate_one_comment(self, thread_id, comment_key, replies, parent_id=None):
comment = BloogBreakingMigration.Comment.get(comment_key)
post_args = {
'request_type': urlfetch.POST,
'thread_id': thread_id,
'message': html.strip_tags(comment.body).encode('utf-8'),
'author_name': comment.name.encode('utf-8') if comment.name else 'Someone',
'author_email': comment.email.encode('utf-8') if comment.email else '[email protected]',
'forum_api_key': self.forum_key,
'created_at': comment.published.strftime('%Y-%m-%dT%H:%M'),
}
if comment.homepage:
post_args['author_url'] = comment.homepage.encode('utf-8')
if parent_id:
post_args['parent_post'] = parent_id
post_id = disqus_request('create_post', **post_args)['message']['id']
for parent_id, replies in itertools.groupby(replies, lambda x:x[0]):
parent_key = db.Key.from_path('Comment', parent_id, parent=comment_key)
deferred.defer(self.migrate_one_comment, thread_id, parent_key,
[x[1:] for x in replies if x[1:]], post_id)
def migrate_all_comments(self, article_key, title):
thread_id = disqus_request(
'thread_by_identifier',
request_type=urlfetch.POST,
identifier=str(article_key),
forum_api_key=self.forum_key,
title=title)['message']['thread']['id']
disqus_request(
'update_thread',
request_type=urlfetch.POST,
forum_api_key=self.forum_key,
thread_id=thread_id,
url="http://%s%s" % (config.host, article_key.name()))
q = BloogBreakingMigration.Comment.all(keys_only=True)
q.ancestor(article_key)
# Get a list of IDs of comments
comment_ids = sorted(tuple(x.to_path()[3::2]) for x in q.fetch(1000))
# For each set of comments with the same parent
for parent_id, replies in itertools.groupby(comment_ids, lambda x:x[0]):
# Migrate that comment, passing in its child IDs
parent_key = db.Key.from_path('Comment', parent_id, parent=article_key)
deferred.defer(self.migrate_one_comment, thread_id, parent_key,
[x[1:] for x in replies if x[1:]])
def migrate_one(self, article):
post = models.BlogPost(
path=article.key().name(),
title=article.title,
body=article.html,
tags=set(article.tags),
published=article.published,
updated=article.updated,
deps={})
post.put()
deferred.defer(self.migrate_all_comments, article.key(), article.title)
def migrate_all(self, batch_size=20, start_key=None):
q = BloogBreakingMigration.Article.all()
if start_key:
q.filter('__key__ >', start_key)
articles = q.fetch(batch_size)
for article in articles:
self.migrate_one(article)
if len(articles) == batch_size:
deferred.defer(self.migrate_all, batch_size, articles[-1].key())
else:
logging.warn("Migration finished; starting rebuild.")
regen = post_deploy.PostRegenerator()
deferred.defer(regen.regenerate)
class WordpressMigration(BaseMigration):
ns_wordpress = 'http://wordpress.org/export/1.0/'
ns_rss = 'http://purl.org/rss/1.0/modules/content/'
def __init__(self, export_file, disqus_user_key, disqus_forum_name):
super(WordpressMigration, self).__init__(disqus_user_key,
disqus_forum_name)
self._export_file = export_file
@classmethod
def _parse_date(cls, date_str):
return datetime.datetime.strptime(date_str, '%Y-%m-%d %H:%M:%S')
@classmethod
def _get_text(cls, node, tag, ns=None):
if ns is not None:
tag = '{%s}%s' % (ns, tag)
item = node.find(tag)
if item is not None:
return item.text
return ''
@classmethod
def _expand_wp_tags(cls, content):
content = cls._expand_caption_tag(content)
content = cls._expand_sourcecode_tag(content)
return content
@classmethod
def _expand_caption_tag(cls, content):
content = re.sub(r'\[caption[^\]]*\]', '<div class="image">', content)
content = content.replace('[/caption]', '</div>')
return content
@classmethod
def _expand_sourcecode_tag(cls, content):
p_bgn = re.compile('\[sourcecode( language="(?P<lang>[a-z]+)")?\]',
re.IGNORECASE|re.MULTILINE|re.UNICODE|re.DOTALL)
p_end = re.compile('\[/sourcecode\]',
re.IGNORECASE|re.MULTILINE|re.UNICODE|re.DOTALL)
match = p_bgn.search(content)
while match:
new_content = []
bgnidx = match.start()
m_end = p_end.search(content[match.end():])
if m_end is None:
return content
new_content.append(content[:match.start()])
scode = content[match.end():m_end.start()+match.end()]
lang = match.groupdict().get('lang')
if lang is not None:
formatter = pygments.formatters.get_formatter_by_name('html')
try:
lexer = pygments.lexers.get_lexer_by_name(lang)
except pygments.util.ClassNotFound:
logging.info('No lexer found: %s', lang)
lexer = None
new_content.extend(['<pre>', scode, '</pre>'])
else:
scode = pygments.highlight(scode, lexer, formatter)
new_content.append(scode)
new_content.append(content[m_end.end()+match.end():])
content = ''.join(new_content)
match = p_bgn.search(content)
return content
def migrate_one(self, wp_post):
post = models.BlogPost(
path=wp_post['path'],
title=wp_post['title'],
body=wp_post['body'],
body_markup='html',
tags=wp_post['tags'],
published=wp_post['published'],
updated=wp_post['published'],
deps={},
)
post.put()
if wp_post['comments']:
deferred.defer(self.migrate_all_comments, wp_post['comments'],
post.path, wp_post['title'])
def migrate_all_comments(self, wp_comments, post_path, title):
thread_id = disqus_request(
'thread_by_identifier',
request_type=urlfetch.POST,
identifier=post_path,
forum_api_key=self.forum_key,
title=title)['message']['thread']['id']
disqus_request(
'update_thread',
request_type=urlfetch.POST,
forum_api_key=self.forum_key,
thread_id=thread_id,
url="http://%s%s" % (config.host, post_path))
for comment in wp_comments[0]:
deferred.defer(self.migrate_one_comment, comment, thread_id,
wp_comments)
def migrate_one_comment(self, comment, thread_id, comments, parent_id=None):
post_args = {
'request_type': urlfetch.POST,
'thread_id': thread_id,
'message': html.strip_tags(comment['message']),
'author_name': comment['author_name'],
'author_email': comment['author_email'],
'forum_api_key': self.forum_key,
'created_at': comment['date'].strftime('%Y-%m-%dT%H:%M'),
}
if comment['author_url']:
post_args['author_url'] = comment['author_url']
if parent_id:
post_args['parent_post'] = parent_id
post_id = disqus_request('create_post', **post_args)['message']['id']
for reply in comments.get(comment['id'], []):
logging.info('Adding reply')
deferred.defer(self.migrate_one_comment, reply, thread_id,
comments, post_id)
def _convert_post_node(self, node, channel_link):
post = {'title': None, 'body': None,
'status': None, 'published': None,
'tags': set([])}
post['status'] = self._get_text(node, 'status', ns=self.ns_wordpress)
if post['status'] == 'draft':
post['published'] = datetime.datetime.max
post['path'] = None
else:
post['published'] = self._parse_date(self._get_text(node, 'post_date',
ns=self.ns_wordpress))
post['path'] = self._get_text(node, 'link')[len(channel_link):] or None
post['title'] = self._get_text(node, 'title') or None
post['body'] = self._expand_wp_tags(
self._get_text(node, 'encoded',
ns=self.ns_rss).replace(u'\xa0', ' '))
post['tags'] = set([x.get('nicename').decode('utf-8')
for x in node.findall('category')
if x.get('nicename') is not None])
post['comments'] = self._get_comment_map(node)
return post
def _get_comment_map(self, node):
cmap = {} # mapping: parent comment id --> list of comments
for comment in node.findall('{%s}comment' % self.ns_wordpress):
if self._get_text(comment, 'comment_approved', self.ns_wordpress) != '1':
continue
cmt = {}
cmt['message'] = (self._get_text(comment, 'comment_content',
ns=self.ns_wordpress).encode('utf-8')
or None)
author = self._get_text(comment, 'comment_author', ns=self.ns_wordpress)
if author:
author = author.encode('utf-8')
email = self._get_text(comment, 'comment_author_email',
ns=self.ns_wordpress)
if email:
email = email.encode('utf-8')
cmt['author_name'] = author or 'Someone'
cmt['author_email'] = email or 'someone@%s' % config.host
url = self._get_text(comment, 'comment_author_url',ns=self.ns_wordpress)
if url:
url = url.encode('utf-8')
cmt['author_url'] = url
cmt['date'] = self._parse_date(self._get_text(comment, 'comment_date',
ns=self.ns_wordpress))
cmt['id'] = int(self._get_text(comment, 'comment_id',
ns=self.ns_wordpress))
parent = int(self._get_text(comment, 'comment_parent',
ns=self.ns_wordpress))
if parent in cmap:
cmap[parent].append(cmt)
else:
cmap[parent] = [cmt]
return cmap
def _get_posts(self):
dom = ElementTree.parse(self._export_file)
channel = dom.find('channel')
channel_link = self._get_text(channel, 'link')
return [self._convert_post_node(x, channel_link)
for x in channel.findall('item')
if self._get_text(x, 'post_type',
ns=self.ns_wordpress) == 'post']
def migrate_all(self, batch_size=20, items=None):
if items is None:
items = self._get_posts()
logging.warn('Start processing of %d items', len(items))
for item in items[:batch_size]:
self.migrate_one(item)
if items[batch_size:]:
deferred.defer(self.migrate_all, batch_size, items[batch_size:])
else:
logging.warn("Migration finished; starting rebuild.")
regen = post_deploy.PostRegenerator()
deferred.defer(regen.regenerate)