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