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