glitch-soc/app/helpers/domain_control_helper.rb

24 lines
528 B
Ruby
Raw Normal View History

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
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
if limited_federation_mode?
2019-07-30 05:10:46 -04:00
!DomainAllow.allowed?(domain)
else
DomainBlock.blocked?(domain)
end
end
def limited_federation_mode?
Rails.configuration.x.limited_federation_mode
2019-07-08 21:27:35 -04:00
end
end