mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:33:39 +08:00
44ff62aa12
They are not necessary and slow down rebakes.
37 lines
1.0 KiB
Ruby
37 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class UpdateHotlinkedRaw < ::Jobs::Base
|
|
sidekiq_options queue: "low"
|
|
|
|
def execute(args)
|
|
@post_id = args[:post_id]
|
|
raise Discourse::InvalidParameters.new(:post_id) if @post_id.blank?
|
|
|
|
post = Post.find_by(id: @post_id)
|
|
return if post.nil?
|
|
return if post.cook_method == Post.cook_methods[:raw_html]
|
|
return if post.topic.nil?
|
|
|
|
hotlinked_map = post.post_hotlinked_media.preload(:upload).map { |r| [r.url, r] }.to_h
|
|
|
|
raw =
|
|
InlineUploads.replace_hotlinked_image_urls(raw: post.raw) do |match_src|
|
|
normalized_match_src = PostHotlinkedMedia.normalize_src(match_src)
|
|
hotlinked_map[normalized_match_src]&.upload
|
|
end
|
|
|
|
if post.raw != raw
|
|
changes = { raw: raw, edit_reason: I18n.t("upload.edit_reason") }
|
|
post.revise(
|
|
Discourse.system_user,
|
|
changes,
|
|
bypass_bump: true,
|
|
skip_staff_log: true,
|
|
skip_validations: true,
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|