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