2013-06-19 02:20:30 -05:00
|
|
|
desc 'Update each post with latest markdown'
|
|
|
|
task 'posts:rebake' => :environment do
|
|
|
|
rebake_posts
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Update each post with latest markdown and refresh oneboxes'
|
|
|
|
task 'posts:refresh_oneboxes' => :environment do
|
|
|
|
rebake_posts invalidate_oneboxes: true
|
|
|
|
end
|
|
|
|
|
|
|
|
def rebake_posts(opts = {})
|
2013-02-05 13:16:51 -06:00
|
|
|
RailsMultisite::ConnectionManagement.each_connection do |db|
|
|
|
|
puts "Re baking post markdown for #{db} , changes are denoted with # , no change with ."
|
2013-06-19 02:20:30 -05:00
|
|
|
|
|
|
|
total = Post.select([
|
|
|
|
:id, :user_id, :cooked, :raw, :topic_id, :post_number
|
|
|
|
]).inject(0) do |total, post|
|
2013-07-05 01:55:14 -05:00
|
|
|
begin
|
|
|
|
cooked = post.cook(
|
|
|
|
post.raw,
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
invalidate_oneboxes: opts.fetch(:invalidate_oneboxes, false)
|
2013-06-19 02:20:30 -05:00
|
|
|
)
|
|
|
|
|
2013-07-05 01:55:14 -05:00
|
|
|
if cooked != post.cooked
|
|
|
|
Post.exec_sql(
|
|
|
|
'update posts set cooked = ? where id = ?', cooked, post.id
|
|
|
|
)
|
|
|
|
post.cooked = cooked
|
|
|
|
putc "#"
|
|
|
|
else
|
|
|
|
putc "."
|
|
|
|
end
|
|
|
|
|
|
|
|
TopicLink.extract_from post
|
2013-06-19 02:20:30 -05:00
|
|
|
|
2013-07-05 01:55:14 -05:00
|
|
|
# make sure we trigger the post process
|
|
|
|
post.trigger_post_process
|
2013-06-21 11:30:05 -05:00
|
|
|
|
2013-07-05 01:55:14 -05:00
|
|
|
total += 1
|
|
|
|
rescue => e
|
|
|
|
puts "\n\nFailed to bake topic_id #{post.topic_id} post_id #{post.id}\n#{e} #{e.backtrace.join("\n")} \n\n"
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-06-19 02:20:30 -05:00
|
|
|
puts "\n\n#{total} posts done!\n#{'-' * 50}\n"
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|