This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-07-30 02:10:46 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnallowDomainService < BaseService
|
2020-07-12 13:11:49 -07:00
|
|
|
include DomainControlHelper
|
|
|
|
|
2019-07-30 02:10:46 -07:00
|
|
|
def call(domain_allow)
|
2020-07-12 13:11:49 -07:00
|
|
|
suspend_accounts!(domain_allow.domain) if whitelist_mode?
|
2019-07-30 02:10:46 -07:00
|
|
|
|
|
|
|
domain_allow.destroy
|
|
|
|
end
|
2020-07-12 13:11:49 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def suspend_accounts!(domain)
|
2020-07-15 12:08:19 -07:00
|
|
|
Account.where(domain: domain).in_batches.update_all(suspended_at: Time.now.utc)
|
|
|
|
AfterUnallowDomainWorker.perform_async(domain)
|
2020-07-12 13:11:49 -07:00
|
|
|
end
|
2019-07-30 02:10:46 -07:00
|
|
|
end
|