This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-02-11 14:12:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterRemoteFollowRequestWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-04 00:53:20 +02:00
|
|
|
sidekiq_options queue: 'pull', retry: 5
|
2017-02-11 14:12:29 +01:00
|
|
|
|
|
|
|
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)
|
2017-04-05 14:26:17 +02:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2017-02-11 14:12:29 +01:00
|
|
|
end
|
|
|
|
end
|