mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
25 lines
539 B
Ruby
25 lines
539 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
|