discourse/app/services/user/bulk_destroy.rb
Loïc Guitaut 695533b99c
DEV: Add a compact_blank option to the ActiveModel array type (#35476)
Instead of having to clean an array in a contract using a
`before_validation` block, for example, we can now pass `compact_blank:
true` to the attribute, like this:

```ruby
attribute :ids, :array, compact_blank: true
```
2025-10-20 11:33:36 +02:00

46 lines
1.1 KiB
Ruby
Vendored

# 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?(_1) }
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