2013-02-06 03:16:51 +08:00
|
|
|
require 'image_sizer'
|
|
|
|
require_dependency 'cooked_post_processor'
|
|
|
|
|
|
|
|
module Jobs
|
|
|
|
|
|
|
|
class ProcessPost < Jobs::Base
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
def execute(args)
|
2013-02-06 03:16:51 +08:00
|
|
|
post = Post.where(id: args[:post_id]).first
|
2013-04-18 09:34:40 +08:00
|
|
|
# two levels of deletion
|
|
|
|
return unless post.present? && post.topic.present?
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
if args[:cook].present?
|
|
|
|
post.update_column(:cooked, post.cook(post.raw, topic_id: post.topic_id))
|
|
|
|
end
|
|
|
|
|
|
|
|
cp = CookedPostProcessor.new(post, args)
|
|
|
|
cp.post_process
|
|
|
|
|
|
|
|
# If we changed the document, save it
|
|
|
|
post.update_column(:cooked, cp.html) if cp.dirty?
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|