2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-09 23:48:43 +11:00
|
|
|
class BlockDomainService < BaseService
|
2017-04-04 02:55:06 +10:00
|
|
|
def call(domain_block)
|
|
|
|
if domain_block.silence?
|
|
|
|
Account.where(domain: domain_block.domain).update_all(silenced: true)
|
2017-01-24 03:38:38 +11:00
|
|
|
else
|
2017-04-04 02:55:06 +10:00
|
|
|
Account.where(domain: domain_block.domain).find_each do |account|
|
2017-01-24 03:38:38 +11:00
|
|
|
account.subscription(api_subscription_url(account.id)).unsubscribe if account.subscribed?
|
|
|
|
SuspendAccountService.new.call(account)
|
2016-10-09 23:48:43 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|