This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-08-08 14:04:19 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DomainValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
return if value.blank?
|
|
|
|
|
2019-08-29 17:19:17 -07:00
|
|
|
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)
|
2019-08-08 14:04:19 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def compliant?(value)
|
|
|
|
Addressable::URI.new.tap { |uri| uri.host = value }
|
2019-08-29 17:19:17 -07:00
|
|
|
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
|
2019-08-08 14:04:19 -07:00
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|