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