Files
mastodon/app/services/precompute_feed_service.rb
Claire b627aee45f Merge commit 'ca41a95872545502dbc6bae6f7237ee20acc38ee' into glitch-soc/merge-upstream
Conflicts:
- `spec/helpers/theme_helper_spec.rb`:
  Conflict due to glitch-soc's different theming system.
  Adapted upstream changes to glitch-soc's theming system.
2025-05-28 18:41:47 +02:00

25 lines
737 B
Ruby

# frozen_string_literal: true
class PrecomputeFeedService < BaseService
include Redisable
def call(account, skip_filled_timelines: false)
@skip_filled_timelines = skip_filled_timelines
FeedManager.instance.populate_home(account) unless skip_timeline?(:home, account.id)
FeedManager.instance.populate_direct_feed(account) unless skip_timeline?(:direct, account.id)
account.owned_lists.each do |list|
FeedManager.instance.populate_list(list) unless skip_timeline?(:list, list.id)
end
ensure
HomeFeed.new(account).regeneration_finished!
end
private
def skip_timeline?(type, id)
@skip_filled_timelines && FeedManager.instance.timeline_size(type, id) * 2 > FeedManager::MAX_ITEMS
end
end