chinwagsocial/app/helpers/domain_control_helper.rb

26 lines
487 B
Ruby
Raw Permalink Normal View History

2019-07-09 11:27:35 +10: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?('://')
Addressable::URI.parse(uri_or_domain).host
2019-07-09 11:27:35 +10:00
else
uri_or_domain
end
end
2019-07-30 19:10:46 +10:00
if whitelist_mode?
!DomainAllow.allowed?(domain)
else
DomainBlock.blocked?(domain)
end
end
def whitelist_mode?
Rails.configuration.x.whitelist_mode
2019-07-09 11:27:35 +10:00
end
end