2017-02-12 00:12:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterRemoteFollowRequestWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-04 08:53:20 +10:00
|
|
|
sidekiq_options queue: 'pull', retry: 5
|
2017-02-12 00:12:29 +11:00
|
|
|
|
2017-05-19 05:10:41 +10:00
|
|
|
attr_reader :follow_request
|
|
|
|
|
2017-02-12 00:12:29 +11:00
|
|
|
def perform(follow_request_id)
|
2017-05-19 05:10:41 +10:00
|
|
|
@follow_request = FollowRequest.find(follow_request_id)
|
|
|
|
process_follow_service if processing_required?
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
2017-02-12 00:12:29 +11:00
|
|
|
|
2017-05-19 05:10:41 +10:00
|
|
|
private
|
2017-02-12 00:12:29 +11:00
|
|
|
|
2017-05-19 05:10:41 +10:00
|
|
|
def process_follow_service
|
2017-02-12 00:12:29 +11:00
|
|
|
follow_request.destroy
|
|
|
|
FollowService.new.call(follow_request.account, updated_account.acct)
|
2017-05-19 05:10:41 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def processing_required?
|
|
|
|
!updated_account.nil? && !updated_account.locked?
|
|
|
|
end
|
|
|
|
|
|
|
|
def updated_account
|
|
|
|
@_updated_account ||= FetchRemoteAccountService.new.call(follow_request.target_account.remote_url)
|
2017-02-12 00:12:29 +11:00
|
|
|
end
|
|
|
|
end
|