You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.0 KiB

  1. # frozen_string_literal: true
  2. class ProcessMentionsService < BaseService
  3. include StreamEntryRenderer
  4. # Scan status for mentions and fetch remote mentioned users, create
  5. # local mention pointers, send Salmon notifications to mentioned
  6. # remote users
  7. # @param [Status] status
  8. def call(status)
  9. return unless status.local?
  10. status.text = status.text.gsub(Account::MENTION_RE) do |match|
  11. begin
  12. mentioned_account = resolve_remote_account_service.call($1)
  13. rescue Goldfinger::Error, HTTP::Error
  14. mentioned_account = nil
  15. end
  16. if mentioned_account.nil?
  17. username, domain = match.first.split('@')
  18. mentioned_account = Account.find_remote(username, domain)
  19. end
  20. next match if mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus? && status.stream_entry.hidden?)
  21. mentioned_account.mentions.where(status: status).first_or_create(status: status)
  22. "@#{mentioned_account.acct}"
  23. end
  24. status.save!
  25. status.mentions.includes(:account).each do |mention|
  26. create_notification(status, mention)
  27. end
  28. end
  29. private
  30. def create_notification(status, mention)
  31. mentioned_account = mention.account
  32. if mentioned_account.local?
  33. NotifyService.new.call(mentioned_account, mention)
  34. elsif mentioned_account.ostatus? && !status.stream_entry.hidden?
  35. NotificationWorker.perform_async(stream_entry_to_xml(status.stream_entry), status.account_id, mentioned_account.id)
  36. elsif mentioned_account.activitypub?
  37. ActivityPub::DeliveryWorker.perform_async(build_json(mention.status), mention.status.account_id, mentioned_account.inbox_url)
  38. end
  39. end
  40. def build_json(status)
  41. Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
  42. status,
  43. serializer: ActivityPub::ActivitySerializer,
  44. adapter: ActivityPub::Adapter
  45. ).as_json).sign!(status.account))
  46. end
  47. def resolve_remote_account_service
  48. ResolveRemoteAccountService.new
  49. end
  50. end