2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-19 15:08:54 -04:00
|
|
|
class InlineOneboxer
|
|
|
|
|
2018-01-29 16:39:41 -05:00
|
|
|
MIN_TITLE_LENGTH = 2
|
|
|
|
|
2017-07-21 15:29:04 -04:00
|
|
|
def initialize(urls, opts = nil)
|
2017-07-19 15:08:54 -04:00
|
|
|
@urls = urls
|
2017-07-21 15:29:04 -04:00
|
|
|
@opts = opts || {}
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def process
|
2017-07-21 15:29:04 -04:00
|
|
|
@urls.map { |url| InlineOneboxer.lookup(url, @opts) }.compact
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
|
2020-06-24 05:54:54 -04:00
|
|
|
def self.invalidate(url)
|
2019-11-26 20:35:14 -05:00
|
|
|
Discourse.cache.delete(cache_key(url))
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.cache_lookup(url)
|
2019-11-26 20:35:14 -05:00
|
|
|
Discourse.cache.read(cache_key(url))
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
|
2017-07-21 15:29:04 -04:00
|
|
|
def self.lookup(url, opts = nil)
|
|
|
|
opts ||= {}
|
2018-09-03 13:03:43 -04:00
|
|
|
opts = opts.with_indifferent_access
|
2017-07-21 15:29:04 -04:00
|
|
|
|
2018-09-03 13:03:43 -04:00
|
|
|
unless opts[:skip_cache] || opts[:invalidate]
|
2017-07-21 15:29:04 -04:00
|
|
|
cached = cache_lookup(url)
|
|
|
|
return cached if cached.present?
|
|
|
|
end
|
2017-07-19 15:08:54 -04:00
|
|
|
|
2018-03-28 04:20:08 -04:00
|
|
|
return unless url
|
|
|
|
|
2017-07-19 15:08:54 -04:00
|
|
|
if route = Discourse.route_for(url)
|
2020-02-12 05:11:28 -05:00
|
|
|
if route[:controller] == "topics"
|
|
|
|
if topic = Oneboxer.local_topic(url, route, opts)
|
|
|
|
opts[:skip_cache] = true
|
2020-12-16 19:19:13 -05:00
|
|
|
post_number = [route[:post_number].to_i, topic.highest_post_number].min
|
|
|
|
if post_number > 1
|
|
|
|
opts[:post_number] = post_number
|
|
|
|
opts[:post_author] = post_author_for_title(topic, post_number)
|
|
|
|
end
|
2020-02-12 05:11:28 -05:00
|
|
|
return onebox_for(url, topic.title, opts)
|
2020-12-17 18:27:32 -05:00
|
|
|
else
|
|
|
|
# not permitted to see topic
|
|
|
|
return nil
|
2020-02-12 05:11:28 -05:00
|
|
|
end
|
2017-07-21 15:29:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-02 14:27:21 -04:00
|
|
|
always_allow = SiteSetting.enable_inline_onebox_on_all_domains
|
2021-02-03 11:15:22 -05:00
|
|
|
allowed_domains = SiteSetting.allowed_inline_onebox_domains&.split('|') unless always_allow
|
2017-08-02 14:27:21 -04:00
|
|
|
|
2021-02-03 11:15:22 -05:00
|
|
|
if always_allow || allowed_domains
|
2018-03-28 04:20:08 -04:00
|
|
|
uri = begin
|
|
|
|
URI(url)
|
2018-08-14 06:23:32 -04:00
|
|
|
rescue URI::Error
|
2018-03-28 04:20:08 -04:00
|
|
|
end
|
2017-07-21 15:29:04 -04:00
|
|
|
|
|
|
|
if uri.present? &&
|
|
|
|
uri.hostname.present? &&
|
2021-02-03 11:15:22 -05:00
|
|
|
(always_allow || allowed_domains.include?(uri.hostname)) &&
|
2022-01-31 02:35:12 -05:00
|
|
|
!Onebox::DomainChecker.is_blocked?(uri.hostname)
|
2017-07-21 15:29:04 -04:00
|
|
|
title = RetrieveTitle.crawl(url)
|
2018-01-29 16:39:41 -05:00
|
|
|
title = nil if title && title.length < MIN_TITLE_LENGTH
|
2017-07-21 15:29:04 -04:00
|
|
|
return onebox_for(url, title, opts)
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-07-21 15:29:04 -04:00
|
|
|
def self.onebox_for(url, title, opts)
|
2020-12-16 19:19:13 -05:00
|
|
|
title = title && Emoji.gsub_emoji_to_unicode(title)
|
|
|
|
if title && opts[:post_number]
|
|
|
|
title += " - "
|
|
|
|
if opts[:post_author]
|
|
|
|
title += I18n.t(
|
|
|
|
"inline_oneboxer.topic_page_title_post_number_by_user",
|
|
|
|
post_number: opts[:post_number],
|
|
|
|
username: opts[:post_author]
|
|
|
|
)
|
|
|
|
else
|
|
|
|
title += I18n.t(
|
|
|
|
"inline_oneboxer.topic_page_title_post_number",
|
|
|
|
post_number: opts[:post_number]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2020-06-24 05:54:54 -04:00
|
|
|
onebox = { url: url, title: title && Emoji.gsub_emoji_to_unicode(title) }
|
|
|
|
Discourse.cache.write(cache_key(url), onebox, expires_in: 1.day) if !opts[:skip_cache]
|
2018-06-07 01:28:18 -04:00
|
|
|
onebox
|
|
|
|
end
|
|
|
|
|
2017-07-19 15:08:54 -04:00
|
|
|
def self.cache_key(url)
|
|
|
|
"inline_onebox:#{url}"
|
|
|
|
end
|
|
|
|
|
2020-12-16 19:19:13 -05:00
|
|
|
def self.post_author_for_title(topic, post_number)
|
|
|
|
guardian = Guardian.new
|
|
|
|
post = topic.posts.find_by(post_number: post_number)
|
|
|
|
author = post&.user
|
|
|
|
if author && guardian.can_see_post?(post) && post.post_type == Post.types[:regular]
|
|
|
|
author.username
|
|
|
|
end
|
|
|
|
end
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|