mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
26 lines
533 B
Ruby
26 lines
533 B
Ruby
require 'image_sizer'
|
|
require_dependency 'cooked_post_processor'
|
|
|
|
module Jobs
|
|
|
|
class ProcessPost < Jobs::Base
|
|
|
|
def execute(args)
|
|
post = Post.where(id: args[:post_id]).first
|
|
return unless post.present?
|
|
|
|
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
|