feed_manager.rb 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # frozen_string_literal: true
  2. require 'singleton'
  3. class FeedManager
  4. include Singleton
  5. MAX_ITEMS = 400
  6. def key(type, id)
  7. "feed:#{type}:#{id}"
  8. end
  9. def filter?(timeline_type, status, receiver_id)
  10. if timeline_type == :home
  11. filter_from_home?(status, receiver_id)
  12. elsif timeline_type == :mentions
  13. filter_from_mentions?(status, receiver_id)
  14. else
  15. false
  16. end
  17. end
  18. def push(timeline_type, account, status)
  19. timeline_key = key(timeline_type, account.id)
  20. if status.reblog?
  21. # If the original status is within 40 statuses from top, do not re-insert it into the feed
  22. rank = redis.zrevrank(timeline_key, status.reblog_of_id)
  23. return if !rank.nil? && rank < 40
  24. redis.zadd(timeline_key, status.id, status.reblog_of_id)
  25. else
  26. redis.zadd(timeline_key, status.id, status.id)
  27. trim(timeline_type, account.id)
  28. end
  29. PushUpdateWorker.perform_async(account.id, status.id)
  30. end
  31. def trim(type, account_id)
  32. return unless redis.zcard(key(type, account_id)) > FeedManager::MAX_ITEMS
  33. last = redis.zrevrange(key(type, account_id), FeedManager::MAX_ITEMS - 1, FeedManager::MAX_ITEMS - 1)
  34. redis.zremrangebyscore(key(type, account_id), '-inf', "(#{last.last}")
  35. end
  36. def merge_into_timeline(from_account, into_account)
  37. timeline_key = key(:home, into_account.id)
  38. query = from_account.statuses.limit(FeedManager::MAX_ITEMS / 4)
  39. if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
  40. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true)&.first&.last&.to_i || 0
  41. query = query.where('id > ?', oldest_home_score)
  42. end
  43. redis.pipelined do
  44. query.each do |status|
  45. next if status.direct_visibility? || filter?(:home, status, into_account)
  46. redis.zadd(timeline_key, status.id, status.id)
  47. end
  48. end
  49. trim(:home, into_account.id)
  50. end
  51. def unmerge_from_timeline(from_account, into_account)
  52. timeline_key = key(:home, into_account.id)
  53. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true)&.first&.last&.to_i || 0
  54. from_account.statuses.select('id').where('id > ?', oldest_home_score).reorder(nil).find_in_batches do |statuses|
  55. redis.pipelined do
  56. statuses.each do |status|
  57. redis.zrem(timeline_key, status.id)
  58. redis.zremrangebyscore(timeline_key, status.id, status.id)
  59. end
  60. end
  61. end
  62. end
  63. def clear_from_timeline(account, target_account)
  64. timeline_key = key(:home, account.id)
  65. timeline_status_ids = redis.zrange(timeline_key, 0, -1)
  66. target_status_ids = Status.where(id: timeline_status_ids, account: target_account).ids
  67. redis.zrem(timeline_key, target_status_ids) if target_status_ids.present?
  68. end
  69. private
  70. def redis
  71. Redis.current
  72. end
  73. def filter_from_home?(status, receiver_id)
  74. return true if status.reply? && status.in_reply_to_id.nil?
  75. check_for_mutes = [status.account_id]
  76. check_for_mutes.concat([status.reblog.account_id]) if status.reblog?
  77. return true if Mute.where(account_id: receiver_id, target_account_id: check_for_mutes).any?
  78. check_for_blocks = status.mentions.pluck(:account_id)
  79. check_for_blocks.concat([status.reblog.account_id]) if status.reblog?
  80. return true if Block.where(account_id: receiver_id, target_account_id: check_for_blocks).any?
  81. if status.reply? && !status.in_reply_to_account_id.nil? # Filter out if it's a reply
  82. should_filter = !Follow.where(account_id: receiver_id, target_account_id: status.in_reply_to_account_id).exists? # and I'm not following the person it's a reply to
  83. should_filter &&= !(receiver_id == status.in_reply_to_account_id) # and it's not a reply to me
  84. should_filter &&= !(status.account_id == status.in_reply_to_account_id) # and it's not a self-reply
  85. return should_filter
  86. elsif status.reblog? # Filter out a reblog
  87. should_filter = Block.where(account_id: status.reblog.account_id, target_account_id: receiver_id).exists? # or if the author of the reblogged status is blocking me
  88. should_filter ||= AccountDomainBlock.where(account_id: receiver_id, domain: status.reblog.account.domain).exists? # or the author's domain is blocked
  89. return should_filter
  90. end
  91. false
  92. end
  93. def filter_from_mentions?(status, receiver_id)
  94. check_for_blocks = [status.account_id]
  95. check_for_blocks.concat(status.mentions.pluck(:account_id))
  96. check_for_blocks.concat([status.in_reply_to_account]) if status.reply? && !status.in_reply_to_account_id.nil?
  97. should_filter = receiver_id == status.account_id # Filter if I'm mentioning myself
  98. should_filter ||= Block.where(account_id: receiver_id, target_account_id: check_for_blocks).any? # or it's from someone I blocked, in reply to someone I blocked, or mentioning someone I blocked
  99. should_filter ||= (status.account.silenced? && !Follow.where(account_id: receiver_id, target_account_id: status.account_id).exists?) # of if the account is silenced and I'm not following them
  100. should_filter
  101. end
  102. end