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 AfterRemoteFollowRequestWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options retry: 5
|
|
|
|
|
|
|
|
def perform(follow_request_id)
|
|
|
|
follow_request = FollowRequest.find(follow_request_id)
|
|
|
|
updated_account = FetchRemoteAccountService.new.call(follow_request.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_request.destroy
|
|
|
|
FollowService.new.call(follow_request.account, updated_account.acct)
|
|
|
|
end
|
|
|
|
end
|