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