mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 22:04:58 +00:00
Minor fixes to add Rails 6 support to Discourse, we now will boot with RAILS_MASTER=1, all specs pass Only one tiny deprecation left Largest change was the way ActiveModel:Errors changed interface a bit but there is a simple backwards compat way of working it
23 lines
574 B
Ruby
23 lines
574 B
Ruby
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
|
|
if (e.message =~ /URI must be ascii only/)
|
|
value = URI.encode(value)
|
|
retry
|
|
end
|
|
|
|
nil
|
|
end
|
|
|
|
unless valid
|
|
record.errors.add(attribute, options[:message] || I18n.t('errors.messages.invalid'))
|
|
end
|
|
end
|
|
end
|
|
end
|