2020-09-15 05:37:58 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountDeletionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2023-10-03 01:09:00 -07:00
|
|
|
sidekiq_options queue: 'pull', lock: :until_executed, lock_ttl: 1.week.to_i
|
2020-09-15 05:37:58 -07:00
|
|
|
|
2020-11-13 13:17:04 -08:00
|
|
|
def perform(account_id, options = {})
|
2023-07-04 09:36:24 -07:00
|
|
|
account = Account.find(account_id)
|
|
|
|
return unless account.suspended?
|
|
|
|
|
2020-11-13 13:17:04 -08:00
|
|
|
reserve_username = options.with_indifferent_access.fetch(:reserve_username, true)
|
2020-11-19 08:39:47 -08:00
|
|
|
skip_activitypub = options.with_indifferent_access.fetch(:skip_activitypub, false)
|
2023-07-04 09:36:24 -07:00
|
|
|
DeleteAccountService.new.call(account, reserve_username: reserve_username, skip_activitypub: skip_activitypub, reserve_email: false)
|
2020-09-15 05:37:58 -07:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|