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.

130 lines
4.8 KiB

7 years ago
7 years ago
  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)
  10. if timeline_type == :home
  11. filter_from_home?(status, receiver)
  12. elsif timeline_type == :mentions
  13. filter_from_mentions?(status, receiver)
  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. broadcast(account.id, event: 'update', payload: inline_render(account, 'api/v1/statuses/show', status))
  30. end
  31. def broadcast(timeline_id, options = {})
  32. options[:queued_at] = (Time.now.to_f * 1000.0).to_i
  33. ActionCable.server.broadcast("timeline:#{timeline_id}", options)
  34. end
  35. def trim(type, account_id)
  36. return unless redis.zcard(key(type, account_id)) > FeedManager::MAX_ITEMS
  37. last = redis.zrevrange(key(type, account_id), FeedManager::MAX_ITEMS - 1, FeedManager::MAX_ITEMS - 1)
  38. redis.zremrangebyscore(key(type, account_id), '-inf', "(#{last.last}")
  39. end
  40. def merge_into_timeline(from_account, into_account)
  41. timeline_key = key(:home, into_account.id)
  42. query = from_account.statuses.limit(FeedManager::MAX_ITEMS / 4)
  43. if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
  44. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true)&.first&.last&.to_i || 0
  45. query = query.where('id > ?', oldest_home_score)
  46. end
  47. redis.pipelined do
  48. query.each do |status|
  49. next if status.direct_visibility? || filter?(:home, status, into_account)
  50. redis.zadd(timeline_key, status.id, status.id)
  51. end
  52. end
  53. trim(:home, into_account.id)
  54. end
  55. def unmerge_from_timeline(from_account, into_account)
  56. timeline_key = key(:home, into_account.id)
  57. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true)&.first&.last&.to_i || 0
  58. from_account.statuses.select('id').where('id > ?', oldest_home_score).find_in_batches do |statuses|
  59. redis.pipelined do
  60. statuses.each do |status|
  61. redis.zrem(timeline_key, status.id)
  62. redis.zremrangebyscore(timeline_key, status.id, status.id)
  63. end
  64. end
  65. end
  66. end
  67. def inline_render(target_account, template, object)
  68. Rabl::Renderer.new(template, object, view_path: 'app/views', format: :json, scope: InlineRablScope.new(target_account)).render
  69. end
  70. private
  71. def redis
  72. Redis.current
  73. end
  74. def filter_from_home?(status, receiver)
  75. return true if status.reply? && status.in_reply_to_id.nil?
  76. check_for_mutes = [status.account_id]
  77. check_for_mutes.concat([status.reblog.account_id]) if status.reblog?
  78. return true if receiver.muting?(check_for_mutes)
  79. check_for_blocks = status.mentions.map(&:account_id)
  80. check_for_blocks.concat([status.reblog.account_id]) if status.reblog?
  81. return true if receiver.blocking?(check_for_blocks)
  82. if status.reply? && !status.in_reply_to_account_id.nil? # Filter out if it's a reply
  83. should_filter = !receiver.following?(status.in_reply_to_account) # and I'm not following the person it's a reply to
  84. should_filter &&= !(receiver.id == status.in_reply_to_account_id) # and it's not a reply to me
  85. should_filter &&= !(status.account_id == status.in_reply_to_account_id) # and it's not a self-reply
  86. return should_filter
  87. elsif status.reblog? # Filter out a reblog
  88. return status.reblog.account.blocking?(receiver) # or if the author of the reblogged status is blocking me
  89. end
  90. false
  91. end
  92. def filter_from_mentions?(status, receiver)
  93. check_for_blocks = [status.account_id]
  94. check_for_blocks.concat(status.mentions.select('account_id').map(&:account_id))
  95. check_for_blocks.concat([status.in_reply_to_account]) if status.reply? && !status.in_reply_to_account_id.nil?
  96. should_filter = receiver.id == status.account_id # Filter if I'm mentioning myself
  97. should_filter ||= receiver.blocking?(check_for_blocks) # or it's from someone I blocked, in reply to someone I blocked, or mentioning someone I blocked
  98. should_filter ||= (status.account.silenced? && !receiver.following?(status.account)) # of if the account is silenced and I'm not following them
  99. should_filter
  100. end
  101. end