]> git.openstreetmap.org Git - rails.git/blob - app/validators/invalid_url_chars_validator.rb
77a2fc58c0eb65f87fa69edb53583b3a34e7a443
[rails.git] / app / validators / invalid_url_chars_validator.rb
1 class InvalidUrlCharsValidator < ActiveModel::EachValidator
2   INVALID_URL_CHARS = "/;.,?%#".freeze
3
4   def validate_each(record, attribute, value)
5     if value =~ /[#{INVALID_URL_CHARS}]/
6       record.errors[attribute] << (options[:message] || I18n.t("validations.invalid chars", :invalid_chars => INVALID_URL_CHARS))
7     end
8   end
9 end