2019-07-09 03:27:35 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DomainControlHelper
|
|
|
|
def domain_not_allowed?(uri_or_domain)
|
2023-07-13 11:11:55 +02:00
|
|
|
return false if uri_or_domain.blank?
|
2019-07-09 03:27:35 +02:00
|
|
|
|
2023-02-18 23:09:40 +01:00
|
|
|
domain = if uri_or_domain.include?('://')
|
|
|
|
Addressable::URI.parse(uri_or_domain).host
|
|
|
|
else
|
|
|
|
uri_or_domain
|
|
|
|
end
|
2019-07-09 03:27:35 +02:00
|
|
|
|
2019-07-30 11:10:46 +02:00
|
|
|
if whitelist_mode?
|
|
|
|
!DomainAllow.allowed?(domain)
|
|
|
|
else
|
|
|
|
DomainBlock.blocked?(domain)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def whitelist_mode?
|
|
|
|
Rails.configuration.x.whitelist_mode
|
2019-07-09 03:27:35 +02:00
|
|
|
end
|
|
|
|
end
|