about summary refs log tree commit diff
path: root/app/workers/thread_resolve_worker.rb
blob: e362b5b2be5df3cde77d7dc2fb383e135fb330cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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.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!
  end
end