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 21:11:18 +00:00
|
|
|
include Payloadable
|
2017-02-11 01:12:05 +00:00
|
|
|
|
2023-02-13 15:36:29 +00:00
|
|
|
# Scan status for mentions and fetch remote mentioned users,
|
|
|
|
# and create local mention pointers
|
2016-02-24 23:17:01 +00:00
|
|
|
# @param [Status] status
|
2023-02-13 15:36:29 +00:00
|
|
|
# @param [Boolean] save_records Whether to save records in database
|
|
|
|
def call(status, save_records: true)
|
2022-01-19 21:37:27 +00:00
|
|
|
@status = status
|
2023-02-13 15:36:29 +00:00
|
|
|
@save_records = save_records
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
return unless @status.local?
|
2018-05-02 20:10:57 +00: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('@')
|
|
|
|
|
2023-02-18 22:09:40 +00:00
|
|
|
domain = if TagManager.instance.local_domain?(domain)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
TagManager.instance.normalize_domain(domain)
|
|
|
|
end
|
2019-12-30 18:20:43 +00:00
|
|
|
|
2017-12-22 01:15:08 +00:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2022-05-26 13:50:33 +00:00
|
|
|
# Unapproved and unconfirmed accounts should not be mentionable
|
2022-09-20 21:49:00 +00:00
|
|
|
next match if mentioned_account&.local? && !(mentioned_account.user_confirmed? && mentioned_account.user_approved?)
|
2022-05-26 13:50:33 +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 20:10:57 +00: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 22:34:57 +00: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 17:05:02 +00:00
|
|
|
next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended?
|
2018-05-02 20:10:57 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
mention = @previous_mentions.find { |x| x.account_id == mentioned_account.id }
|
2023-02-13 15:36:29 +00:00
|
|
|
mention ||= @current_mentions.find { |x| x.account_id == mentioned_account.id }
|
|
|
|
mention ||= @status.mentions.new(account: mentioned_account)
|
2022-01-19 21:37:27 +00:00
|
|
|
|
|
|
|
@current_mentions << mention
|
2016-09-04 19:07:29 +00:00
|
|
|
|
2017-11-07 18:08:14 +00:00
|
|
|
"@#{mentioned_account.acct}"
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
|
2023-02-13 15:36:29 +00:00
|
|
|
@status.save! if @save_records
|
2016-02-24 23:17:01 +00:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
def assign_mentions!
|
2022-11-04 12:19:12 +00:00
|
|
|
# Make sure we never mention blocked accounts
|
|
|
|
unless @current_mentions.empty?
|
|
|
|
mentioned_domains = @current_mentions.map { |m| m.account.domain }.compact.uniq
|
|
|
|
blocked_domains = Set.new(mentioned_domains.empty? ? [] : AccountDomainBlock.where(account_id: @status.account_id, domain: mentioned_domains))
|
|
|
|
mentioned_account_ids = @current_mentions.map(&:account_id)
|
|
|
|
blocked_account_ids = Set.new(@status.account.block_relationships.where(target_account_id: mentioned_account_ids).pluck(:target_account_id))
|
|
|
|
|
2023-02-13 15:36:29 +00:00
|
|
|
dropped_mentions, @current_mentions = @current_mentions.partition { |mention| blocked_account_ids.include?(mention.account_id) || blocked_domains.include?(mention.account.domain) }
|
|
|
|
dropped_mentions.each(&:destroy)
|
2022-11-04 12:19:12 +00:00
|
|
|
end
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
@current_mentions.each do |mention|
|
2023-02-13 15:36:29 +00:00
|
|
|
mention.save if mention.new_record? && @save_records
|
2017-08-12 22:44:41 +00: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 22:44:41 +00: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
|