2013-07-07 01:10:53 +08:00
|
|
|
# Post processing that we can do after a post has already been cooked.
|
2013-07-08 07:39:08 +08:00
|
|
|
# For example, inserting the onebox content, or image sizes/thumbnails.
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-11-20 20:10:08 +08:00
|
|
|
require_dependency 'url_helper'
|
2015-12-04 04:01:18 +08:00
|
|
|
require_dependency 'pretty_text'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
class CookedPostProcessor
|
2013-06-22 00:29:40 +08:00
|
|
|
include ActionView::Helpers::NumberHelper
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2016-08-13 03:28:54 +08:00
|
|
|
attr_reader :cooking_options
|
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
def initialize(post, opts = {})
|
2013-02-06 03:16:51 +08:00
|
|
|
@dirty = false
|
|
|
|
@opts = opts
|
|
|
|
@post = post
|
2013-12-06 18:16:13 +08:00
|
|
|
@previous_cooked = (@post.cooked || "").dup
|
2015-09-30 00:51:26 +08:00
|
|
|
# NOTE: we re-cook the post here in order to prevent timing issues with edits
|
|
|
|
# cf. https://meta.discourse.org/t/edit-of-rebaked-post-doesnt-show-in-html-only-in-raw/33815/6
|
2015-12-04 04:01:18 +08:00
|
|
|
@cooking_options = post.cooking_options || opts[:cooking_options] || {}
|
|
|
|
@cooking_options[:topic_id] = post.topic_id
|
|
|
|
@cooking_options = @cooking_options.symbolize_keys
|
2016-08-13 03:28:54 +08:00
|
|
|
@cooking_options[:omit_nofollow] = true if post.omit_nofollow?
|
2017-10-18 02:37:51 +08:00
|
|
|
@cooking_options[:cook_method] = post.cook_method
|
2016-04-13 02:09:59 +08:00
|
|
|
|
|
|
|
analyzer = post.post_analyzer
|
|
|
|
@doc = Nokogiri::HTML::fragment(analyzer.cook(post.raw, @cooking_options))
|
|
|
|
@has_oneboxes = analyzer.found_oneboxes?
|
2013-02-19 14:57:14 +08:00
|
|
|
@size_cache = {}
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-11-22 08:52:26 +08:00
|
|
|
def post_process(bypass_bump = false)
|
2015-08-14 11:05:13 +08:00
|
|
|
DistributedMutex.synchronize("post_process_#{@post.id}") do
|
2017-10-17 11:17:00 +08:00
|
|
|
DiscourseEvent.trigger(:before_post_process_cooked, @doc, @post)
|
2015-08-14 11:05:13 +08:00
|
|
|
keep_reverse_index_up_to_date
|
|
|
|
post_process_images
|
|
|
|
post_process_oneboxes
|
|
|
|
optimize_urls
|
2017-10-24 00:15:51 +08:00
|
|
|
update_post_image
|
2017-10-24 01:09:38 +08:00
|
|
|
enforce_nofollow
|
2015-08-14 11:05:13 +08:00
|
|
|
pull_hotlinked_images(bypass_bump)
|
2016-04-08 00:27:26 +08:00
|
|
|
grant_badges
|
2017-06-24 02:35:10 +08:00
|
|
|
DiscourseEvent.trigger(:post_process_cooked, @doc, @post)
|
|
|
|
nil
|
2016-04-06 03:12:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-07 00:02:18 +08:00
|
|
|
def has_emoji?
|
|
|
|
(@doc.css("img.emoji") - @doc.css(".quote img")).size > 0
|
|
|
|
end
|
|
|
|
|
2016-04-08 00:27:26 +08:00
|
|
|
def grant_badges
|
2016-04-06 04:13:10 +08:00
|
|
|
return unless Guardian.new.can_see?(@post)
|
|
|
|
|
2016-04-14 04:38:24 +08:00
|
|
|
BadgeGranter.grant(Badge.find(Badge::FirstEmoji), @post.user, post_id: @post.id) if has_emoji?
|
|
|
|
BadgeGranter.grant(Badge.find(Badge::FirstOnebox), @post.user, post_id: @post.id) if @has_oneboxes
|
2016-08-11 01:24:01 +08:00
|
|
|
BadgeGranter.grant(Badge.find(Badge::FirstReplyByEmail), @post.user, post_id: @post.id) if @post.is_reply_by_email?
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def keep_reverse_index_up_to_date
|
2017-06-07 08:55:58 +08:00
|
|
|
upload_ids = []
|
2013-10-14 20:27:41 +08:00
|
|
|
|
2016-10-18 15:58:45 +08:00
|
|
|
@doc.css("a/@href", "img/@src").each do |media|
|
|
|
|
if upload = Upload.get_from_url(media.value)
|
2013-11-06 02:04:47 +08:00
|
|
|
upload_ids << upload.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-07 08:55:58 +08:00
|
|
|
upload_ids |= oneboxed_image_uploads.pluck(:id)
|
2017-06-02 17:39:06 +08:00
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
values = upload_ids.map { |u| "(#{@post.id},#{u})" }.join(",")
|
2013-11-06 02:04:47 +08:00
|
|
|
PostUpload.transaction do
|
2017-08-31 12:06:56 +08:00
|
|
|
PostUpload.where(post_id: @post.id).delete_all
|
2013-11-06 02:04:47 +08:00
|
|
|
if upload_ids.length > 0
|
|
|
|
PostUpload.exec_sql("INSERT INTO post_uploads (post_id, upload_id) VALUES #{values}")
|
2013-07-11 04:55:37 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
def post_process_images
|
2013-07-08 07:39:08 +08:00
|
|
|
images = extract_images
|
2013-07-07 01:10:53 +08:00
|
|
|
return if images.blank?
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-02-19 14:57:14 +08:00
|
|
|
images.each do |img|
|
2013-11-06 02:04:47 +08:00
|
|
|
limit_size!(img)
|
|
|
|
convert_to_link!(img)
|
2013-04-13 22:31:20 +08:00
|
|
|
end
|
2013-06-15 18:29:20 +08:00
|
|
|
end
|
2013-04-13 22:31:20 +08:00
|
|
|
|
2013-07-08 07:39:08 +08:00
|
|
|
def extract_images
|
2014-07-18 23:54:18 +08:00
|
|
|
# all image with a src attribute
|
|
|
|
@doc.css("img[src]") -
|
|
|
|
# minus, data images
|
|
|
|
@doc.css("img[src^='data']") -
|
2015-08-05 18:57:31 +08:00
|
|
|
# minus, emojis
|
|
|
|
@doc.css("img.emoji") -
|
2014-07-18 23:54:18 +08:00
|
|
|
# minus, image inside oneboxes
|
2014-07-21 21:59:34 +08:00
|
|
|
oneboxed_images -
|
2014-08-19 20:40:23 +08:00
|
|
|
# minus, images inside quotes
|
2014-07-18 23:54:18 +08:00
|
|
|
@doc.css(".quote img")
|
2013-07-08 07:39:08 +08:00
|
|
|
end
|
|
|
|
|
2016-10-31 17:41:33 +08:00
|
|
|
def extract_images_for_post
|
2015-10-15 17:00:47 +08:00
|
|
|
# all image with a src attribute
|
|
|
|
@doc.css("img[src]") -
|
|
|
|
# minus, emojis
|
|
|
|
@doc.css("img.emoji") -
|
|
|
|
# minus, images inside quotes
|
|
|
|
@doc.css(".quote img")
|
|
|
|
end
|
|
|
|
|
2014-07-21 21:59:34 +08:00
|
|
|
def oneboxed_images
|
2017-06-02 17:39:06 +08:00
|
|
|
@doc.css(".onebox-body img, .onebox img")
|
|
|
|
end
|
|
|
|
|
|
|
|
def oneboxed_image_uploads
|
2017-10-18 07:50:23 +08:00
|
|
|
urls = Set.new
|
|
|
|
|
|
|
|
oneboxed_images.each do |img|
|
|
|
|
url = img["src"].sub(/^https?:/i, "")
|
|
|
|
urls << url
|
|
|
|
urls << "http:#{url}"
|
|
|
|
urls << "https:#{url}"
|
|
|
|
end
|
|
|
|
|
|
|
|
Upload.where(origin: urls.to_a)
|
2014-07-21 21:59:34 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def limit_size!(img)
|
2013-11-26 01:36:13 +08:00
|
|
|
# retrieve the size from
|
|
|
|
# 1) the width/height attributes
|
|
|
|
# 2) the dimension from the preview (image_sizes)
|
|
|
|
# 3) the dimension of the original image (HTTP request)
|
|
|
|
w, h = get_size_from_attributes(img) ||
|
|
|
|
get_size_from_image_sizes(img["src"], @opts[:image_sizes]) ||
|
|
|
|
get_size(img["src"])
|
2016-06-15 02:31:51 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
# limit the size of the thumbnail
|
|
|
|
img["width"], img["height"] = ImageSizer.resize(w, h)
|
2013-07-08 07:39:08 +08:00
|
|
|
end
|
|
|
|
|
2013-11-26 01:36:13 +08:00
|
|
|
def get_size_from_attributes(img)
|
|
|
|
w, h = img["width"].to_i, img["height"].to_i
|
2015-08-30 05:56:25 +08:00
|
|
|
return [w, h] unless w <= 0 || h <= 0
|
|
|
|
# if only width or height are specified attempt to scale image
|
|
|
|
if w > 0 || h > 0
|
|
|
|
w = w.to_f
|
|
|
|
h = h.to_f
|
2016-03-08 11:29:18 +08:00
|
|
|
|
|
|
|
return unless original_image_size = get_size(img["src"])
|
|
|
|
original_width, original_height = original_image_size.map(&:to_f)
|
|
|
|
|
2015-08-30 05:56:25 +08:00
|
|
|
if w > 0
|
2017-07-28 09:20:09 +08:00
|
|
|
ratio = w / original_width
|
|
|
|
[w.floor, (original_height * ratio).floor]
|
2015-08-30 05:56:25 +08:00
|
|
|
else
|
2017-07-28 09:20:09 +08:00
|
|
|
ratio = h / original_height
|
|
|
|
[(original_width * ratio).floor, h.floor]
|
2015-08-30 05:56:25 +08:00
|
|
|
end
|
|
|
|
end
|
2013-11-26 01:36:13 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def get_size_from_image_sizes(src, image_sizes)
|
|
|
|
return unless image_sizes.present?
|
|
|
|
image_sizes.each do |image_size|
|
|
|
|
url, size = image_size[0], image_size[1]
|
2015-03-17 01:57:15 +08:00
|
|
|
if url && url.include?(src) &&
|
|
|
|
size && size["width"].to_i > 0 && size["height"].to_i > 0
|
|
|
|
return [size["width"], size["height"]]
|
|
|
|
end
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-06-15 18:29:20 +08:00
|
|
|
end
|
2013-02-21 09:07:36 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def get_size(url)
|
2015-08-08 01:31:15 +08:00
|
|
|
return @size_cache[url] if @size_cache.has_key?(url)
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
absolute_url = url
|
|
|
|
absolute_url = Discourse.base_url_no_prefix + absolute_url if absolute_url =~ /^\/[^\/]/
|
2017-05-09 03:35:31 +08:00
|
|
|
|
|
|
|
return unless absolute_url
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
# FastImage fails when there's no scheme
|
2013-12-16 18:44:59 +08:00
|
|
|
absolute_url = SiteSetting.scheme + ":" + absolute_url if absolute_url.start_with?("//")
|
2015-08-08 01:31:15 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
return unless is_valid_image_url?(absolute_url)
|
2015-08-08 01:31:15 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
# we can *always* crawl our own images
|
2016-03-08 11:38:26 +08:00
|
|
|
return unless SiteSetting.crawl_images? || Discourse.store.has_been_uploaded?(url)
|
2015-08-08 01:31:15 +08:00
|
|
|
|
2017-10-19 05:54:36 +08:00
|
|
|
@size_cache[url] = FastImage.size(absolute_url)
|
2013-11-06 02:04:47 +08:00
|
|
|
rescue Zlib::BufError # FastImage.size raises BufError for some gifs
|
2013-06-18 04:46:48 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def is_valid_image_url?(url)
|
|
|
|
uri = URI.parse(url)
|
|
|
|
%w(http https).include? uri.scheme
|
|
|
|
rescue URI::InvalidURIError
|
2013-02-19 14:57:14 +08:00
|
|
|
end
|
|
|
|
|
2016-05-27 01:02:31 +08:00
|
|
|
# only crop when the image is taller than 16:9
|
|
|
|
# we only use 95% of that to allow for a small margin
|
|
|
|
MIN_RATIO_TO_CROP ||= (9.0 / 16.0) * 0.95
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def convert_to_link!(img)
|
2013-02-19 14:57:14 +08:00
|
|
|
src = img["src"]
|
2017-10-23 23:43:53 +08:00
|
|
|
return if src.blank? || is_a_hyperlink?(img)
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2013-07-07 01:10:53 +08:00
|
|
|
width, height = img["width"].to_i, img["height"].to_i
|
2017-10-23 23:43:53 +08:00
|
|
|
# TODO: store original dimentions in db
|
2017-10-19 05:54:36 +08:00
|
|
|
original_width, original_height = (get_size(src) || [0, 0]).map(&:to_i)
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2015-08-08 01:31:15 +08:00
|
|
|
# can't reach the image...
|
2017-10-19 05:54:36 +08:00
|
|
|
if original_width == 0 || original_height == 0
|
2015-08-12 22:10:42 +08:00
|
|
|
Rails.logger.info "Can't reach '#{src}' to get its dimension."
|
2015-08-08 01:31:15 +08:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-10-19 05:54:36 +08:00
|
|
|
return if original_width <= width && original_height <= height
|
|
|
|
return if original_width <= SiteSetting.max_image_width && original_height <= SiteSetting.max_image_height
|
2013-07-08 07:39:08 +08:00
|
|
|
|
2016-05-23 22:18:30 +08:00
|
|
|
crop = false
|
2016-05-27 01:02:31 +08:00
|
|
|
if original_width.to_f / original_height.to_f < MIN_RATIO_TO_CROP
|
2016-05-23 22:18:30 +08:00
|
|
|
crop = true
|
|
|
|
width, height = ImageSizer.crop(original_width, original_height)
|
|
|
|
img["width"] = width
|
|
|
|
img["height"] = height
|
|
|
|
end
|
|
|
|
|
2017-10-19 05:54:36 +08:00
|
|
|
if upload = Upload.get_from_url(src)
|
2016-05-23 22:18:30 +08:00
|
|
|
upload.create_thumbnail!(width, height, crop)
|
2013-07-08 07:39:08 +08:00
|
|
|
end
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2013-07-08 07:39:08 +08:00
|
|
|
add_lightbox!(img, original_width, original_height, upload)
|
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def is_a_hyperlink?(img)
|
2013-02-19 14:57:14 +08:00
|
|
|
parent = img.parent
|
|
|
|
while parent
|
2013-11-20 20:10:08 +08:00
|
|
|
return true if parent.name == "a"
|
2017-10-23 23:43:53 +08:00
|
|
|
parent = parent.parent if parent.respond_to?(:parent)
|
2013-02-19 14:57:14 +08:00
|
|
|
end
|
2013-11-20 20:10:08 +08:00
|
|
|
false
|
2013-07-08 07:39:08 +08:00
|
|
|
end
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
def add_lightbox!(img, original_width, original_height, upload = nil)
|
2013-06-26 08:44:20 +08:00
|
|
|
# first, create a div to hold our lightbox
|
2013-07-08 07:39:08 +08:00
|
|
|
lightbox = Nokogiri::XML::Node.new("div", @doc)
|
2013-12-02 17:06:48 +08:00
|
|
|
lightbox["class"] = "lightbox-wrapper"
|
2013-07-08 07:39:08 +08:00
|
|
|
img.add_next_sibling(lightbox)
|
|
|
|
lightbox.add_child(img)
|
|
|
|
|
2013-06-26 08:44:20 +08:00
|
|
|
# then, the link to our larger image
|
2013-07-08 07:39:08 +08:00
|
|
|
a = Nokogiri::XML::Node.new("a", @doc)
|
2013-02-19 14:57:14 +08:00
|
|
|
img.add_next_sibling(a)
|
2014-10-16 01:20:04 +08:00
|
|
|
|
|
|
|
if upload && Discourse.store.internal?
|
|
|
|
a["data-download-href"] = Discourse.store.download_url(upload)
|
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
a["href"] = img["src"]
|
2013-02-19 14:57:14 +08:00
|
|
|
a["class"] = "lightbox"
|
|
|
|
a.add_child(img)
|
2013-07-08 07:39:08 +08:00
|
|
|
|
|
|
|
# replace the image by its thumbnail
|
2013-11-06 02:04:47 +08:00
|
|
|
w, h = img["width"].to_i, img["height"].to_i
|
|
|
|
img["src"] = upload.thumbnail(w, h).url if upload && upload.has_thumbnail?(w, h)
|
2013-07-08 07:39:08 +08:00
|
|
|
|
2013-06-26 08:44:20 +08:00
|
|
|
# then, some overlay informations
|
2013-07-08 07:39:08 +08:00
|
|
|
meta = Nokogiri::XML::Node.new("div", @doc)
|
2013-06-26 08:44:20 +08:00
|
|
|
meta["class"] = "meta"
|
2013-07-08 07:39:08 +08:00
|
|
|
img.add_next_sibling(meta)
|
2013-06-22 00:29:40 +08:00
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
filename = get_filename(upload, img["src"])
|
2013-06-22 00:29:40 +08:00
|
|
|
informations = "#{original_width}x#{original_height}"
|
2013-07-24 15:24:28 +08:00
|
|
|
informations << " #{number_to_human_size(upload.filesize)}" if upload
|
2013-06-22 00:29:40 +08:00
|
|
|
|
2016-08-11 11:27:12 +08:00
|
|
|
a["title"] = CGI.escapeHTML(img["title"] || filename)
|
2013-11-30 03:03:39 +08:00
|
|
|
|
2016-08-11 11:27:12 +08:00
|
|
|
meta.add_child create_span_node("filename", a["title"])
|
2013-06-26 08:44:20 +08:00
|
|
|
meta.add_child create_span_node("informations", informations)
|
|
|
|
meta.add_child create_span_node("expand")
|
2013-06-22 00:29:40 +08:00
|
|
|
end
|
2013-02-19 14:57:14 +08:00
|
|
|
|
2013-06-27 03:53:31 +08:00
|
|
|
def get_filename(upload, src)
|
|
|
|
return File.basename(src) unless upload
|
2013-07-04 06:39:23 +08:00
|
|
|
return upload.original_filename unless upload.original_filename =~ /^blob(\.png)?$/i
|
2013-11-06 02:04:47 +08:00
|
|
|
return I18n.t("upload.pasted_image_filename")
|
2013-06-27 03:53:31 +08:00
|
|
|
end
|
|
|
|
|
2017-07-28 09:20:09 +08:00
|
|
|
def create_span_node(klass, content = nil)
|
2013-07-08 07:39:08 +08:00
|
|
|
span = Nokogiri::XML::Node.new("span", @doc)
|
2013-06-22 00:29:40 +08:00
|
|
|
span.content = content if content
|
2013-11-06 02:04:47 +08:00
|
|
|
span["class"] = klass
|
2013-06-22 00:29:40 +08:00
|
|
|
span
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2016-10-31 17:41:33 +08:00
|
|
|
def update_post_image
|
|
|
|
img = extract_images_for_post.first
|
2017-06-09 19:16:50 +08:00
|
|
|
return if img.blank?
|
|
|
|
|
2016-10-31 17:41:33 +08:00
|
|
|
if img["src"].present?
|
|
|
|
@post.update_column(:image_url, img["src"][0...255]) # post
|
|
|
|
@post.topic.update_column(:image_url, img["src"][0...255]) if @post.is_first_post? # topic
|
2013-07-08 07:39:08 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def post_process_oneboxes
|
|
|
|
args = {
|
|
|
|
post_id: @post.id,
|
|
|
|
invalidate_oneboxes: !!@opts[:invalidate_oneboxes],
|
|
|
|
}
|
|
|
|
|
2014-07-21 21:59:34 +08:00
|
|
|
# apply oneboxes
|
2016-11-04 05:48:32 +08:00
|
|
|
Oneboxer.apply(@doc, topic_id: @post.topic_id) do |url|
|
2016-04-13 02:09:59 +08:00
|
|
|
@has_oneboxes = true
|
2015-09-25 12:52:43 +08:00
|
|
|
Oneboxer.onebox(url, args)
|
2016-11-04 05:48:32 +08:00
|
|
|
end
|
2017-10-24 01:09:38 +08:00
|
|
|
|
2017-06-02 17:39:06 +08:00
|
|
|
uploads = oneboxed_image_uploads.select(:url, :origin)
|
|
|
|
oneboxed_images.each do |img|
|
2017-10-18 07:50:23 +08:00
|
|
|
url = img["src"].sub(/^https?:/i, "")
|
|
|
|
upload = uploads.find { |u| u.origin.sub(/^https?:/i, "") == url }
|
2017-10-24 00:15:51 +08:00
|
|
|
img["src"] = upload.url if upload.present?
|
2015-12-04 04:01:18 +08:00
|
|
|
end
|
2017-10-24 01:09:38 +08:00
|
|
|
|
2017-10-24 00:15:51 +08:00
|
|
|
# make sure we grab dimensions for oneboxed images
|
2017-10-31 10:50:44 +08:00
|
|
|
# and wrap in a div
|
|
|
|
oneboxed_images.each do |img|
|
|
|
|
limit_size!(img)
|
2017-11-08 08:50:01 +08:00
|
|
|
|
|
|
|
next if img["class"]&.include?('onebox-avatar')
|
|
|
|
|
|
|
|
parent_class = img.parent && img.parent["class"]
|
|
|
|
if parent_class&.include?("onebox-body") && (width = img["width"].to_i) > 0 && (height = img["height"].to_i) > 0
|
2017-10-31 10:50:44 +08:00
|
|
|
img.delete('width')
|
|
|
|
img.delete('height')
|
|
|
|
new_parent = img.add_next_sibling("<div class='aspect-image' style='--aspect-ratio:#{width}/#{height};'/>")
|
|
|
|
new_parent.first.add_child(img)
|
|
|
|
end
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-11-06 02:04:47 +08:00
|
|
|
def optimize_urls
|
2017-02-08 01:06:44 +08:00
|
|
|
# attachments can't be on the CDN when either setting is enabled
|
|
|
|
if SiteSetting.login_required || SiteSetting.prevent_anons_from_downloading_files
|
2016-01-07 04:54:01 +08:00
|
|
|
@doc.css("a.attachment[href]").each do |a|
|
|
|
|
href = a["href"].to_s
|
2016-06-28 04:08:49 +08:00
|
|
|
a["href"] = UrlHelper.schemaless UrlHelper.absolute_without_cdn(href) if UrlHelper.is_local(href)
|
2016-01-07 04:54:01 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-06 13:20:01 +08:00
|
|
|
use_s3_cdn = SiteSetting.Upload.enable_s3_uploads && SiteSetting.Upload.s3_cdn_url.present?
|
2016-06-28 04:08:49 +08:00
|
|
|
|
2014-10-16 01:20:04 +08:00
|
|
|
%w{href data-download-href}.each do |selector|
|
|
|
|
@doc.css("a[#{selector}]").each do |a|
|
2016-06-28 04:08:49 +08:00
|
|
|
href = a[selector].to_s
|
|
|
|
a[selector] = UrlHelper.schemaless UrlHelper.absolute(href) if UrlHelper.is_local(href)
|
2016-06-30 23:15:56 +08:00
|
|
|
a[selector] = Discourse.store.cdn_url(a[selector]) if use_s3_cdn
|
2014-10-16 01:20:04 +08:00
|
|
|
end
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
|
|
|
|
2014-07-18 23:54:18 +08:00
|
|
|
@doc.css("img[src]").each do |img|
|
2013-11-06 02:04:47 +08:00
|
|
|
src = img["src"].to_s
|
2015-06-12 18:02:36 +08:00
|
|
|
img["src"] = UrlHelper.schemaless UrlHelper.absolute(src) if UrlHelper.is_local(src)
|
2016-06-30 23:15:56 +08:00
|
|
|
img["src"] = Discourse.store.cdn_url(img["src"]) if use_s3_cdn
|
2013-11-06 02:04:47 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2017-10-24 01:09:38 +08:00
|
|
|
|
2017-10-24 00:15:51 +08:00
|
|
|
def enforce_nofollow
|
|
|
|
if !@cooking_options[:omit_nofollow] && SiteSetting.add_rel_nofollow_to_user_content
|
|
|
|
PrettyText.add_rel_nofollow_to_user_content(@doc)
|
|
|
|
end
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-11-22 08:52:26 +08:00
|
|
|
def pull_hotlinked_images(bypass_bump = false)
|
2013-11-15 22:22:18 +08:00
|
|
|
# is the job enabled?
|
|
|
|
return unless SiteSetting.download_remote_images_to_local?
|
2013-11-15 23:46:41 +08:00
|
|
|
# have we enough disk space?
|
|
|
|
return if disable_if_low_on_disk_space
|
2016-07-06 21:51:48 +08:00
|
|
|
# don't download remote images for posts that are more than n days old
|
|
|
|
return unless @post.created_at > (Date.today - SiteSetting.download_remote_images_max_days_old)
|
2013-11-06 02:04:47 +08:00
|
|
|
# we only want to run the job whenever it's changed by a user
|
2013-12-12 10:41:34 +08:00
|
|
|
return if @post.last_editor_id == Discourse.system_user.id
|
2013-11-06 02:04:47 +08:00
|
|
|
# make sure no other job is scheduled
|
|
|
|
Jobs.cancel_scheduled_job(:pull_hotlinked_images, post_id: @post.id)
|
|
|
|
# schedule the job
|
2015-11-25 03:28:42 +08:00
|
|
|
delay = SiteSetting.editing_grace_period + 1
|
2013-11-22 08:52:26 +08:00
|
|
|
Jobs.enqueue_in(delay.seconds.to_i, :pull_hotlinked_images, post_id: @post.id, bypass_bump: bypass_bump)
|
2013-07-11 04:55:37 +08:00
|
|
|
end
|
|
|
|
|
2013-11-15 23:46:41 +08:00
|
|
|
def disable_if_low_on_disk_space
|
2014-10-16 01:20:04 +08:00
|
|
|
return false if available_disk_space >= SiteSetting.download_remote_images_threshold
|
|
|
|
|
|
|
|
SiteSetting.download_remote_images_to_local = false
|
|
|
|
# log the site setting change
|
|
|
|
reason = I18n.t("disable_remote_images_download_reason")
|
|
|
|
staff_action_logger = StaffActionLogger.new(Discourse.system_user)
|
2017-07-28 09:20:09 +08:00
|
|
|
staff_action_logger.log_site_setting_change("download_remote_images_to_local", true, false, details: reason)
|
2015-08-15 05:46:15 +08:00
|
|
|
|
2014-10-16 01:20:04 +08:00
|
|
|
# also send a private message to the site contact user
|
2015-08-15 05:46:15 +08:00
|
|
|
notify_about_low_disk_space
|
2014-10-16 01:20:04 +08:00
|
|
|
|
|
|
|
true
|
2013-11-15 23:46:41 +08:00
|
|
|
end
|
|
|
|
|
2015-08-15 05:46:15 +08:00
|
|
|
def notify_about_low_disk_space
|
|
|
|
SystemMessage.create_from_system_user(Discourse.site_contact_user, :download_remote_images_disabled)
|
|
|
|
end
|
|
|
|
|
2013-11-15 23:46:41 +08:00
|
|
|
def available_disk_space
|
2015-01-27 05:25:32 +08:00
|
|
|
100 - `df -P #{Rails.root}/public/uploads | tail -1 | tr -s ' ' | cut -d ' ' -f 5`.to_i
|
2013-11-15 23:46:41 +08:00
|
|
|
end
|
|
|
|
|
2013-06-15 18:29:20 +08:00
|
|
|
def dirty?
|
2013-12-06 18:16:13 +08:00
|
|
|
@previous_cooked != html
|
2013-06-15 18:29:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def html
|
|
|
|
@doc.try(:to_html)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|