mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:33:43 +08:00
1574485443
This refactoring was automated using the command: bundle exec "ruby refactorings/where_dot_first_to_find_by/app.rb"
25 lines
585 B
Ruby
25 lines
585 B
Ruby
require 'image_sizer'
|
|
require_dependency 'cooked_post_processor'
|
|
|
|
module Jobs
|
|
|
|
class ProcessPost < Jobs::Base
|
|
|
|
def execute(args)
|
|
post = Post.find_by(id: args[:post_id])
|
|
# two levels of deletion
|
|
return unless post.present? && post.topic.present?
|
|
|
|
post.update_column(:cooked, post.cook(post.raw, topic_id: post.topic_id)) if args[:cook].present?
|
|
|
|
cp = CookedPostProcessor.new(post, args)
|
|
cp.post_process(args[:bypass_bump])
|
|
|
|
# If we changed the document, save it
|
|
post.update_column(:cooked, cp.html) if cp.dirty?
|
|
end
|
|
|
|
end
|
|
|
|
end
|