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?
|
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
@status = status
|
|
|
|
mentions = []
|
|
|
|
|
2017-11-07 19:08:14 +01:00
|
|
|
status.text = status.text.gsub(Account::MENTION_RE) do |match|
|
2018-05-02 22:10:57 +02:00
|
|
|
username, domain = Regexp.last_match(1).split('@')
|
2017-12-22 02:15:08 +01:00
|
|
|
mentioned_account = Account.find_remote(username, domain)
|
2016-02-25 00:17:01 +01:00
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
if mention_undeliverable?(mentioned_account)
|
2017-12-22 02:15:08 +01:00
|
|
|
begin
|
2018-05-02 22:10:57 +02:00
|
|
|
mentioned_account = resolve_account_service.call(Regexp.last_match(1))
|
2018-04-19 00:53:31 +02:00
|
|
|
rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::UnexpectedResponseError
|
2017-12-22 02:15:08 +01:00
|
|
|
mentioned_account = nil
|
|
|
|
end
|
2017-11-15 01:06:49 +01:00
|
|
|
end
|
|
|
|
|
2018-08-18 19:42:13 +02:00
|
|
|
next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended
|
2018-05-02 22:10:57 +02:00
|
|
|
|
|
|
|
mentions << mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
2016-09-04 21:07:29 +02:00
|
|
|
|
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!
|
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
mentions.each { |mention| create_notification(mention) }
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
def mention_undeliverable?(mentioned_account)
|
|
|
|
mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus? && @status.stream_entry.hidden?)
|
2017-12-22 02:15:08 +01:00
|
|
|
end
|
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
def create_notification(mention)
|
2017-08-13 00:44:41 +02:00
|
|
|
mentioned_account = mention.account
|
|
|
|
|
|
|
|
if mentioned_account.local?
|
2018-11-08 21:05:42 +01:00
|
|
|
LocalNotificationWorker.perform_async(mentioned_account.id, mention.id, mention.class.name)
|
2018-05-02 22:10:57 +02:00
|
|
|
elsif mentioned_account.ostatus? && !@status.stream_entry.hidden?
|
|
|
|
NotificationWorker.perform_async(ostatus_xml, @status.account_id, mentioned_account.id)
|
2017-09-05 20:55:25 +02:00
|
|
|
elsif mentioned_account.activitypub?
|
2018-05-02 22:10:57 +02:00
|
|
|
ActivityPub::DeliveryWorker.perform_async(activitypub_json, mention.status.account_id, mentioned_account.inbox_url)
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-02 22:10:57 +02:00
|
|
|
def ostatus_xml
|
|
|
|
@ostatus_xml ||= stream_entry_to_xml(@status.stream_entry)
|
|
|
|
end
|
|
|
|
|
|
|
|
def activitypub_json
|
2018-12-30 09:48:59 +01:00
|
|
|
return @activitypub_json if defined?(@activitypub_json)
|
|
|
|
payload = ActiveModelSerializers::SerializableResource.new(
|
2018-05-02 22:10:57 +02:00
|
|
|
@status,
|
2017-08-13 00:44:41 +02:00
|
|
|
serializer: ActivityPub::ActivitySerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
2018-12-30 09:48:59 +01:00
|
|
|
).as_json
|
|
|
|
@activitypub_json = Oj.dump(@status.distributable? ? ActivityPub::LinkedDataSignature.new(payload).sign!(@status.account) : payload)
|
2017-08-13 00:44:41 +02:00
|
|
|
end
|
|
|
|
|
2018-01-22 14:25:09 +01:00
|
|
|
def resolve_account_service
|
|
|
|
ResolveAccountService.new
|
2016-02-25 00:17:01 +01:00
|
|
|
end
|
|
|
|
end
|