about summary refs log tree commit diff
path: root/app/helpers/domain_control_helper.rb
blob: cd51a8b7e59baf0331233ab68a916b9d178477ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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).host
      else
        uri_or_domain
      end
    end

    domain != Rails.configuration.x.local_domain && (!DomainAllow.allowed?(domain) || DomainBlock.blocked?(domain))
  rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
    nil
  end

  def whitelist_mode?
    !(Rails.env.development? || Rails.env.test?)
  end
end