2017-02-11 14:12:29 +01: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 17:28:15 +01:00
|
|
|
return if updated_account.nil? || updated_account.locked?
|
2017-02-11 14:12:29 +01:00
|
|
|
|
|
|
|
follow_request.destroy
|
|
|
|
FollowService.new.call(follow_request.account, updated_account.acct)
|
|
|
|
end
|
|
|
|
end
|