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