You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
341 B
18 lines
341 B
5 years ago
|
# 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).domain
|
||
|
else
|
||
|
uri_or_domain
|
||
|
end
|
||
|
end
|
||
|
|
||
|
DomainBlock.blocked?(domain)
|
||
|
end
|
||
|
end
|