2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
class TopicEmbed < ActiveRecord::Base
|
2017-04-24 14:29:04 -04:00
|
|
|
include Trashable
|
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
belongs_to :topic
|
|
|
|
belongs_to :post
|
|
|
|
validates_presence_of :embed_url
|
2015-06-15 12:08:55 -04:00
|
|
|
validates_uniqueness_of :embed_url
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2017-04-24 14:29:04 -04:00
|
|
|
before_validation(on: :create) do
|
2023-01-09 07:20:10 -05:00
|
|
|
unless (
|
|
|
|
topic_embed =
|
|
|
|
TopicEmbed
|
|
|
|
.with_deleted
|
|
|
|
.where("deleted_at IS NOT NULL AND embed_url = ?", embed_url)
|
|
|
|
.first
|
|
|
|
).nil?
|
2017-04-24 14:29:04 -04:00
|
|
|
topic_embed.destroy!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-30 12:01:04 -04:00
|
|
|
class FetchResponse
|
|
|
|
attr_accessor :title, :body, :author
|
|
|
|
end
|
|
|
|
|
2014-03-19 16:33:21 -04:00
|
|
|
def self.normalize_url(url)
|
2023-01-09 07:20:10 -05:00
|
|
|
url.downcase.sub(%r{/$}, "").sub(/\-+/, "-").strip
|
2014-03-19 16:33:21 -04:00
|
|
|
end
|
|
|
|
|
2014-04-02 15:54:21 -04:00
|
|
|
def self.imported_from_html(url)
|
2022-08-02 14:49:28 -04:00
|
|
|
I18n.with_locale(SiteSetting.default_locale) do
|
2023-01-09 07:20:10 -05:00
|
|
|
"\n<hr>\n<small>#{I18n.t("embed.imported_from", link: "<a href='#{url}'>#{url}</a>")}</small>\n"
|
2022-08-02 14:49:28 -04:00
|
|
|
end
|
2014-04-02 15:54:21 -04:00
|
|
|
end
|
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
# Import an article from a source (RSS/Atom/Other)
|
2021-09-13 16:01:59 -04:00
|
|
|
def self.import(user, url, title, contents, category_id: nil, cook_method: nil, tags: nil)
|
2023-01-09 07:20:10 -05:00
|
|
|
return unless url =~ %r{^https?\://}
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
contents = first_paragraph_from(contents) if SiteSetting.embed_truncate && cook_method.nil?
|
|
|
|
contents ||= ""
|
2021-10-10 22:20:18 -04:00
|
|
|
contents = contents.dup << imported_from_html(url)
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2014-03-26 23:24:57 -04:00
|
|
|
url = normalize_url(url)
|
|
|
|
|
2014-05-06 09:41:59 -04:00
|
|
|
embed = TopicEmbed.find_by("lower(embed_url) = ?", url)
|
2013-12-31 14:37:43 -05:00
|
|
|
content_sha1 = Digest::SHA1.hexdigest(contents)
|
|
|
|
post = nil
|
|
|
|
|
|
|
|
# If there is no embed, create a topic, post and the embed.
|
|
|
|
if embed.blank?
|
|
|
|
Topic.transaction do
|
2016-08-23 14:55:52 -04:00
|
|
|
eh = EmbeddableHost.record_for_url(url)
|
2015-08-18 17:15:46 -04:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
cook_method ||=
|
|
|
|
if SiteSetting.embed_support_markdown
|
|
|
|
Post.cook_methods[:regular]
|
|
|
|
else
|
|
|
|
Post.cook_methods[:raw_html]
|
|
|
|
end
|
2018-03-10 21:26:47 -05:00
|
|
|
|
2020-04-13 15:17:02 -04:00
|
|
|
create_args = {
|
|
|
|
title: title,
|
|
|
|
raw: absolutize_urls(url, contents),
|
|
|
|
skip_validations: true,
|
|
|
|
cook_method: cook_method,
|
2021-09-13 16:01:59 -04:00
|
|
|
category: category_id || eh.try(:category_id),
|
|
|
|
tags: SiteSetting.tagging_enabled ? tags : nil,
|
2020-04-13 15:17:02 -04:00
|
|
|
}
|
2023-01-09 07:20:10 -05:00
|
|
|
create_args[:visible] = false if SiteSetting.embed_unlisted?
|
2020-04-13 15:17:02 -04:00
|
|
|
|
|
|
|
creator = PostCreator.new(user, create_args)
|
2013-12-31 14:37:43 -05:00
|
|
|
post = creator.create
|
|
|
|
if post.present?
|
2023-01-09 07:20:10 -05:00
|
|
|
TopicEmbed.create!(
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
embed_url: url,
|
|
|
|
content_sha1: content_sha1,
|
|
|
|
post_id: post.id,
|
|
|
|
)
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2014-03-18 18:02:33 -04:00
|
|
|
absolutize_urls(url, contents)
|
2013-12-31 14:37:43 -05:00
|
|
|
post = embed.post
|
2018-08-21 06:19:03 -04:00
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
# Update the topic if it changed
|
2018-08-21 06:19:03 -04:00
|
|
|
if post&.topic
|
|
|
|
if post.user != user
|
|
|
|
PostOwnerChanger.new(
|
|
|
|
post_ids: [post.id],
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
new_owner: user,
|
2023-01-09 07:20:10 -05:00
|
|
|
acting_user: Discourse.system_user,
|
2018-08-21 06:19:03 -04:00
|
|
|
).change_owner!
|
|
|
|
|
|
|
|
# make sure the post returned has the right author
|
|
|
|
post.reload
|
|
|
|
end
|
|
|
|
|
2020-04-20 14:31:24 -04:00
|
|
|
if (content_sha1 != embed.content_sha1) || (title && title != post&.topic&.title)
|
2020-04-20 14:27:43 -04:00
|
|
|
changes = { raw: absolutize_urls(url, contents) }
|
|
|
|
changes[:title] = title if title.present?
|
|
|
|
|
|
|
|
post.revise(user, changes, skip_validations: true, bypass_rate_limiter: true)
|
2018-08-28 02:25:04 -04:00
|
|
|
embed.update!(content_sha1: content_sha1)
|
2018-08-23 21:41:54 -04:00
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
post
|
|
|
|
end
|
|
|
|
|
2014-04-01 18:16:56 -04:00
|
|
|
def self.find_remote(url)
|
2023-01-09 07:20:10 -05:00
|
|
|
require "ruby-readability"
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2022-08-09 06:28:29 -04:00
|
|
|
url = UrlHelper.normalized_encode(url)
|
2017-09-22 11:36:44 -04:00
|
|
|
original_uri = URI.parse(url)
|
2023-01-09 07:20:10 -05:00
|
|
|
fd = FinalDestination.new(url, validate_uri: true, max_redirects: 5, follow_canonical: true)
|
2020-05-27 11:23:55 -04:00
|
|
|
|
2021-10-27 04:39:28 -04:00
|
|
|
uri = fd.resolve
|
|
|
|
return if uri.blank?
|
2020-05-23 00:56:13 -04:00
|
|
|
|
2014-04-15 00:06:51 -04:00
|
|
|
opts = {
|
|
|
|
tags: %w[div p code pre h1 h2 h3 b em i strong a img ul li ol blockquote],
|
2015-09-24 18:20:59 -04:00
|
|
|
attributes: %w[href src class],
|
2023-01-09 07:20:10 -05:00
|
|
|
remove_empty_nodes: false,
|
2014-04-15 00:06:51 -04:00
|
|
|
}
|
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
opts[
|
|
|
|
:whitelist
|
|
|
|
] = SiteSetting.allowed_embed_selectors if SiteSetting.allowed_embed_selectors.present?
|
|
|
|
opts[
|
|
|
|
:blacklist
|
|
|
|
] = SiteSetting.blocked_embed_selectors if SiteSetting.blocked_embed_selectors.present?
|
|
|
|
allowed_embed_classnames =
|
|
|
|
SiteSetting.allowed_embed_classnames if SiteSetting.allowed_embed_classnames.present?
|
2014-04-15 00:06:51 -04:00
|
|
|
|
2016-08-30 12:01:04 -04:00
|
|
|
response = FetchResponse.new
|
2017-05-25 15:42:05 -04:00
|
|
|
begin
|
2022-04-05 06:08:28 -04:00
|
|
|
html = uri.read
|
2017-08-09 23:58:56 -04:00
|
|
|
rescue OpenURI::HTTPError, Net::OpenTimeout
|
2017-05-25 15:42:05 -04:00
|
|
|
return
|
|
|
|
end
|
2014-04-02 15:54:21 -04:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
raw_doc = Nokogiri.HTML5(html)
|
2016-08-30 12:01:04 -04:00
|
|
|
auth_element = raw_doc.at('meta[@name="author"]')
|
|
|
|
if auth_element.present?
|
|
|
|
response.author = User.where(username_lower: auth_element[:content].strip).first
|
|
|
|
end
|
|
|
|
|
|
|
|
read_doc = Readability::Document.new(html, opts)
|
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
title = +(raw_doc.title || "")
|
2016-08-22 12:43:02 -04:00
|
|
|
title.strip!
|
|
|
|
|
|
|
|
if SiteSetting.embed_title_scrubber.present?
|
2023-01-09 07:20:10 -05:00
|
|
|
title.sub!(Regexp.new(SiteSetting.embed_title_scrubber), "")
|
2016-08-22 12:43:02 -04:00
|
|
|
title.strip!
|
|
|
|
end
|
2016-08-30 12:01:04 -04:00
|
|
|
response.title = title
|
2023-01-09 07:20:10 -05:00
|
|
|
doc = Nokogiri.HTML5(read_doc.content)
|
|
|
|
|
|
|
|
tags = { "img" => "src", "script" => "src", "a" => "href" }
|
|
|
|
doc
|
|
|
|
.search(tags.keys.join(","))
|
|
|
|
.each do |node|
|
|
|
|
url_param = tags[node.name]
|
|
|
|
src = node[url_param]
|
|
|
|
unless (src.nil? || src.empty?)
|
|
|
|
begin
|
|
|
|
# convert URL to absolute form
|
|
|
|
node[url_param] = URI.join(url, UrlHelper.normalized_encode(src)).to_s
|
|
|
|
rescue URI::Error, Addressable::URI::InvalidURIError
|
|
|
|
# If there is a mistyped URL, just do nothing
|
|
|
|
end
|
2015-09-24 18:20:59 -04:00
|
|
|
end
|
2023-01-09 07:20:10 -05:00
|
|
|
# only allow classes in the allowlist
|
|
|
|
allowed_classes =
|
|
|
|
if allowed_embed_classnames.blank?
|
|
|
|
[]
|
|
|
|
else
|
|
|
|
allowed_embed_classnames.split(/[ ,]+/i)
|
|
|
|
end
|
|
|
|
doc
|
|
|
|
.search('[class]:not([class=""])')
|
|
|
|
.each do |classnode|
|
|
|
|
classes =
|
|
|
|
classnode[:class]
|
|
|
|
.split(" ")
|
|
|
|
.select { |classname| allowed_classes.include?(classname) }
|
|
|
|
if classes.length === 0
|
|
|
|
classnode.delete("class")
|
|
|
|
else
|
|
|
|
classnode[:class] = classes.join(" ")
|
|
|
|
end
|
|
|
|
end
|
2015-09-24 18:20:59 -04:00
|
|
|
end
|
2014-04-02 15:54:21 -04:00
|
|
|
|
2016-08-30 12:01:04 -04:00
|
|
|
response.body = doc.to_html
|
|
|
|
response
|
2014-04-01 18:16:56 -04:00
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2016-08-30 12:01:04 -04:00
|
|
|
def self.import_remote(import_user, url, opts = nil)
|
2014-04-01 18:16:56 -04:00
|
|
|
opts = opts || {}
|
2016-08-30 12:01:04 -04:00
|
|
|
response = find_remote(url)
|
2017-09-22 11:36:44 -04:00
|
|
|
return if response.nil?
|
|
|
|
|
2016-08-30 12:01:04 -04:00
|
|
|
response.title = opts[:title] if opts[:title].present?
|
|
|
|
import_user = response.author if response.author.present?
|
|
|
|
|
|
|
|
TopicEmbed.import(import_user, url, response.title, response.body)
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Convert any relative URLs to absolute. RSS is annoying for this.
|
|
|
|
def self.absolutize_urls(url, contents)
|
2014-03-19 16:33:21 -04:00
|
|
|
url = normalize_url(url)
|
2020-02-07 10:54:24 -05:00
|
|
|
begin
|
2022-08-09 06:28:29 -04:00
|
|
|
uri = URI(UrlHelper.normalized_encode(url))
|
2020-02-07 10:54:24 -05:00
|
|
|
rescue URI::Error
|
|
|
|
return contents
|
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
prefix = "#{uri.scheme}://#{uri.host}"
|
2020-03-25 11:57:31 -04:00
|
|
|
prefix += ":#{uri.port}" if uri.port != 80 && uri.port != 443
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2020-05-04 23:46:57 -04:00
|
|
|
fragment = Nokogiri::HTML5.fragment("<div>#{contents}</div>")
|
2023-01-09 07:20:10 -05:00
|
|
|
fragment
|
|
|
|
.css("a")
|
|
|
|
.each do |a|
|
|
|
|
if a["href"].present?
|
|
|
|
begin
|
|
|
|
a["href"] = URI.join(prefix, a["href"]).to_s
|
|
|
|
rescue URI::InvalidURIError
|
|
|
|
# NOOP, URL is malformed
|
|
|
|
end
|
2022-01-20 21:03:49 -05:00
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
2022-01-20 21:03:49 -05:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
fragment
|
|
|
|
.css("img")
|
|
|
|
.each do |a|
|
|
|
|
if a["src"].present?
|
|
|
|
begin
|
|
|
|
a["src"] = URI.join(prefix, a["src"]).to_s
|
|
|
|
rescue URI::InvalidURIError
|
|
|
|
# NOOP, URL is malformed
|
|
|
|
end
|
2022-01-20 21:03:49 -05:00
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
2022-01-20 21:03:49 -05:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
fragment.at("div").inner_html
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.topic_id_for_embed(embed_url)
|
2023-01-09 07:20:10 -05:00
|
|
|
embed_url = normalize_url(embed_url).sub(%r{^https?\://}, "")
|
|
|
|
TopicEmbed.where("embed_url ~* ?", "^https?://#{Regexp.escape(embed_url)}$").pluck_first(
|
|
|
|
:topic_id,
|
|
|
|
)
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
|
|
|
|
2014-03-18 18:02:33 -04:00
|
|
|
def self.first_paragraph_from(html)
|
2023-01-09 07:20:10 -05:00
|
|
|
doc = Nokogiri.HTML5(html)
|
2014-03-18 18:02:33 -04:00
|
|
|
|
2019-05-02 18:17:27 -04:00
|
|
|
result = +""
|
2023-01-09 07:20:10 -05:00
|
|
|
doc
|
|
|
|
.css("p")
|
|
|
|
.each do |p|
|
|
|
|
if p.text.present?
|
|
|
|
result << p.to_s
|
|
|
|
return result if result.size >= 100
|
|
|
|
end
|
2014-03-18 18:02:33 -04:00
|
|
|
end
|
|
|
|
return result unless result.blank?
|
|
|
|
|
2021-05-20 21:43:47 -04:00
|
|
|
# If there is no first paragraph, return the first div (onebox)
|
2023-01-09 07:20:10 -05:00
|
|
|
doc.css("div").first.to_s
|
2014-03-18 18:02:33 -04:00
|
|
|
end
|
2014-04-03 11:30:43 -04:00
|
|
|
|
|
|
|
def self.expanded_for(post)
|
2023-01-09 07:20:10 -05:00
|
|
|
Discourse
|
|
|
|
.cache
|
|
|
|
.fetch("embed-topic:#{post.topic_id}", expires_in: 10.minutes) do
|
|
|
|
url = TopicEmbed.where(topic_id: post.topic_id).pluck_first(:embed_url)
|
|
|
|
response = TopicEmbed.find_remote(url)
|
|
|
|
|
|
|
|
body = response.body
|
|
|
|
body << TopicEmbed.imported_from_html(url)
|
|
|
|
body
|
|
|
|
end
|
2014-04-03 11:30:43 -04:00
|
|
|
end
|
2013-12-31 14:37:43 -05:00
|
|
|
end
|
2014-02-06 19:07:36 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: topic_embeds
|
|
|
|
#
|
2017-04-24 14:29:04 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# topic_id :integer not null
|
|
|
|
# post_id :integer not null
|
|
|
|
# embed_url :string(1000) not null
|
|
|
|
# content_sha1 :string(40)
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# deleted_at :datetime
|
|
|
|
# deleted_by_id :integer
|
2014-02-06 19:07:36 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_topic_embeds_on_embed_url (embed_url) UNIQUE
|
|
|
|
#
|