This reverts commit af396fa35f589e1f759c7a3a0dad7932f1862309.
This commit is contained in:
		
							parent
							
								
									487d81fb92
								
							
						
					
					
						commit
						8f07381856
					
				@ -58,7 +58,7 @@ class FeedManager
 | 
				
			|||||||
  # @param [Boolean] update
 | 
					  # @param [Boolean] update
 | 
				
			||||||
  # @return [Boolean]
 | 
					  # @return [Boolean]
 | 
				
			||||||
  def push_to_home(account, status, update: false)
 | 
					  def push_to_home(account, status, update: false)
 | 
				
			||||||
    return false unless add_to_feed(:home, account.id, status, aggregate_reblogs: true)
 | 
					    return false unless add_to_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    trim(:home, account.id)
 | 
					    trim(:home, account.id)
 | 
				
			||||||
    PushUpdateWorker.perform_async(account.id, status.id, "timeline:#{account.id}", { 'update' => update }) if push_update_required?("timeline:#{account.id}")
 | 
					    PushUpdateWorker.perform_async(account.id, status.id, "timeline:#{account.id}", { 'update' => update }) if push_update_required?("timeline:#{account.id}")
 | 
				
			||||||
@ -71,7 +71,7 @@ class FeedManager
 | 
				
			|||||||
  # @param [Boolean] update
 | 
					  # @param [Boolean] update
 | 
				
			||||||
  # @return [Boolean]
 | 
					  # @return [Boolean]
 | 
				
			||||||
  def unpush_from_home(account, status, update: false)
 | 
					  def unpush_from_home(account, status, update: false)
 | 
				
			||||||
    return false unless remove_from_feed(:home, account.id, status, aggregate_reblogs: true)
 | 
					    return false unless remove_from_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    redis.publish("timeline:#{account.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
 | 
					    redis.publish("timeline:#{account.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
 | 
				
			||||||
    true
 | 
					    true
 | 
				
			||||||
@ -83,7 +83,7 @@ class FeedManager
 | 
				
			|||||||
  # @param [Boolean] update
 | 
					  # @param [Boolean] update
 | 
				
			||||||
  # @return [Boolean]
 | 
					  # @return [Boolean]
 | 
				
			||||||
  def push_to_list(list, status, update: false)
 | 
					  def push_to_list(list, status, update: false)
 | 
				
			||||||
    return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: true)
 | 
					    return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    trim(:list, list.id)
 | 
					    trim(:list, list.id)
 | 
				
			||||||
    PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
 | 
					    PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
 | 
				
			||||||
@ -96,7 +96,7 @@ class FeedManager
 | 
				
			|||||||
  # @param [Boolean] update
 | 
					  # @param [Boolean] update
 | 
				
			||||||
  # @return [Boolean]
 | 
					  # @return [Boolean]
 | 
				
			||||||
  def unpush_from_list(list, status, update: false)
 | 
					  def unpush_from_list(list, status, update: false)
 | 
				
			||||||
    return false unless remove_from_feed(:list, list.id, status, aggregate_reblogs: true)
 | 
					    return false unless remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    redis.publish("timeline:list:#{list.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
 | 
					    redis.publish("timeline:list:#{list.id}", Oj.dump(event: :delete, payload: status.id.to_s)) unless update
 | 
				
			||||||
    true
 | 
					    true
 | 
				
			||||||
@ -108,7 +108,7 @@ class FeedManager
 | 
				
			|||||||
  # @return [void]
 | 
					  # @return [void]
 | 
				
			||||||
  def merge_into_home(from_account, into_account)
 | 
					  def merge_into_home(from_account, into_account)
 | 
				
			||||||
    timeline_key = key(:home, into_account.id)
 | 
					    timeline_key = key(:home, into_account.id)
 | 
				
			||||||
    aggregate    = true
 | 
					    aggregate    = into_account.user&.aggregates_reblogs?
 | 
				
			||||||
    query        = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
 | 
					    query        = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
 | 
					    if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
 | 
				
			||||||
@ -134,7 +134,7 @@ class FeedManager
 | 
				
			|||||||
  # @return [void]
 | 
					  # @return [void]
 | 
				
			||||||
  def merge_into_list(from_account, list)
 | 
					  def merge_into_list(from_account, list)
 | 
				
			||||||
    timeline_key = key(:list, list.id)
 | 
					    timeline_key = key(:list, list.id)
 | 
				
			||||||
    aggregate    = true
 | 
					    aggregate    = list.account.user&.aggregates_reblogs?
 | 
				
			||||||
    query        = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
 | 
					    query        = from_account.statuses.where(visibility: [:public, :unlisted, :private]).includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
 | 
					    if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
 | 
				
			||||||
@ -163,7 +163,7 @@ class FeedManager
 | 
				
			|||||||
    timeline_status_ids = redis.zrange(timeline_key, 0, -1)
 | 
					    timeline_status_ids = redis.zrange(timeline_key, 0, -1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
 | 
					    from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
 | 
				
			||||||
      remove_from_feed(:home, into_account.id, status, aggregate_reblogs: true)
 | 
					      remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -176,7 +176,7 @@ class FeedManager
 | 
				
			|||||||
    timeline_status_ids = redis.zrange(timeline_key, 0, -1)
 | 
					    timeline_status_ids = redis.zrange(timeline_key, 0, -1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
 | 
					    from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
 | 
				
			||||||
      remove_from_feed(:list, list.id, status, aggregate_reblogs: true)
 | 
					      remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -235,7 +235,7 @@ class FeedManager
 | 
				
			|||||||
  # @return [void]
 | 
					  # @return [void]
 | 
				
			||||||
  def populate_home(account)
 | 
					  def populate_home(account)
 | 
				
			||||||
    limit        = FeedManager::MAX_ITEMS / 2
 | 
					    limit        = FeedManager::MAX_ITEMS / 2
 | 
				
			||||||
    aggregate    = true
 | 
					    aggregate    = account.user&.aggregates_reblogs?
 | 
				
			||||||
    timeline_key = key(:home, account.id)
 | 
					    timeline_key = key(:home, account.id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    account.statuses.limit(limit).each do |status|
 | 
					    account.statuses.limit(limit).each do |status|
 | 
				
			||||||
 | 
				
			|||||||
@ -10,6 +10,9 @@
 | 
				
			|||||||
  .fields-group
 | 
					  .fields-group
 | 
				
			||||||
    = f.input :setting_noindex, as: :boolean, wrapper: :with_label
 | 
					    = f.input :setting_noindex, as: :boolean, wrapper: :with_label
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  .fields-group
 | 
				
			||||||
 | 
					    = f.input :setting_aggregate_reblogs, as: :boolean, wrapper: :with_label, recommended: true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  %h4= t 'preferences.posting_defaults'
 | 
					  %h4= t 'preferences.posting_defaults'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .fields-row
 | 
					  .fields-row
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user