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.

62 lines
2.1 KiB

  1. # frozen_string_literal: true
  2. class ReblogService < BaseService
  3. include Authorization
  4. include StreamEntryRenderer
  5. # Reblog a status and notify its remote author
  6. # @param [Account] account Account to reblog from
  7. # @param [Status] reblogged_status Status to be reblogged
  8. # @return [Status]
  9. def call(account, reblogged_status)
  10. reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
  11. authorize_with account, reblogged_status, :reblog?
  12. reblog = account.statuses.find_by(reblog: reblogged_status)
  13. return reblog unless reblog.nil?
  14. reblog = account.statuses.create!(reblog: reblogged_status, text: '')
  15. DistributionWorker.perform_async(reblog.id)
  16. unless reblogged_status.local_only?
  17. Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
  18. ActivityPub::DistributionWorker.perform_async(reblog.id)
  19. end
  20. create_notification(reblog)
  21. bump_potential_friendship(account, reblog)
  22. reblog
  23. end
  24. private
  25. def create_notification(reblog)
  26. reblogged_status = reblog.reblog
  27. if reblogged_status.account.local?
  28. NotifyService.new.call(reblogged_status.account, reblog)
  29. elsif reblogged_status.account.ostatus?
  30. NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), reblog.account_id, reblogged_status.account_id)
  31. elsif reblogged_status.account.activitypub? && !reblogged_status.account.following?(reblog.account)
  32. ActivityPub::DeliveryWorker.perform_async(build_json(reblog), reblog.account_id, reblogged_status.account.inbox_url)
  33. end
  34. end
  35. def bump_potential_friendship(account, reblog)
  36. ActivityTracker.increment('activity:interactions')
  37. return if account.following?(reblog.reblog.account_id)
  38. PotentialFriendshipTracker.record(account.id, reblog.reblog.account_id, :reblog)
  39. end
  40. def build_json(reblog)
  41. Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
  42. reblog,
  43. serializer: ActivityPub::ActivitySerializer,
  44. adapter: ActivityPub::Adapter
  45. ).as_json).sign!(reblog.account))
  46. end
  47. end