2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 10:17:01 +11:00
|
|
|
class ProcessMentionsService < BaseService
|
2017-02-11 12:12:05 +11:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-02-25 10:17:01 +11: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-29 07:22:56 +11:00
|
|
|
return unless status.local?
|
|
|
|
|
2017-05-13 12:03:43 +10:00
|
|
|
status.text.scan(Account::MENTION_RE).each do |match|
|
2016-02-29 07:22:56 +11:00
|
|
|
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
|
|
|
|
2016-03-20 05:20:07 +11:00
|
|
|
if mentioned_account.nil? && !domain.nil?
|
2016-09-18 01:07:45 +10:00
|
|
|
begin
|
2016-09-30 05:28:21 +10:00
|
|
|
mentioned_account = follow_remote_account_service.call(match.first.to_s)
|
2016-09-18 01:07:45 +10:00
|
|
|
rescue Goldfinger::Error, HTTP::Error
|
2016-09-18 21:42:24 +10:00
|
|
|
mentioned_account = nil
|
2016-09-18 01:07:45 +10:00
|
|
|
end
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
|
|
|
|
2016-09-05 05:07:29 +10:00
|
|
|
next if mentioned_account.nil?
|
|
|
|
|
2016-03-19 10:02:39 +11:00
|
|
|
mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
|
|
|
|
2017-03-14 02:34:15 +11:00
|
|
|
status.mentions.includes(:account).each do |mention|
|
2017-08-13 08:44:41 +10:00
|
|
|
create_notification(status, mention)
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-13 08:44:41 +10:00
|
|
|
def create_notification(status, mention)
|
|
|
|
mentioned_account = mention.account
|
|
|
|
|
|
|
|
if mentioned_account.local?
|
|
|
|
NotifyService.new.call(mentioned_account, mention)
|
2017-08-25 01:51:32 +10:00
|
|
|
elsif mentioned_account.ostatus? && (Rails.configuration.x.use_ostatus_privacy || !status.stream_entry.hidden?)
|
2017-08-13 08:44:41 +10:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(status.stream_entry), status.account_id, mentioned_account.id)
|
|
|
|
elsif mentioned_account.activitypub?
|
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(mention.status), mention.status.account_id, mentioned_account.inbox_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_json(status)
|
|
|
|
ActiveModelSerializers::SerializableResource.new(
|
|
|
|
status,
|
|
|
|
serializer: ActivityPub::ActivitySerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
).to_json
|
|
|
|
end
|
|
|
|
|
2016-02-25 10:17:01 +11:00
|
|
|
def follow_remote_account_service
|
2017-06-19 09:51:04 +10:00
|
|
|
@follow_remote_account_service ||= ResolveRemoteAccountService.new
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
|
|
|
end
|