debian-mirror-gitlab/app/workers/delete_user_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
782 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class DeleteUserWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2016-06-02 11:05:42 +05:30
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2023-05-27 22:25:52 +05:30
feature_category :user_management
2020-06-23 00:09:42 +05:30
loggable_arguments 2
2019-12-21 20:55:43 +05:30
2016-06-02 11:05:42 +05:30
def perform(current_user_id, delete_user_id, options = {})
2023-07-09 08:55:56 +05:30
delete_user = User.find_by_id(delete_user_id)
return unless delete_user.present?
return if delete_user.banned? && ::Feature.enabled?(:delay_delete_own_user)
current_user = User.find_by_id(current_user_id)
return unless current_user.present?
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
Users::DestroyService.new(current_user).execute(delete_user, options.symbolize_keys)
rescue Gitlab::Access::AccessDeniedError => e
2020-06-23 00:09:42 +05:30
Gitlab::AppLogger.warn("User could not be destroyed: #{e}")
2016-06-02 11:05:42 +05:30
end
end