discourse/app/services/user/bulk_destroy.rb
Loïc Guitaut a633007bae
DEV: Replace Ruby numbered parameters by it where applicable (#37810)
Now that we moved to Ruby 3.4, we can use `it` instead of `_1`.
2026-02-13 13:59:07 +01:00

46 lines
1.1 KiB
Ruby

# frozen_string_literal: true
class User::BulkDestroy
include Service::Base
params do
attribute :user_ids, :array, compact_blank: true
attribute :block_ip_and_email, :boolean, default: false
validates :user_ids, length: { minimum: 1, maximum: 100 }
end
model :users
policy :can_delete_users
step :delete
private
def fetch_users(params:)
# this order clause ensures we retrieve the users in the same order as the
# IDs in the param. we do this to ensure the users are deleted in the same
# order as they're selected in the UI
User
.where(id: params.user_ids)
.order(DB.sql_fragment("array_position(ARRAY[?], users.id)", params.user_ids))
.to_a
end
def can_delete_users(guardian:, users:)
users.all? { guardian.can_delete_user?(it) }
end
def delete(users:, guardian:, params:)
users
.each
.with_index(1) do |user, position|
User::Action::DestroyAndPublish.call(
user:,
position:,
guardian:,
total_size: users.size,
block_ip_and_email: params.block_ip_and_email,
)
end
end
end