2016-02-25 08:17:01 +09:00
|
|
|
class ProcessMentionsService < BaseService
|
|
|
|
# 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-29 05:22:56 +09:00
|
|
|
return unless status.local?
|
|
|
|
|
2016-02-25 08:17:01 +09:00
|
|
|
status.text.scan(Account::MENTION_RE).each do |match|
|
2016-02-29 05:22:56 +09:00
|
|
|
username, domain = match.first.split('@')
|
2016-09-05 04:06:04 +09:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-25 08:17:01 +09:00
|
|
|
|
2016-03-20 03:20:07 +09:00
|
|
|
if mentioned_account.nil? && !domain.nil?
|
2016-03-17 05:20:50 +09:00
|
|
|
mentioned_account = follow_remote_account_service.("#{match.first}")
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
|
|
|
|
2016-09-05 04:07:29 +09:00
|
|
|
next if mentioned_account.nil?
|
|
|
|
|
2016-03-19 08:02:39 +09:00
|
|
|
mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
|
|
|
|
2016-03-25 10:13:30 +09:00
|
|
|
status.mentions.each do |mention|
|
2016-03-20 03:20:07 +09:00
|
|
|
mentioned_account = mention.account
|
|
|
|
|
|
|
|
if mentioned_account.local?
|
|
|
|
NotificationMailer.mention(mentioned_account, status).deliver_later
|
|
|
|
else
|
2016-03-26 21:42:10 +09:00
|
|
|
NotificationWorker.perform_async(status.stream_entry.id, mentioned_account.id)
|
2016-03-20 03:20:07 +09:00
|
|
|
end
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def follow_remote_account_service
|
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
|
|
|
end
|
|
|
|
end
|