mastodon/app/helpers/domain_control_helper.rb

24 lines
528 B
Ruby
Raw Normal View History

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