2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 00:17:01 +01:00
|
|
|
class ProcessMentionsService < BaseService
|
2017-02-11 02:12:05 +01:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
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)
|
2016-02-28 21:22:56 +01:00
|
|
|
return unless status.local?
|
|
|
|
|
2017-05-13 04:03:43 +02:00
|
|
|
status.text.scan(Account::MENTION_RE).each do |match|
|
2016-02-28 21:22:56 +01:00
|
|
|
username, domain = match.first.split('@')
|
2016-09-04 21:06:04 +02:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-25 00:17:01 +01:00
|
|
|
|
2016-03-19 19:20:07 +01:00
|
|
|
if mentioned_account.nil? && !domain.nil?
|
2016-09-17 17:07:45 +02:00
|
|
|
begin
|
2016-09-29 21:28:21 +02:00
|
|
|
mentioned_account = follow_remote_account_service.call(match.first.to_s)
|
2016-09-17 17:07:45 +02:00
|
|
|
rescue Goldfinger::Error, HTTP::Error
|
2016-09-18 13:42:24 +02:00
|
|
|
mentioned_account = nil
|
2016-09-17 17:07:45 +02:00
|
|
|
end
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
|
2016-09-04 21:07:29 +02:00
|
|
|
next if mentioned_account.nil?
|
|
|
|
|
2016-03-19 00:02:39 +01:00
|
|
|
mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
|
2017-03-13 16:34:15 +01:00
|
|
|
status.mentions.includes(:account).each do |mention|
|
2016-03-19 19:20:07 +01:00
|
|
|
mentioned_account = mention.account
|
|
|
|
|
|
|
|
if mentioned_account.local?
|
2016-11-20 00:33:02 +01:00
|
|
|
NotifyService.new.call(mentioned_account, mention)
|
2016-03-19 19:20:07 +01:00
|
|
|
else
|
2017-02-11 02:12:05 +01:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(status.stream_entry), status.account_id, mentioned_account.id)
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def follow_remote_account_service
|
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
|
|
|
end
|
|
|
|
end
|