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