WIA/lib/url_validator.rb

13 lines
No EOL
343 B
Ruby

class UrlValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
begin
uri = URI.parse(value)
resp = uri.kind_of?(URI::HTTP)
rescue URI::InvalidURIError
resp = false
end
unless resp == true
record.errors[attribute] << (options[:message] || "is not an url")
end
end
end