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.

147 lines
4.8 KiB

  1. # frozen_string_literal: true
  2. class BatchedRemoveStatusService < BaseService
  3. include StreamEntryRenderer
  4. # Delete given statuses and reblogs of them
  5. # Dispatch PuSH updates of the deleted statuses, but only local ones
  6. # Dispatch Salmon deletes, unique per domain, of the deleted statuses, but only local ones
  7. # Remove statuses from home feeds
  8. # Push delete events to streaming API for home feeds and public feeds
  9. # @param [Status] statuses A preferably batched array of statuses
  10. def call(statuses)
  11. statuses = Status.where(id: statuses.map(&:id)).includes(:account, :stream_entry).flat_map { |status| [status] + status.reblogs.includes(:account, :stream_entry).to_a }
  12. @mentions = statuses.map { |s| [s.id, s.mentions.includes(:account).to_a] }.to_h
  13. @tags = statuses.map { |s| [s.id, s.tags.pluck(:name)] }.to_h
  14. @stream_entry_batches = []
  15. @salmon_batches = []
  16. @activity_json_batches = []
  17. @json_payloads = statuses.map { |s| [s.id, Oj.dump(event: :delete, payload: s.id)] }.to_h
  18. @activity_json = {}
  19. # Ensure that rendered XML reflects destroyed state
  20. Status.where(id: statuses.map(&:id)).in_batches.destroy_all
  21. # Batch by source account
  22. statuses.group_by(&:account_id).each do |_, account_statuses|
  23. account = account_statuses.first.account
  24. unpush_from_home_timelines(account_statuses)
  25. if account.local?
  26. batch_stream_entries(account_statuses)
  27. batch_activity_json(account, account_statuses)
  28. end
  29. end
  30. # Cannot be batched
  31. statuses.each do |status|
  32. unpush_from_public_timelines(status)
  33. batch_salmon_slaps(status) if status.local?
  34. end
  35. Pubsubhubbub::DistributionWorker.push_bulk(@stream_entry_batches) { |batch| batch }
  36. NotificationWorker.push_bulk(@salmon_batches) { |batch| batch }
  37. ActivityPub::DeliveryWorker.push_bulk(@activity_json_batches) { |batch| batch }
  38. end
  39. private
  40. def batch_stream_entries(statuses)
  41. stream_entry_ids = statuses.map { |s| s.stream_entry.id }
  42. stream_entry_ids.each_slice(100) do |batch_of_stream_entry_ids|
  43. @stream_entry_batches << [batch_of_stream_entry_ids]
  44. end
  45. end
  46. def batch_activity_json(account, statuses)
  47. account.followers.inboxes.each do |inbox_url|
  48. statuses.each do |status|
  49. @activity_json_batches << [build_json(status), account.id, inbox_url]
  50. end
  51. end
  52. statuses.each do |status|
  53. other_recipients = (status.mentions + status.reblogs).map(&:account).reject(&:local?).select(&:activitypub?).uniq(&:id)
  54. other_recipients.each do |target_account|
  55. @activity_json_batches << [build_json(status), account.id, target_account.inbox_url]
  56. end
  57. end
  58. end
  59. def unpush_from_home_timelines(statuses)
  60. account = statuses.first.account
  61. recipients = account.followers.local.pluck(:id)
  62. recipients << account.id if account.local?
  63. recipients.each do |follower_id|
  64. unpush(follower_id, statuses)
  65. end
  66. end
  67. def unpush_from_public_timelines(status)
  68. payload = @json_payloads[status.id]
  69. redis.pipelined do
  70. redis.publish('timeline:public', payload)
  71. redis.publish('timeline:public:local', payload) if status.local?
  72. @tags[status.id].each do |hashtag|
  73. redis.publish("timeline:hashtag:#{hashtag}", payload)
  74. redis.publish("timeline:hashtag:#{hashtag}:local", payload) if status.local?
  75. end
  76. end
  77. end
  78. def batch_salmon_slaps(status)
  79. return if @mentions[status.id].empty?
  80. payload = stream_entry_to_xml(status.stream_entry.reload)
  81. recipients = @mentions[status.id].map(&:account).reject(&:local?).select(&:ostatus?).uniq(&:domain).map(&:id)
  82. recipients.each do |recipient_id|
  83. @salmon_batches << [payload, status.account_id, recipient_id]
  84. end
  85. end
  86. def unpush(follower_id, statuses)
  87. key = FeedManager.instance.key(:home, follower_id)
  88. originals = statuses.reject(&:reblog?)
  89. reblogs = statuses.select(&:reblog?)
  90. # Quickly remove all originals
  91. redis.pipelined do
  92. originals.each do |status|
  93. redis.zremrangebyscore(key, status.id, status.id)
  94. redis.publish("timeline:#{follower_id}", @json_payloads[status.id])
  95. end
  96. end
  97. # For reblogs, re-add original status to feed, unless the reblog
  98. # was not in the feed in the first place
  99. reblogs.each do |status|
  100. redis.zadd(key, status.reblog_of_id, status.reblog_of_id) unless redis.zscore(key, status.reblog_of_id).nil?
  101. redis.publish("timeline:#{follower_id}", @json_payloads[status.id])
  102. end
  103. end
  104. def redis
  105. Redis.current
  106. end
  107. def build_json(status)
  108. return @activity_json[status.id] if @activity_json.key?(status.id)
  109. @activity_json[status.id] = ActiveModelSerializers::SerializableResource.new(
  110. status,
  111. serializer: ActivityPub::DeleteSerializer,
  112. adapter: ActivityPub::Adapter
  113. ).to_json
  114. end
  115. end