2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 23:17:01 +00:00
|
|
|
class ProcessMentionsService < BaseService
|
2019-06-04 22:11:18 +01:00
|
|
|
include Payloadable
|
2017-02-11 01:12:05 +00:00
|
|
|
|
2016-02-24 23:17:01 +00: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 21:37:27 +00:00
|
|
|
@status = status
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
return unless @status.local?
|
2018-05-02 21:10:57 +01:00
|
|
|
|
2022-01-19 21:37:27 +00: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 18:20:43 +00: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 01:15:08 +00:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
# If the account cannot be found or isn't the right protocol,
|
|
|
|
# first try to resolve it
|
2018-05-02 21:10:57 +01:00
|
|
|
if mention_undeliverable?(mentioned_account)
|
2017-12-22 01:15:08 +00:00
|
|
|
begin
|
2022-01-19 21:37:27 +00:00
|
|
|
mentioned_account = ResolveAccountService.new.call(Regexp.last_match(1))
|
2020-10-07 23:34:57 +01:00
|
|
|
rescue Webfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::UnexpectedResponseError
|
2017-12-22 01:15:08 +00:00
|
|
|
mentioned_account = nil
|
|
|
|
end
|
2017-11-15 00:06:49 +00:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
# If after resolving it still isn't found or isn't the right
|
|
|
|
# protocol, then give up
|
2019-05-14 18:05:02 +01:00
|
|
|
next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended?
|
2018-05-02 21:10:57 +01:00
|
|
|
|
2022-01-19 21:37:27 +00: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 20:07:29 +01:00
|
|
|
|
2017-11-07 18:08:14 +00:00
|
|
|
"@#{mentioned_account.acct}"
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
@status.save!
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
def assign_mentions!
|
|
|
|
@current_mentions.each do |mention|
|
|
|
|
mention.save if mention.new_record?
|
2017-08-12 23:44:41 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00: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-12 23:44:41 +01:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
def mention_undeliverable?(mentioned_account)
|
|
|
|
mentioned_account.nil? || (!mentioned_account.local? && !mentioned_account.activitypub?)
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
end
|