This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-02-11 05:12:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterRemoteFollowWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-03 15:53:20 -07:00
|
|
|
sidekiq_options queue: 'pull', retry: 5
|
2017-02-11 05:12:29 -08:00
|
|
|
|
|
|
|
def perform(follow_id)
|
|
|
|
follow = Follow.find(follow_id)
|
|
|
|
updated_account = FetchRemoteAccountService.new.call(follow.target_account.remote_url)
|
|
|
|
|
2017-02-12 08:28:15 -08:00
|
|
|
return if updated_account.nil? || !updated_account.locked?
|
2017-02-11 05:12:29 -08:00
|
|
|
|
|
|
|
follow.destroy
|
|
|
|
FollowService.new.call(follow.account, updated_account.acct)
|
2017-04-05 05:26:17 -07:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2017-02-11 05:12:29 -08:00
|
|
|
end
|
|
|
|
end
|