Restore ReplyDistributionWorker to allow existing jobs to be processed (#9676)
This commit is contained in:
		
							parent
							
								
									6eae9c5601
								
							
						
					
					
						commit
						e29480083a
					
				
					 1 changed files with 45 additions and 0 deletions
				
			
		
							
								
								
									
										45
									
								
								app/workers/activitypub/reply_distribution_worker.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								app/workers/activitypub/reply_distribution_worker.rb
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,45 @@
 | 
			
		|||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
# Obsolete but kept around to make sure existing jobs do not fail after upgrade.
 | 
			
		||||
# Should be removed in a subsequent release.
 | 
			
		||||
 | 
			
		||||
class ActivityPub::ReplyDistributionWorker
 | 
			
		||||
  include Sidekiq::Worker
 | 
			
		||||
 | 
			
		||||
  sidekiq_options queue: 'push'
 | 
			
		||||
 | 
			
		||||
  def perform(status_id)
 | 
			
		||||
    @status  = Status.find(status_id)
 | 
			
		||||
    @account = @status.thread&.account
 | 
			
		||||
 | 
			
		||||
    return unless @account.present? && @status.distributable?
 | 
			
		||||
 | 
			
		||||
    ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
 | 
			
		||||
      [payload, @status.account_id, inbox_url]
 | 
			
		||||
    end
 | 
			
		||||
  rescue ActiveRecord::RecordNotFound
 | 
			
		||||
    true
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  private
 | 
			
		||||
 | 
			
		||||
  def inboxes
 | 
			
		||||
    @inboxes ||= @account.followers.inboxes
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def signed_payload
 | 
			
		||||
    Oj.dump(ActivityPub::LinkedDataSignature.new(unsigned_payload).sign!(@status.account))
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def unsigned_payload
 | 
			
		||||
    ActiveModelSerializers::SerializableResource.new(
 | 
			
		||||
      @status,
 | 
			
		||||
      serializer: ActivityPub::ActivitySerializer,
 | 
			
		||||
      adapter: ActivityPub::Adapter
 | 
			
		||||
    ).as_json
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def payload
 | 
			
		||||
    @payload ||= @status.distributable? ? signed_payload : Oj.dump(unsigned_payload)
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
		Loading…
	
		Reference in a new issue