2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
class InlineOneboxer
|
|
|
|
|
2018-01-30 05:39:41 +08:00
|
|
|
MIN_TITLE_LENGTH = 2
|
|
|
|
|
2017-07-22 03:29:04 +08:00
|
|
|
def initialize(urls, opts = nil)
|
2017-07-20 03:08:54 +08:00
|
|
|
@urls = urls
|
2017-07-22 03:29:04 +08:00
|
|
|
@opts = opts || {}
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def process
|
2017-07-22 03:29:04 +08:00
|
|
|
@urls.map { |url| InlineOneboxer.lookup(url, @opts) }.compact
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
2020-06-24 17:54:54 +08:00
|
|
|
def self.invalidate(url)
|
2019-11-27 09:35:14 +08:00
|
|
|
Discourse.cache.delete(cache_key(url))
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.cache_lookup(url)
|
2019-11-27 09:35:14 +08:00
|
|
|
Discourse.cache.read(cache_key(url))
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
2017-07-22 03:29:04 +08:00
|
|
|
def self.lookup(url, opts = nil)
|
|
|
|
opts ||= {}
|
2018-09-04 01:03:43 +08:00
|
|
|
opts = opts.with_indifferent_access
|
2017-07-22 03:29:04 +08:00
|
|
|
|
2018-09-04 01:03:43 +08:00
|
|
|
unless opts[:skip_cache] || opts[:invalidate]
|
2017-07-22 03:29:04 +08:00
|
|
|
cached = cache_lookup(url)
|
|
|
|
return cached if cached.present?
|
|
|
|
end
|
2017-07-20 03:08:54 +08:00
|
|
|
|
2018-03-28 16:20:08 +08:00
|
|
|
return unless url
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
if route = Discourse.route_for(url)
|
2020-02-12 18:11:28 +08:00
|
|
|
if route[:controller] == "topics"
|
|
|
|
if topic = Oneboxer.local_topic(url, route, opts)
|
|
|
|
opts[:skip_cache] = true
|
|
|
|
return onebox_for(url, topic.title, opts)
|
|
|
|
end
|
2017-07-22 03:29:04 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-03 02:27:21 +08:00
|
|
|
always_allow = SiteSetting.enable_inline_onebox_on_all_domains
|
|
|
|
domains = SiteSetting.inline_onebox_domains_whitelist&.split('|') unless always_allow
|
|
|
|
|
|
|
|
if always_allow || domains
|
2018-03-28 16:20:08 +08:00
|
|
|
uri = begin
|
|
|
|
URI(url)
|
2018-08-14 18:23:32 +08:00
|
|
|
rescue URI::Error
|
2018-03-28 16:20:08 +08:00
|
|
|
end
|
2017-07-22 03:29:04 +08:00
|
|
|
|
|
|
|
if uri.present? &&
|
|
|
|
uri.hostname.present? &&
|
2018-11-13 04:14:20 +08:00
|
|
|
(always_allow || domains.include?(uri.hostname))
|
2017-07-22 03:29:04 +08:00
|
|
|
title = RetrieveTitle.crawl(url)
|
2018-01-30 05:39:41 +08:00
|
|
|
title = nil if title && title.length < MIN_TITLE_LENGTH
|
2017-07-22 03:29:04 +08:00
|
|
|
return onebox_for(url, title, opts)
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-07-22 03:29:04 +08:00
|
|
|
def self.onebox_for(url, title, opts)
|
2020-06-24 17:54:54 +08: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 13:28:18 +08:00
|
|
|
onebox
|
|
|
|
end
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
def self.cache_key(url)
|
|
|
|
"inline_onebox:#{url}"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|