unfollow_follow_worker.rb 951 B

1234567891011121314151617181920212223
  1. # frozen_string_literal: true
  2. class UnfollowFollowWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull'
  5. def perform(follower_account_id, old_target_account_id, new_target_account_id, bypass_locked = false)
  6. follower_account = Account.find(follower_account_id)
  7. old_target_account = Account.find(old_target_account_id)
  8. new_target_account = Account.find(new_target_account_id)
  9. follow = follower_account.active_relationships.find_by(target_account: old_target_account)
  10. reblogs = follow&.show_reblogs?
  11. notify = follow&.notify?
  12. languages = follow&.languages
  13. FollowService.new.call(follower_account, new_target_account, reblogs: reblogs, notify: notify, languages: languages, bypass_locked: bypass_locked, bypass_limit: true)
  14. UnfollowService.new.call(follower_account, old_target_account, skip_unmerge: true)
  15. rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
  16. true
  17. end
  18. end