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.3 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. # @param [Hash] options
  9. # @return [Status]
  10. def call(account, reblogged_status, options = {})
  11. reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
  12. authorize_with account, reblogged_status, :reblog?
  13. reblog = account.statuses.find_by(reblog: reblogged_status)
  14. return reblog unless reblog.nil?
  15. visibility = options[:visibility] || account.user&.setting_default_privacy
  16. visibility = reblogged_status.visibility if reblogged_status.hidden?
  17. reblog = account.statuses.create!(reblog: reblogged_status, text: '', visibility: visibility)
  18. DistributionWorker.perform_async(reblog.id)
  19. Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
  20. ActivityPub::DistributionWorker.perform_async(reblog.id)
  21. create_notification(reblog)
  22. bump_potential_friendship(account, reblog)
  23. reblog
  24. end
  25. private
  26. def create_notification(reblog)
  27. reblogged_status = reblog.reblog
  28. if reblogged_status.account.local?
  29. LocalNotificationWorker.perform_async(reblogged_status.account_id, reblog.id, reblog.class.name)
  30. elsif reblogged_status.account.ostatus?
  31. NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), reblog.account_id, reblogged_status.account_id)
  32. elsif reblogged_status.account.activitypub? && !reblogged_status.account.following?(reblog.account)
  33. ActivityPub::DeliveryWorker.perform_async(build_json(reblog), reblog.account_id, reblogged_status.account.inbox_url)
  34. end
  35. end
  36. def bump_potential_friendship(account, reblog)
  37. ActivityTracker.increment('activity:interactions')
  38. return if account.following?(reblog.reblog.account_id)
  39. PotentialFriendshipTracker.record(account.id, reblog.reblog.account_id, :reblog)
  40. end
  41. def build_json(reblog)
  42. Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
  43. reblog,
  44. serializer: ActivityPub::ActivitySerializer,
  45. adapter: ActivityPub::Adapter
  46. ).as_json).sign!(reblog.account))
  47. end
  48. end