Files
discourse/lib/validators/url_validator.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
611 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UrlValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
if value.present?
valid =
begin
uri = URI.parse(value)
uri.is_a?(URI::HTTP) && !uri.host.nil? && uri.host.include?(".")
rescue URI::Error => e
2017-12-21 14:22:55 +08:00
if (e.message =~ /URI must be ascii only/)
value = UrlHelper.encode(value)
2017-12-21 14:22:55 +08:00
retry
end
nil
end
unless valid
2019-04-30 16:58:18 +10:00
record.errors.add(attribute, options[:message] || I18n.t('errors.messages.invalid'))
end
end
end
end