Class: GroupDestroyWorker
- Inherits:
-
Object
- Object
- GroupDestroyWorker
- Includes:
- ApplicationWorker, ExceptionBacktrace
- Defined in:
- app/workers/group_destroy_worker.rb
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from Gitlab::Loggable
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::DEFAULT_DATA_CONSISTENCY_PER_DB, WorkerAttributes::DEFAULT_DEFER_DELAY, WorkerAttributes::LOAD_BALANCED_DATA_CONSISTENCIES, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
-
#perform(group_id, user_id, params = {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument – Keep params parameter for backwards compatibility.
Methods included from Gitlab::Loggable
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(group_id, user_id, params = {}) ⇒ Object
rubocop:disable Lint/UnusedMethodArgument – Keep params parameter for backwards compatibility. Remove ‘param` in 18.0 release.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/workers/group_destroy_worker.rb', line 16 def perform(group_id, user_id, params = {}) # rubocop:disable Lint/UnusedMethodArgument -- Keep params parameter for backwards compatibility. Remove `param` in 18.0 release. Gitlab::QueryLimiting.disable!('https://gitlab.com/gitlab-org/gitlab/-/issues/464673') begin group = Group.find(group_id) rescue ActiveRecord::RecordNotFound return end user = User.find(user_id) # AdjournedGroupDeletionWorker will destroy groups days after they are scheduled for deletion. # If admin_mode is enabled, it will potentially halt group and project deletion. # The admin_mode flag allows bypassing this check (but no other policy checks), since the admin_mode # check should have been run when the job was scheduled, not whenever Sidekiq gets around to it. Gitlab::Auth::CurrentUserMode.optionally_run_in_admin_mode(user) do Groups::DestroyService.new(group, user).execute end end |