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