chinwagsocial/app/services/process_mentions_service.rb

45 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-25 10:17:01 +11: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)
return unless status.local?
2016-02-25 10:17:01 +11:00
status.text.scan(Account::MENTION_RE).each do |match|
username, domain = match.first.split('@')
2016-09-05 05:06:04 +10:00
mentioned_account = Account.find_remote(username, domain)
2016-02-25 10:17:01 +11:00
if mentioned_account.nil? && !domain.nil?
begin
2016-09-30 05:28:21 +10:00
mentioned_account = follow_remote_account_service.call(match.first.to_s)
rescue Goldfinger::Error, HTTP::Error
2016-09-18 21:42:24 +10:00
mentioned_account = nil
end
2016-02-25 10:17:01 +11:00
end
next if mentioned_account.nil?
mentioned_account.mentions.where(status: status).first_or_create(status: status)
2016-02-25 10:17:01 +11:00
end
status.mentions.each do |mention|
mentioned_account = mention.account
if mentioned_account.local?
NotificationMailer.mention(mentioned_account, status).deliver_later unless mentioned_account.blocking?(status.account)
else
NotificationWorker.perform_async(status.stream_entry.id, mentioned_account.id)
end
2016-02-25 10:17:01 +11:00
end
end
private
def follow_remote_account_service
@follow_remote_account_service ||= FollowRemoteAccountService.new
end
end