2017-01-20 01:00:14 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FetchLinkCardService < BaseService
|
2022-04-28 17:47:34 +02:00
|
|
|
include Redisable
|
2022-05-13 00:02:35 +02:00
|
|
|
include Lockable
|
2022-04-28 17:47:34 +02:00
|
|
|
|
2017-09-14 18:03:20 +02:00
|
|
|
URL_PATTERN = %r{
|
2022-02-22 20:14:17 +01:00
|
|
|
(#{Twitter::TwitterText::Regex[:valid_url_preceding_chars]}) # $1 preceding chars
|
2021-03-04 00:12:26 +01:00
|
|
|
( # $2 URL
|
2023-06-06 14:50:51 +02:00
|
|
|
(https?://) # $3 Protocol (required)
|
2021-03-04 00:12:26 +01: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 18:03:20 +02:00
|
|
|
)
|
|
|
|
}iox
|
2017-04-18 16:04:13 +02:00
|
|
|
|
2017-01-20 01:00:14 +01:00
|
|
|
def call(status)
|
2021-11-05 23:23:05 +01:00
|
|
|
@status = status
|
|
|
|
@original_url = parse_urls
|
2017-01-20 01:00:14 +01:00
|
|
|
|
2023-11-13 10:58:28 +01:00
|
|
|
return if @original_url.nil? || @status.with_preview_card?
|
2017-01-20 01:00:14 +01:00
|
|
|
|
2021-11-05 23:23:05 +01:00
|
|
|
@url = @original_url.to_s
|
2017-05-10 23:30:07 +02:00
|
|
|
|
2023-05-02 18:16:07 +02:00
|
|
|
with_redis_lock("fetch:#{@original_url}") do
|
2022-05-13 00:02:35 +02:00
|
|
|
@card = PreviewCard.find_by(url: @url)
|
|
|
|
process_url if @card.nil? || @card.updated_at <= 2.weeks.ago || @card.missing_image?
|
2017-09-01 16:20:16 +02:00
|
|
|
end
|
2017-05-10 23:30:07 +02:00
|
|
|
|
2017-09-14 04:11:36 +02:00
|
|
|
attach_card if @card&.persisted?
|
2024-10-08 16:59:51 +02:00
|
|
|
rescue *Mastodon::HTTP_CONNECTION_ERRORS, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, Encoding::UndefinedConversionError, ActiveRecord::RecordInvalid => e
|
2023-02-07 03:44:36 +01:00
|
|
|
Rails.logger.debug { "Error fetching link #{@original_url}: #{e}" }
|
2017-07-03 11:03:34 +02:00
|
|
|
nil
|
2017-04-27 14:42:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
def process_url
|
2017-09-14 04:11:36 +02:00
|
|
|
@card ||= PreviewCard.new(url: @url)
|
2017-09-01 16:20:16 +02:00
|
|
|
|
2019-11-17 18:40:33 +01:00
|
|
|
attempt_oembed || attempt_opengraph
|
|
|
|
end
|
|
|
|
|
|
|
|
def html
|
|
|
|
return @html if defined?(@html)
|
|
|
|
|
2024-08-01 11:14:24 +02: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 23:02:08 +02:00
|
|
|
next unless res.code == 200 && res.mime_type == 'text/html'
|
|
|
|
|
2021-11-05 23:23:05 +01: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 13:07:38 +01:00
|
|
|
@url = res.request.uri.to_s
|
2021-11-05 23:23:05 +01:00
|
|
|
@card = PreviewCard.find_or_initialize_by(url: @url) if @card.url != @url
|
|
|
|
|
2023-07-28 23:02:08 +02:00
|
|
|
@html_charset = res.charset
|
|
|
|
|
2024-05-19 18:30:05 +02:00
|
|
|
res.truncated_body
|
2018-03-24 12:49:54 +01:00
|
|
|
end
|
2017-09-01 16:20:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def attach_card
|
2023-08-03 11:12:52 +02:00
|
|
|
with_redis_lock("attach_card:#{@status.id}") do
|
2023-11-13 10:58:28 +01:00
|
|
|
return if @status.with_preview_card?
|
2023-08-03 11:12:52 +02:00
|
|
|
|
2023-11-13 10:58:28 +01:00
|
|
|
PreviewCardsStatus.create(status: @status, preview_card: @card, url: @original_url)
|
2023-08-03 11:12:52 +02:00
|
|
|
Rails.cache.delete(@status)
|
|
|
|
Trends.links.register(@status)
|
|
|
|
end
|
2017-09-01 16:20:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def parse_urls
|
2023-02-18 23:09:40 +01:00
|
|
|
urls = if @status.local?
|
|
|
|
@status.text.scan(URL_PATTERN).map { |array| Addressable::URI.parse(array[1]).normalize }
|
|
|
|
else
|
2024-09-09 12:59:42 +02:00
|
|
|
document = Nokogiri::HTML5(@status.text)
|
2023-02-18 23:09:40 +01:00
|
|
|
links = document.css('a')
|
|
|
|
|
|
|
|
links.filter_map { |a| Addressable::URI.parse(a['href']) unless skip_link?(a) }.filter_map(&:normalize)
|
|
|
|
end
|
2017-05-17 00:41:15 +02:00
|
|
|
|
|
|
|
urls.reject { |uri| bad_url?(uri) }.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def bad_url?(uri)
|
|
|
|
# Avoid local instance URLs and invalid URLs
|
2024-07-09 15:11:34 +02:00
|
|
|
uri.host.blank? || TagManager.instance.local_url?(uri.to_s) || !%w(http https).include?(uri.scheme)
|
2017-05-17 00:41:15 +02:00
|
|
|
end
|
|
|
|
|
2021-11-05 23:23:05 +01:00
|
|
|
def mention_link?(anchor)
|
2018-10-30 15:02:24 +01:00
|
|
|
@status.mentions.any? do |mention|
|
2021-11-05 23:23:05 +01:00
|
|
|
anchor['href'] == ActivityPub::TagManager.instance.url_for(mention.account)
|
2018-10-25 18:13:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-05 23:23:05 +01:00
|
|
|
def skip_link?(anchor)
|
2017-05-17 00:41:15 +02:00
|
|
|
# Avoid links for hashtags and mentions (microformats)
|
2021-11-05 23:23:05 +01:00
|
|
|
anchor['rel']&.include?('tag') || anchor['class']&.match?(/u-url|h-card/) || mention_link?(anchor)
|
2017-05-17 00:41:15 +02:00
|
|
|
end
|
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
def attempt_oembed
|
2019-11-17 18:40:33 +01: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 14:42:22 +02:00
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
return false if embed.nil?
|
2017-10-12 12:01:32 +02:00
|
|
|
|
2019-11-17 18:40:33 +01:00
|
|
|
url = Addressable::URI.parse(service.endpoint_url)
|
|
|
|
|
2018-05-02 18:58:48 +02:00
|
|
|
@card.type = embed[:type]
|
|
|
|
@card.title = embed[:title] || ''
|
|
|
|
@card.author_name = embed[:author_name] || ''
|
2018-09-10 18:26:28 +02:00
|
|
|
@card.author_url = embed[:author_url].present? ? (url + embed[:author_url]).to_s : ''
|
2018-05-02 18:58:48 +02:00
|
|
|
@card.provider_name = embed[:provider_name] || ''
|
2018-09-10 18:26:28 +02:00
|
|
|
@card.provider_url = embed[:provider_url].present? ? (url + embed[:provider_url]).to_s : ''
|
2017-09-01 16:20:16 +02:00
|
|
|
@card.width = 0
|
|
|
|
@card.height = 0
|
2017-04-27 14:42:22 +02:00
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
case @card.type
|
2017-04-27 14:42:22 +02:00
|
|
|
when 'link'
|
2018-09-10 18:26:28 +02:00
|
|
|
@card.image_remote_url = (url + embed[:thumbnail_url]).to_s if embed[:thumbnail_url].present?
|
2017-04-27 14:42:22 +02:00
|
|
|
when 'photo'
|
2018-05-02 18:58:48 +02:00
|
|
|
return false if embed[:url].blank?
|
2018-02-15 07:04:28 +01:00
|
|
|
|
2018-09-10 18:26:28 +02:00
|
|
|
@card.embed_url = (url + embed[:url]).to_s
|
|
|
|
@card.image_remote_url = (url + embed[:url]).to_s
|
2018-05-02 18:58:48 +02:00
|
|
|
@card.width = embed[:width].presence || 0
|
|
|
|
@card.height = embed[:height].presence || 0
|
2017-04-27 14:42:22 +02:00
|
|
|
when 'video'
|
2018-05-02 18:58:48 +02:00
|
|
|
@card.width = embed[:width].presence || 0
|
|
|
|
@card.height = embed[:height].presence || 0
|
2022-03-26 02:53:34 +01:00
|
|
|
@card.html = Sanitize.fragment(embed[:html], Sanitize::Config::MASTODON_OEMBED)
|
2018-09-10 18:26:28 +02:00
|
|
|
@card.image_remote_url = (url + embed[:thumbnail_url]).to_s if embed[:thumbnail_url].present?
|
2017-04-27 14:42:22 +02:00
|
|
|
when 'rich'
|
|
|
|
# Most providers rely on <script> tags, which is a no-no
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
@card.save_with_optional_image!
|
2017-04-27 14:42:22 +02:00
|
|
|
end
|
|
|
|
|
2017-09-01 16:20:16 +02:00
|
|
|
def attempt_opengraph
|
2019-11-17 18:40:33 +01:00
|
|
|
return if html.nil?
|
|
|
|
|
2021-11-05 23:23:05 +01:00
|
|
|
link_details_extractor = LinkDetailsExtractor.new(@url, @html, @html_charset)
|
2024-09-10 14:00:40 +02: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 01:00:14 +01:00
|
|
|
|
2021-11-05 23:23:05 +01: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 14:00:40 +02:00
|
|
|
@card.author_account = linked_account if linked_account&.can_be_attributed_from?(domain) || provider&.trendable?
|
2021-11-05 23:23:05 +01:00
|
|
|
@card.save_with_optional_image! unless @card.title.blank? && @card.html.blank?
|
2017-01-20 01:00:14 +01:00
|
|
|
end
|
|
|
|
end
|