You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
718 B

  1. # frozen_string_literal: true
  2. class RefollowWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', retry: false
  5. def perform(target_account_id)
  6. target_account = Account.find(target_account_id)
  7. return unless target_account.protocol == :activitypub
  8. target_account.followers.where(domain: nil).reorder(nil).find_each do |follower|
  9. # Locally unfollow remote account
  10. follower.unfollow!(target_account)
  11. # Schedule re-follow
  12. begin
  13. FollowService.new.call(follower, target_account)
  14. rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound, Mastodon::UnexpectedResponseError, HTTP::Error, OpenSSL::SSL::SSLError
  15. next
  16. end
  17. end
  18. end
  19. end