about summary refs log blame commit diff
path: root/app/workers/thread_resolve_worker.rb
blob: a1915a16f234ceadf3cf09de98a0b9f593a98818 (plain) (tree)
1
2
3
4
5
6
7
8
9


                             
                            
 
                                         
                                                              
                                                
                                                                                                                          



                                       
                                                                  
     
# frozen_string_literal: true

class ThreadResolveWorker
  include Sidekiq::Worker
  include ExponentialBackoff

  sidekiq_options queue: 'pull', retry: 3

  def perform(child_status_id, parent_url, on_behalf_of = nil)
    child_status  = Status.find(child_status_id)
    on_behalf_of  = child_status.account.followers.local.random.first if on_behalf_of.nil? && !child_status.distributable?
    parent_status = FetchRemoteStatusService.new.call(parent_url, nil, on_behalf_of)

    return if parent_status.nil?

    child_status.thread = parent_status
    child_status.save!
  rescue ActiveRecord::RecordInvalid, ActiveRecord::RecordNotFound
    nil
  end
end