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