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-08 18:27:35 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DomainControlHelper
|
|
|
|
def domain_not_allowed?(uri_or_domain)
|
|
|
|
return if uri_or_domain.blank?
|
|
|
|
|
|
|
|
domain = begin
|
|
|
|
if uri_or_domain.include?('://')
|
2019-11-21 02:35:39 -08:00
|
|
|
Addressable::URI.parse(uri_or_domain).host
|
2019-07-08 18:27:35 -07:00
|
|
|
else
|
|
|
|
uri_or_domain
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-30 02:10:46 -07:00
|
|
|
if whitelist_mode?
|
|
|
|
!DomainAllow.allowed?(domain)
|
|
|
|
else
|
|
|
|
DomainBlock.blocked?(domain)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def whitelist_mode?
|
|
|
|
Rails.configuration.x.whitelist_mode
|
2019-07-08 18:27:35 -07:00
|
|
|
end
|
|
|
|
end
|