2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 00:17:01 +01:00
|
|
|
class ProcessMentionsService < BaseService
|
2019-06-04 23:11:18 +02:00
|
|
|
include Payloadable
|
2017-02-11 02:12:05 +01:00
|
|
|
|
2016-02-25 00:17:01 +01:00
|
|
|
# Scan status for mentions and fetch remote mentioned users, create
|
|
|
|
# local mention pointers, send Salmon notifications to mentioned
|
|
|
|
# remote users
|
|
|
|
# @param [Status] status
|
|
|
|
def call(status)
|
2022-01-19 22:37:27 +01:00
|
|
|
@status = status
|
2016-02-28 21:22:56 +01:00
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
return unless @status.local?
|
2018-05-02 22:10:57 +02:00
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
@previous_mentions = @status.active_mentions.includes(:account).to_a
|
|
|
|
@current_mentions = []
|
|
|
|
|
|
|
|
Status.transaction do
|
|
|
|
scan_text!
|
|
|
|
assign_mentions!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def scan_text!
|
|
|
|
@status.text = @status.text.gsub(Account::MENTION_RE) do |match|
|
2019-12-30 19:20:43 +01:00
|
|
|
username, domain = Regexp.last_match(1).split('@')
|
|
|
|
|
|
|
|
domain = begin
|
|
|
|
if TagManager.instance.local_domain?(domain)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
TagManager.instance.normalize_domain(domain)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-22 02:15:08 +01:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-25 00:17:01 +01:00
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
# If the account cannot be found or isn't the right protocol,
|
|
|
|
# first try to resolve it
|
2018-05-02 22:10:57 +02:00
|
|
|
if mention_undeliverable?(mentioned_account)
|
2017-12-22 02:15:08 +01:00
|
|
|
begin
|
2022-01-19 22:37:27 +01:00
|
|
|
mentioned_account = ResolveAccountService.new.call(Regexp.last_match(1))
|
2020-10-08 00:34:57 +02:00
|
|
|
rescue Webfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::UnexpectedResponseError
|
2017-12-22 02:15:08 +01:00
|
|
|
mentioned_account = nil
|
|
|
|
end
|
2017-11-15 01:06:49 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
# If after resolving it still isn't found or isn't the right
|
|
|
|
# protocol, then give up
|
2019-05-14 19:05:02 +02:00
|
|
|
next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended?
|
2018-05-02 22:10:57 +02:00
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
mention = @previous_mentions.find { |x| x.account_id == mentioned_account.id }
|
|
|
|
mention ||= mentioned_account.mentions.new(status: @status)
|
|
|
|
|
|
|
|
@current_mentions << mention
|
2016-09-04 21:07:29 +02:00
|
|
|
|
2017-11-07 19:08:14 +01:00
|
|
|
"@#{mentioned_account.acct}"
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
@status.save!
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
def assign_mentions!
|
|
|
|
@current_mentions.each do |mention|
|
|
|
|
mention.save if mention.new_record?
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
# If previous mentions are no longer contained in the text, convert them
|
|
|
|
# to silent mentions, since withdrawing access from someone who already
|
|
|
|
# received a notification might be more confusing
|
|
|
|
removed_mentions = @previous_mentions - @current_mentions
|
|
|
|
|
|
|
|
Mention.where(id: removed_mentions.map(&:id)).update_all(silent: true) unless removed_mentions.empty?
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
def mention_undeliverable?(mentioned_account)
|
|
|
|
mentioned_account.nil? || (!mentioned_account.local? && !mentioned_account.activitypub?)
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
end
|