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