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