about summary refs log tree commit diff
path: root/app/validators/domain_validator.rb
blob: 6e4a854ff25195f40966835932446f09eca575c3 (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
24
25
# frozen_string_literal: true

class DomainValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    return if value.blank?

    domain = begin
      if options[:acct]
        value.split('@').last
      else
        value
      end
    end

    record.errors.add(attribute, I18n.t('domain_validator.invalid_domain')) unless compliant?(domain)
  end

  private

  def compliant?(value)
    Addressable::URI.new.tap { |uri| uri.host = value }
  rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
    false
  end
end