1
0

feed_manager.rb 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. # frozen_string_literal: true
  2. require 'singleton'
  3. class FeedManager
  4. include Singleton
  5. include Redisable
  6. # Maximum number of items stored in a single feed
  7. MAX_ITEMS = 800
  8. # Number of items in the feed since last reblog of status
  9. # before the new reblog will be inserted. Must be <= MAX_ITEMS
  10. # or the tracking sets will grow forever
  11. REBLOG_FALLOFF = 40
  12. # Execute block for every active account
  13. # @yield [Account]
  14. # @return [void]
  15. def with_active_accounts(&block)
  16. Account.joins(:user).where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago).find_each(&block)
  17. end
  18. # Redis key of a feed
  19. # @param [Symbol] type
  20. # @param [Integer] id
  21. # @param [Symbol] subtype
  22. # @return [String]
  23. def key(type, id, subtype = nil)
  24. return "feed:#{type}:#{id}" unless subtype
  25. "feed:#{type}:#{id}:#{subtype}"
  26. end
  27. # Check if the status should not be added to a feed
  28. # @param [Symbol] timeline_type
  29. # @param [Status] status
  30. # @param [Account|List] receiver
  31. # @return [Boolean]
  32. def filter?(timeline_type, status, receiver)
  33. case timeline_type
  34. when :home
  35. filter_from_home?(status, receiver.id, build_crutches(receiver.id, [status]))
  36. when :list
  37. filter_from_list?(status, receiver) || filter_from_home?(status, receiver.account_id, build_crutches(receiver.account_id, [status]))
  38. when :mentions
  39. filter_from_mentions?(status, receiver.id)
  40. when :tags
  41. filter_from_tags?(status, receiver.id, build_crutches(receiver.id, [status]))
  42. else
  43. false
  44. end
  45. end
  46. # Add a status to a home feed and send a streaming API update
  47. # @param [Account] account
  48. # @param [Status] status
  49. # @param [Boolean] update
  50. # @return [Boolean]
  51. def push_to_home(account, status, update: false)
  52. return false unless add_to_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
  53. trim(:home, account.id)
  54. PushUpdateWorker.perform_async(account.id, status.id, "timeline:#{account.id}", { 'update' => update }) if push_update_required?("timeline:#{account.id}")
  55. true
  56. end
  57. # Remove a status from a home feed and send a streaming API update
  58. # @param [Account] account
  59. # @param [Status] status
  60. # @param [Boolean] update
  61. # @return [Boolean]
  62. def unpush_from_home(account, status, update: false)
  63. return false unless remove_from_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
  64. redis.publish("timeline:#{account.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
  65. true
  66. end
  67. # Add a status to a list feed and send a streaming API update
  68. # @param [List] list
  69. # @param [Status] status
  70. # @param [Boolean] update
  71. # @return [Boolean]
  72. def push_to_list(list, status, update: false)
  73. return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
  74. trim(:list, list.id)
  75. PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
  76. true
  77. end
  78. # Remove a status from a list feed and send a streaming API update
  79. # @param [List] list
  80. # @param [Status] status
  81. # @param [Boolean] update
  82. # @return [Boolean]
  83. def unpush_from_list(list, status, update: false)
  84. return false unless remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
  85. redis.publish("timeline:list:#{list.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
  86. true
  87. end
  88. # Fill a home feed with an account's statuses
  89. # @param [Account] from_account
  90. # @param [Account] into_account
  91. # @return [void]
  92. def merge_into_home(from_account, into_account)
  93. timeline_key = key(:home, into_account.id)
  94. aggregate = into_account.user&.aggregates_reblogs?
  95. query = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
  96. if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
  97. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
  98. query = query.where('id > ?', oldest_home_score)
  99. end
  100. statuses = query.to_a
  101. crutches = build_crutches(into_account.id, statuses)
  102. statuses.each do |status|
  103. next if filter_from_home?(status, into_account.id, crutches)
  104. add_to_feed(:home, into_account.id, status, aggregate_reblogs: aggregate)
  105. end
  106. trim(:home, into_account.id)
  107. end
  108. # Fill a list feed with an account's statuses
  109. # @param [Account] from_account
  110. # @param [List] list
  111. # @return [void]
  112. def merge_into_list(from_account, list)
  113. timeline_key = key(:list, list.id)
  114. aggregate = list.account.user&.aggregates_reblogs?
  115. query = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
  116. if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
  117. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
  118. query = query.where('id > ?', oldest_home_score)
  119. end
  120. statuses = query.to_a
  121. crutches = build_crutches(list.account_id, statuses)
  122. statuses.each do |status|
  123. next if filter_from_home?(status, list.account_id, crutches) || filter_from_list?(status, list)
  124. add_to_feed(:list, list.id, status, aggregate_reblogs: aggregate)
  125. end
  126. trim(:list, list.id)
  127. end
  128. # Remove an account's statuses from a home feed
  129. # @param [Account] from_account
  130. # @param [Account] into_account
  131. # @return [void]
  132. def unmerge_from_home(from_account, into_account)
  133. timeline_key = key(:home, into_account.id)
  134. timeline_status_ids = redis.zrange(timeline_key, 0, -1)
  135. from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
  136. remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
  137. end
  138. end
  139. # Remove an account's statuses from a list feed
  140. # @param [Account] from_account
  141. # @param [List] list
  142. # @return [void]
  143. def unmerge_from_list(from_account, list)
  144. timeline_key = key(:list, list.id)
  145. timeline_status_ids = redis.zrange(timeline_key, 0, -1)
  146. from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
  147. remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
  148. end
  149. end
  150. # Clear all statuses from or mentioning target_account from a home feed
  151. # @param [Account] account
  152. # @param [Account] target_account
  153. # @return [void]
  154. def clear_from_home(account, target_account)
  155. timeline_key = key(:home, account.id)
  156. timeline_status_ids = redis.zrange(timeline_key, 0, -1)
  157. statuses = Status.where(id: timeline_status_ids).select(:id, :reblog_of_id, :account_id).to_a
  158. reblogged_ids = Status.where(id: statuses.map(&:reblog_of_id).compact, account: target_account).pluck(:id)
  159. with_mentions_ids = Mention.active.where(status_id: statuses.flat_map { |s| [s.id, s.reblog_of_id] }.compact, account: target_account).pluck(:status_id)
  160. target_statuses = statuses.select do |status|
  161. status.account_id == target_account.id || reblogged_ids.include?(status.reblog_of_id) || with_mentions_ids.include?(status.id) || with_mentions_ids.include?(status.reblog_of_id)
  162. end
  163. target_statuses.each do |status|
  164. unpush_from_home(account, status)
  165. end
  166. end
  167. # Clear all statuses from or mentioning target_account from a list feed
  168. # @param [List] list
  169. # @param [Account] target_account
  170. # @return [void]
  171. def clear_from_list(list, target_account)
  172. timeline_key = key(:list, list.id)
  173. timeline_status_ids = redis.zrange(timeline_key, 0, -1)
  174. statuses = Status.where(id: timeline_status_ids).select(:id, :reblog_of_id, :account_id).to_a
  175. reblogged_ids = Status.where(id: statuses.map(&:reblog_of_id).compact, account: target_account).pluck(:id)
  176. with_mentions_ids = Mention.active.where(status_id: statuses.flat_map { |s| [s.id, s.reblog_of_id] }.compact, account: target_account).pluck(:status_id)
  177. target_statuses = statuses.select do |status|
  178. status.account_id == target_account.id || reblogged_ids.include?(status.reblog_of_id) || with_mentions_ids.include?(status.id) || with_mentions_ids.include?(status.reblog_of_id)
  179. end
  180. target_statuses.each do |status|
  181. unpush_from_list(list, status)
  182. end
  183. end
  184. # Clear all statuses from or mentioning target_account from an account's lists
  185. # @param [Account] account
  186. # @param [Account] target_account
  187. # @return [void]
  188. def clear_from_lists(account, target_account)
  189. List.where(account: account).each do |list|
  190. clear_from_list(list, target_account)
  191. end
  192. end
  193. # Populate home feed of account from scratch
  194. # @param [Account] account
  195. # @return [void]
  196. def populate_home(account)
  197. limit = FeedManager::MAX_ITEMS / 2
  198. aggregate = account.user&.aggregates_reblogs?
  199. timeline_key = key(:home, account.id)
  200. account.statuses.limit(limit).each do |status|
  201. add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
  202. end
  203. account.following.includes(:account_stat).find_each do |target_account|
  204. if redis.zcard(timeline_key) >= limit
  205. oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
  206. last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at)
  207. # If the feed is full and this account has not posted more recently
  208. # than the last item on the feed, then we can skip the whole account
  209. # because none of its statuses would stay on the feed anyway
  210. next if last_status_score < oldest_home_score
  211. end
  212. statuses = target_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, :account, reblog: :account).limit(limit)
  213. crutches = build_crutches(account.id, statuses)
  214. statuses.each do |status|
  215. next if filter_from_home?(status, account.id, crutches)
  216. add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
  217. end
  218. trim(:home, account.id)
  219. end
  220. end
  221. # Completely clear multiple feeds at once
  222. # @param [Symbol] type
  223. # @param [Array<Integer>] ids
  224. # @return [void]
  225. def clean_feeds!(type, ids)
  226. reblogged_id_sets = {}
  227. redis.pipelined do
  228. ids.each do |feed_id|
  229. redis.del(key(type, feed_id))
  230. reblog_key = key(type, feed_id, 'reblogs')
  231. # We collect a future for this: we don't block while getting
  232. # it, but we can iterate over it later.
  233. reblogged_id_sets[feed_id] = redis.zrange(reblog_key, 0, -1)
  234. redis.del(reblog_key)
  235. end
  236. end
  237. # Remove all of the reblog tracking keys we just removed the
  238. # references to.
  239. redis.pipelined do
  240. reblogged_id_sets.each do |feed_id, future|
  241. future.value.each do |reblogged_id|
  242. reblog_set_key = key(type, feed_id, "reblogs:#{reblogged_id}")
  243. redis.del(reblog_set_key)
  244. end
  245. end
  246. end
  247. end
  248. private
  249. # Trim a feed to maximum size by removing older items
  250. # @param [Symbol] type
  251. # @param [Integer] timeline_id
  252. # @return [void]
  253. def trim(type, timeline_id)
  254. timeline_key = key(type, timeline_id)
  255. reblog_key = key(type, timeline_id, 'reblogs')
  256. # Remove any items past the MAX_ITEMS'th entry in our feed
  257. redis.zremrangebyrank(timeline_key, 0, -(FeedManager::MAX_ITEMS + 1))
  258. # Get the score of the REBLOG_FALLOFF'th item in our feed, and stop
  259. # tracking anything after it for deduplication purposes.
  260. falloff_rank = FeedManager::REBLOG_FALLOFF
  261. falloff_range = redis.zrevrange(timeline_key, falloff_rank, falloff_rank, with_scores: true)
  262. falloff_score = falloff_range&.first&.last&.to_i
  263. return if falloff_score.nil?
  264. # Get any reblogs we might have to clean up after.
  265. redis.zrangebyscore(reblog_key, 0, falloff_score).each do |reblogged_id|
  266. # Remove it from the set of reblogs we're tracking *first* to avoid races.
  267. redis.zrem(reblog_key, reblogged_id)
  268. # Just drop any set we might have created to track additional reblogs.
  269. # This means that if this reblog is deleted, we won't automatically insert
  270. # another reblog, but also that any new reblog can be inserted into the
  271. # feed.
  272. redis.del(key(type, timeline_id, "reblogs:#{reblogged_id}"))
  273. end
  274. end
  275. # Check if there is a streaming API client connected
  276. # for the given feed
  277. # @param [String] timeline_key
  278. # @return [Boolean]
  279. def push_update_required?(timeline_key)
  280. redis.exists?("subscribed:#{timeline_key}")
  281. end
  282. # Check if the account is blocking or muting any of the given accounts
  283. # @param [Integer] receiver_id
  284. # @param [Array<Integer>] account_ids
  285. # @param [Symbol] context
  286. def blocks_or_mutes?(receiver_id, account_ids, context)
  287. Block.where(account_id: receiver_id, target_account_id: account_ids).any? ||
  288. (context == :home ? Mute.where(account_id: receiver_id, target_account_id: account_ids).any? : Mute.where(account_id: receiver_id, target_account_id: account_ids, hide_notifications: true).any?)
  289. end
  290. # Check if status should not be added to the home feed
  291. # @param [Status] status
  292. # @param [Integer] receiver_id
  293. # @param [Hash] crutches
  294. # @return [Boolean]
  295. def filter_from_home?(status, receiver_id, crutches)
  296. return false if receiver_id == status.account_id
  297. return true if status.reply? && (status.in_reply_to_id.nil? || status.in_reply_to_account_id.nil?)
  298. return true if crutches[:languages][status.account_id].present? && status.language.present? && !crutches[:languages][status.account_id].include?(status.language)
  299. check_for_blocks = crutches[:active_mentions][status.id] || []
  300. check_for_blocks.concat([status.account_id])
  301. if status.reblog?
  302. check_for_blocks.concat([status.reblog.account_id])
  303. check_for_blocks.concat(crutches[:active_mentions][status.reblog_of_id] || [])
  304. end
  305. return true if check_for_blocks.any? { |target_account_id| crutches[:blocking][target_account_id] || crutches[:muting][target_account_id] }
  306. return true if crutches[:blocked_by][status.account_id]
  307. if status.reply? && !status.in_reply_to_account_id.nil? # Filter out if it's a reply
  308. should_filter = !crutches[:following][status.in_reply_to_account_id] # and I'm not following the person it's a reply to
  309. should_filter &&= receiver_id != status.in_reply_to_account_id # and it's not a reply to me
  310. should_filter &&= status.account_id != status.in_reply_to_account_id # and it's not a self-reply
  311. return !!should_filter
  312. elsif status.reblog? # Filter out a reblog
  313. should_filter = crutches[:hiding_reblogs][status.account_id] # if the reblogger's reblogs are suppressed
  314. should_filter ||= crutches[:blocked_by][status.reblog.account_id] # or if the author of the reblogged status is blocking me
  315. should_filter ||= crutches[:domain_blocking][status.reblog.account.domain] # or the author's domain is blocked
  316. return !!should_filter
  317. end
  318. false
  319. end
  320. # Check if status should not be added to the mentions feed
  321. # @see NotifyService
  322. # @param [Status] status
  323. # @param [Integer] receiver_id
  324. # @return [Boolean]
  325. def filter_from_mentions?(status, receiver_id)
  326. return true if receiver_id == status.account_id
  327. # This filter is called from NotifyService, but already after the sender of
  328. # the notification has been checked for mute/block. Therefore, it's not
  329. # necessary to check the author of the toot for mute/block again
  330. check_for_blocks = status.active_mentions.pluck(:account_id)
  331. check_for_blocks.concat([status.in_reply_to_account]) if status.reply? && !status.in_reply_to_account_id.nil?
  332. should_filter = blocks_or_mutes?(receiver_id, check_for_blocks, :mentions) # Filter if it's from someone I blocked, in reply to someone I blocked, or mentioning someone I blocked (or muted)
  333. 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
  334. should_filter
  335. end
  336. # Check if status should not be added to the list feed
  337. # @param [Status] status
  338. # @param [List] list
  339. # @return [Boolean]
  340. def filter_from_list?(status, list)
  341. if status.reply? && status.in_reply_to_account_id != status.account_id
  342. should_filter = status.in_reply_to_account_id != list.account_id
  343. should_filter &&= !list.show_followed?
  344. should_filter &&= !(list.show_list? && ListAccount.where(list_id: list.id, account_id: status.in_reply_to_account_id).exists?)
  345. return !!should_filter
  346. end
  347. false
  348. end
  349. # Check if a status should not be added to the home feed when it comes
  350. # from a followed hashtag
  351. # @param [Status] status
  352. # @param [Integer] receiver_id
  353. # @param [Hash] crutches
  354. # @return [Boolean]
  355. def filter_from_tags?(status, receiver_id, crutches)
  356. receiver_id == status.account_id || ((crutches[:active_mentions][status.id] || []) + [status.account_id]).any? { |target_account_id| crutches[:blocking][target_account_id] || crutches[:muting][target_account_id] } || crutches[:blocked_by][status.account_id] || crutches[:domain_blocking][status.account.domain]
  357. end
  358. # Adds a status to an account's feed, returning true if a status was
  359. # added, and false if it was not added to the feed. Note that this is
  360. # an internal helper: callers must call trim or push updates if
  361. # either action is appropriate.
  362. # @param [Symbol] timeline_type
  363. # @param [Integer] account_id
  364. # @param [Status] status
  365. # @param [Boolean] aggregate_reblogs
  366. # @return [Boolean]
  367. def add_to_feed(timeline_type, account_id, status, aggregate_reblogs: true)
  368. timeline_key = key(timeline_type, account_id)
  369. reblog_key = key(timeline_type, account_id, 'reblogs')
  370. if status.reblog? && (aggregate_reblogs.nil? || aggregate_reblogs)
  371. # If the original status or a reblog of it is within
  372. # REBLOG_FALLOFF statuses from the top, do not re-insert it into
  373. # the feed
  374. rank = redis.zrevrank(timeline_key, status.reblog_of_id)
  375. return false if !rank.nil? && rank < FeedManager::REBLOG_FALLOFF
  376. # The ordered set at `reblog_key` holds statuses which have a reblog
  377. # in the top `REBLOG_FALLOFF` statuses of the timeline
  378. if redis.zadd(reblog_key, status.id, status.reblog_of_id, nx: true)
  379. # This is not something we've already seen reblogged, so we
  380. # can just add it to the feed (and note that we're reblogging it).
  381. redis.zadd(timeline_key, status.id, status.id)
  382. else
  383. # Another reblog of the same status was already in the
  384. # REBLOG_FALLOFF most recent statuses, so we note that this
  385. # is an "extra" reblog, by storing it in reblog_set_key.
  386. reblog_set_key = key(timeline_type, account_id, "reblogs:#{status.reblog_of_id}")
  387. redis.sadd(reblog_set_key, status.id)
  388. return false
  389. end
  390. else
  391. # A reblog may reach earlier than the original status because of the
  392. # delay of the worker delivering the original status, the late addition
  393. # by merging timelines, and other reasons.
  394. # If such a reblog already exists, just do not re-insert it into the feed.
  395. return false unless redis.zscore(reblog_key, status.id).nil?
  396. redis.zadd(timeline_key, status.id, status.id)
  397. end
  398. true
  399. end
  400. # Removes an individual status from a feed, correctly handling cases
  401. # with reblogs, and returning true if a status was removed. As with
  402. # `add_to_feed`, this does not trigger push updates, so callers must
  403. # do so if appropriate.
  404. # @param [Symbol] timeline_type
  405. # @param [Integer] account_id
  406. # @param [Status] status
  407. # @param [Boolean] aggregate_reblogs
  408. # @return [Boolean]
  409. def remove_from_feed(timeline_type, account_id, status, aggregate_reblogs: true)
  410. timeline_key = key(timeline_type, account_id)
  411. reblog_key = key(timeline_type, account_id, 'reblogs')
  412. if status.reblog? && (aggregate_reblogs.nil? || aggregate_reblogs)
  413. # 1. If the reblogging status is not in the feed, stop.
  414. status_rank = redis.zrevrank(timeline_key, status.id)
  415. return false if status_rank.nil?
  416. # 2. Remove reblog from set of this status's reblogs.
  417. reblog_set_key = key(timeline_type, account_id, "reblogs:#{status.reblog_of_id}")
  418. redis.srem(reblog_set_key, status.id)
  419. redis.zrem(reblog_key, status.reblog_of_id)
  420. # 3. Re-insert another reblog or original into the feed if one
  421. # remains in the set. We could pick a random element, but this
  422. # set should generally be small, and it seems ideal to show the
  423. # oldest potential such reblog.
  424. other_reblog = redis.smembers(reblog_set_key).map(&:to_i).min
  425. redis.zadd(timeline_key, other_reblog, other_reblog) if other_reblog
  426. redis.zadd(reblog_key, other_reblog, status.reblog_of_id) if other_reblog
  427. # 4. Remove the reblogging status from the feed (as normal)
  428. # (outside conditional)
  429. else
  430. # If the original is getting deleted, no use for reblog references
  431. redis.del(key(timeline_type, account_id, "reblogs:#{status.id}"))
  432. redis.zrem(reblog_key, status.id)
  433. end
  434. redis.zrem(timeline_key, status.id)
  435. end
  436. # Pre-fetch various objects and relationships for given statuses that
  437. # are going to be checked by the filtering methods
  438. # @param [Integer] receiver_id
  439. # @param [Array<Status>] statuses
  440. # @return [Hash]
  441. def build_crutches(receiver_id, statuses)
  442. crutches = {}
  443. crutches[:active_mentions] = Mention.active.where(status_id: statuses.flat_map { |s| [s.id, s.reblog_of_id] }.compact).pluck(:status_id, :account_id).each_with_object({}) { |(id, account_id), mapping| (mapping[id] ||= []).push(account_id) }
  444. check_for_blocks = statuses.flat_map do |s|
  445. arr = crutches[:active_mentions][s.id] || []
  446. arr.concat([s.account_id])
  447. if s.reblog?
  448. arr.concat([s.reblog.account_id])
  449. arr.concat(crutches[:active_mentions][s.reblog_of_id] || [])
  450. end
  451. arr
  452. end
  453. crutches[:following] = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:in_reply_to_account_id).compact).pluck(:target_account_id).index_with(true)
  454. crutches[:languages] = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:account_id)).pluck(:target_account_id, :languages).to_h
  455. crutches[:hiding_reblogs] = Follow.where(account_id: receiver_id, target_account_id: statuses.map { |s| s.account_id if s.reblog? }.compact, show_reblogs: false).pluck(:target_account_id).index_with(true)
  456. crutches[:blocking] = Block.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
  457. crutches[:muting] = Mute.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
  458. crutches[:domain_blocking] = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.flat_map { |s| [s.account.domain, s.reblog&.account&.domain] }.compact).pluck(:domain).index_with(true)
  459. crutches[:blocked_by] = Block.where(target_account_id: receiver_id, account_id: statuses.map { |s| [s.account_id, s.reblog&.account_id] }.flatten.compact).pluck(:account_id).index_with(true)
  460. crutches
  461. end
  462. end