mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
29 lines
917 B
Ruby
29 lines
917 B
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]
|
||
|
|
||
|
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)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|