2017-01-20 00:00:14 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FetchLinkCardService < BaseService
|
2022-04-28 15:47:34 +00:00
|
|
|
include Redisable
|
2022-05-12 22:02:35 +00:00
|
|
|
include Lockable
|
2022-04-28 15:47:34 +00:00
|
|
|
|
2017-09-14 16:03:20 +00:00
|
|
|
URL_PATTERN = %r{
|
2022-02-22 19:14:17 +00:00
|
|
|
(#{Twitter::TwitterText::Regex[:valid_url_preceding_chars]}) # $1 preceding chars
|
2021-03-03 23:12:26 +00:00
|
|
|
( # $2 URL
|
2023-06-06 12:50:51 +00:00
|
|
|
(https?://) # $3 Protocol (required)
|
2021-03-03 23:12:26 +00:00
|
|
|
(#{Twitter::TwitterText::Regex[:valid_domain]}) # $4 Domain(s)
|
|
|
|
(?::(#{Twitter::TwitterText::Regex[:valid_port_number]}))? # $5 Port number (optional)
|
|
|
|
(/#{Twitter::TwitterText::Regex[:valid_url_path]}*)? # $6 URL Path and anchor
|
|
|
|
(\?#{Twitter::TwitterText::Regex[:valid_url_query_chars]}*#{Twitter::TwitterText::Regex[:valid_url_query_ending_chars]})? # $7 Query String
|
2017-09-14 16:03:20 +00:00
|
|
|
)
|
|
|
|
}iox
|
2017-04-18 14:04:13 +00:00
|
|
|
|
2017-01-20 00:00:14 +00:00
|
|
|
def call(status)
|
2021-11-05 22:23:05 +00:00
|
|
|
@status = status
|
|
|
|
@original_url = parse_urls
|
2017-01-20 00:00:14 +00:00
|
|
|
|
2023-11-13 09:58:28 +00:00
|
|
|
return if @original_url.nil? || @status.with_preview_card?
|
2017-01-20 00:00:14 +00:00
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
@url = @original_url.to_s
|
2017-05-10 21:30:07 +00:00
|
|
|
|
2023-05-02 16:16:07 +00:00
|
|
|
with_redis_lock("fetch:#{@original_url}") do
|
2022-05-12 22:02:35 +00:00
|
|
|
@card = PreviewCard.find_by(url: @url)
|
|
|
|
process_url if @card.nil? || @card.updated_at <= 2.weeks.ago || @card.missing_image?
|
2017-09-01 14:20:16 +00:00
|
|
|
end
|
2017-05-10 21:30:07 +00:00
|
|
|
|
2017-09-14 02:11:36 +00:00
|
|
|
attach_card if @card&.persisted?
|
2024-09-09 10:59:42 +00:00
|
|
|
rescue HTTP::Error, OpenSSL::SSL::SSLError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, Encoding::UndefinedConversionError, ActiveRecord::RecordInvalid => e
|
2023-02-07 02:44:36 +00:00
|
|
|
Rails.logger.debug { "Error fetching link #{@original_url}: #{e}" }
|
2017-07-03 09:03:34 +00:00
|
|
|
nil
|
2017-04-27 12:42:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-01 14:20:16 +00:00
|
|
|
def process_url
|
2017-09-14 02:11:36 +00:00
|
|
|
@card ||= PreviewCard.new(url: @url)
|
2017-09-01 14:20:16 +00:00
|
|
|
|
2019-11-17 17:40:33 +00:00
|
|
|
attempt_oembed || attempt_opengraph
|
|
|
|
end
|
|
|
|
|
|
|
|
def html
|
|
|
|
return @html if defined?(@html)
|
|
|
|
|
2024-08-01 09:14:24 +00:00
|
|
|
headers = {
|
|
|
|
'Accept' => 'text/html',
|
|
|
|
'Accept-Language' => "#{I18n.default_locale}, *;q=0.5",
|
|
|
|
'User-Agent' => "#{Mastodon::Version.user_agent} Bot",
|
|
|
|
}
|
|
|
|
|
|
|
|
@html = Request.new(:get, @url).add_headers(headers).perform do |res|
|
2023-07-28 21:02:08 +00:00
|
|
|
next unless res.code == 200 && res.mime_type == 'text/html'
|
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
# We follow redirects, and ideally we want to save the preview card for
|
|
|
|
# the destination URL and not any link shortener in-between, so here
|
|
|
|
# we set the URL to the one of the last response in the redirect chain
|
2021-11-25 12:07:38 +00:00
|
|
|
@url = res.request.uri.to_s
|
2021-11-05 22:23:05 +00:00
|
|
|
@card = PreviewCard.find_or_initialize_by(url: @url) if @card.url != @url
|
|
|
|
|
2023-07-28 21:02:08 +00:00
|
|
|
@html_charset = res.charset
|
|
|
|
|
2024-05-19 16:30:05 +00:00
|
|
|
res.truncated_body
|
2018-03-24 11:49:54 +00:00
|
|
|
end
|
2017-09-01 14:20:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def attach_card
|
2023-08-03 09:12:52 +00:00
|
|
|
with_redis_lock("attach_card:#{@status.id}") do
|
2023-11-13 09:58:28 +00:00
|
|
|
return if @status.with_preview_card?
|
2023-08-03 09:12:52 +00:00
|
|
|
|
2023-11-13 09:58:28 +00:00
|
|
|
PreviewCardsStatus.create(status: @status, preview_card: @card, url: @original_url)
|
2023-08-03 09:12:52 +00:00
|
|
|
Rails.cache.delete(@status)
|
|
|
|
Trends.links.register(@status)
|
|
|
|
end
|
2017-09-01 14:20:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def parse_urls
|
2023-02-18 22:09:40 +00:00
|
|
|
urls = if @status.local?
|
|
|
|
@status.text.scan(URL_PATTERN).map { |array| Addressable::URI.parse(array[1]).normalize }
|
|
|
|
else
|
2024-09-09 10:59:42 +00:00
|
|
|
document = Nokogiri::HTML5(@status.text)
|
2023-02-18 22:09:40 +00:00
|
|
|
links = document.css('a')
|
|
|
|
|
|
|
|
links.filter_map { |a| Addressable::URI.parse(a['href']) unless skip_link?(a) }.filter_map(&:normalize)
|
|
|
|
end
|
2017-05-16 22:41:15 +00:00
|
|
|
|
|
|
|
urls.reject { |uri| bad_url?(uri) }.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def bad_url?(uri)
|
|
|
|
# Avoid local instance URLs and invalid URLs
|
2024-07-09 13:11:34 +00:00
|
|
|
uri.host.blank? || TagManager.instance.local_url?(uri.to_s) || !%w(http https).include?(uri.scheme)
|
2017-05-16 22:41:15 +00:00
|
|
|
end
|
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
def mention_link?(anchor)
|
2018-10-30 14:02:24 +00:00
|
|
|
@status.mentions.any? do |mention|
|
2021-11-05 22:23:05 +00:00
|
|
|
anchor['href'] == ActivityPub::TagManager.instance.url_for(mention.account)
|
2018-10-25 16:13:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
def skip_link?(anchor)
|
2017-05-16 22:41:15 +00:00
|
|
|
# Avoid links for hashtags and mentions (microformats)
|
2021-11-05 22:23:05 +00:00
|
|
|
anchor['rel']&.include?('tag') || anchor['class']&.match?(/u-url|h-card/) || mention_link?(anchor)
|
2017-05-16 22:41:15 +00:00
|
|
|
end
|
|
|
|
|
2017-09-01 14:20:16 +00:00
|
|
|
def attempt_oembed
|
2019-11-17 17:40:33 +00:00
|
|
|
service = FetchOEmbedService.new
|
|
|
|
url_domain = Addressable::URI.parse(@url).normalized_host
|
|
|
|
cached_endpoint = Rails.cache.read("oembed_endpoint:#{url_domain}")
|
|
|
|
|
|
|
|
embed = service.call(@url, cached_endpoint: cached_endpoint) unless cached_endpoint.nil?
|
|
|
|
embed ||= service.call(@url, html: html) unless html.nil?
|
2017-04-27 12:42:22 +00:00
|
|
|
|
2018-05-02 16:58:48 +00:00
|
|
|
return false if embed.nil?
|
2017-10-12 10:01:32 +00:00
|
|
|
|
2019-11-17 17:40:33 +00:00
|
|
|
url = Addressable::URI.parse(service.endpoint_url)
|
|
|
|
|
2018-05-02 16:58:48 +00:00
|
|
|
@card.type = embed[:type]
|
|
|
|
@card.title = embed[:title] || ''
|
|
|
|
@card.author_name = embed[:author_name] || ''
|
2018-09-10 16:26:28 +00:00
|
|
|
@card.author_url = embed[:author_url].present? ? (url + embed[:author_url]).to_s : ''
|
2018-05-02 16:58:48 +00:00
|
|
|
@card.provider_name = embed[:provider_name] || ''
|
2018-09-10 16:26:28 +00:00
|
|
|
@card.provider_url = embed[:provider_url].present? ? (url + embed[:provider_url]).to_s : ''
|
2017-09-01 14:20:16 +00:00
|
|
|
@card.width = 0
|
|
|
|
@card.height = 0
|
2017-04-27 12:42:22 +00:00
|
|
|
|
2017-09-01 14:20:16 +00:00
|
|
|
case @card.type
|
2017-04-27 12:42:22 +00:00
|
|
|
when 'link'
|
2018-09-10 16:26:28 +00:00
|
|
|
@card.image_remote_url = (url + embed[:thumbnail_url]).to_s if embed[:thumbnail_url].present?
|
2017-04-27 12:42:22 +00:00
|
|
|
when 'photo'
|
2018-05-02 16:58:48 +00:00
|
|
|
return false if embed[:url].blank?
|
2018-02-15 06:04:28 +00:00
|
|
|
|
2018-09-10 16:26:28 +00:00
|
|
|
@card.embed_url = (url + embed[:url]).to_s
|
|
|
|
@card.image_remote_url = (url + embed[:url]).to_s
|
2018-05-02 16:58:48 +00:00
|
|
|
@card.width = embed[:width].presence || 0
|
|
|
|
@card.height = embed[:height].presence || 0
|
2017-04-27 12:42:22 +00:00
|
|
|
when 'video'
|
2018-05-02 16:58:48 +00:00
|
|
|
@card.width = embed[:width].presence || 0
|
|
|
|
@card.height = embed[:height].presence || 0
|
2022-03-26 01:53:34 +00:00
|
|
|
@card.html = Sanitize.fragment(embed[:html], Sanitize::Config::MASTODON_OEMBED)
|
2018-09-10 16:26:28 +00:00
|
|
|
@card.image_remote_url = (url + embed[:thumbnail_url]).to_s if embed[:thumbnail_url].present?
|
2017-04-27 12:42:22 +00:00
|
|
|
when 'rich'
|
|
|
|
# Most providers rely on <script> tags, which is a no-no
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2017-09-01 14:20:16 +00:00
|
|
|
@card.save_with_optional_image!
|
2017-04-27 12:42:22 +00:00
|
|
|
end
|
|
|
|
|
2017-09-01 14:20:16 +00:00
|
|
|
def attempt_opengraph
|
2019-11-17 17:40:33 +00:00
|
|
|
return if html.nil?
|
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
link_details_extractor = LinkDetailsExtractor.new(@url, @html, @html_charset)
|
2024-09-10 12:00:40 +00:00
|
|
|
domain = Addressable::URI.parse(link_details_extractor.canonical_url).normalized_host
|
|
|
|
provider = PreviewCardProvider.matching_domain(domain)
|
|
|
|
linked_account = ResolveAccountService.new.call(link_details_extractor.author_account, suppress_errors: true) if link_details_extractor.author_account.present?
|
2017-01-20 00:00:14 +00:00
|
|
|
|
2021-11-05 22:23:05 +00:00
|
|
|
@card = PreviewCard.find_or_initialize_by(url: link_details_extractor.canonical_url) if link_details_extractor.canonical_url != @card.url
|
|
|
|
@card.assign_attributes(link_details_extractor.to_preview_card_attributes)
|
2024-09-10 12:00:40 +00:00
|
|
|
@card.author_account = linked_account if linked_account&.can_be_attributed_from?(domain) || provider&.trendable?
|
2021-11-05 22:23:05 +00:00
|
|
|
@card.save_with_optional_image! unless @card.title.blank? && @card.html.blank?
|
2017-01-20 00:00:14 +00:00
|
|
|
end
|
|
|
|
end
|