mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-05 17:31:51 +00:00
8857cabca4
* Add coverage for domain block service with silence * Get rid of warning about find_each and order * Move domain_block to attr_reader * Move optional clear_media into silence_accounts method * Use blocked_domain method to reduce passed vars * Extract blocked_domain_accounts method to find accounts on the domain * Extract media_from_blocked_domain method to find relevant attachments * Separate destruction of account images and account attachments
63 lines
1.3 KiB
Ruby
63 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class BlockDomainService < BaseService
|
|
attr_reader :domain_block
|
|
|
|
def call(domain_block)
|
|
@domain_block = domain_block
|
|
process_domain_block
|
|
end
|
|
|
|
private
|
|
|
|
def process_domain_block
|
|
if domain_block.silence?
|
|
silence_accounts!
|
|
else
|
|
suspend_accounts!
|
|
end
|
|
end
|
|
|
|
def silence_accounts!
|
|
blocked_domain_accounts.update_all(silenced: true)
|
|
clear_media! if domain_block.reject_media?
|
|
end
|
|
|
|
def clear_media!
|
|
clear_account_images
|
|
clear_account_attachments
|
|
end
|
|
|
|
def suspend_accounts!
|
|
blocked_domain_accounts.where(suspended: false).find_each do |account|
|
|
account.subscription(api_subscription_url(account.id)).unsubscribe if account.subscribed?
|
|
SuspendAccountService.new.call(account)
|
|
end
|
|
end
|
|
|
|
def clear_account_images
|
|
blocked_domain_accounts.find_each do |account|
|
|
account.avatar.destroy
|
|
account.header.destroy
|
|
end
|
|
end
|
|
|
|
def clear_account_attachments
|
|
media_from_blocked_domain.find_each do |attachment|
|
|
attachment.file.destroy
|
|
end
|
|
end
|
|
|
|
def blocked_domain
|
|
domain_block.domain
|
|
end
|
|
|
|
def blocked_domain_accounts
|
|
Account.where(domain: blocked_domain)
|
|
end
|
|
|
|
def media_from_blocked_domain
|
|
MediaAttachment.where(account: blocked_domain_accounts).reorder(nil)
|
|
end
|
|
end
|