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