]> git.openstreetmap.org Git - rails.git/blob - app/validators/invalid_chars_validator.rb
c324fd39457bf0b7460b1e8173f395ad51d9eacd
[rails.git] / app / validators / invalid_chars_validator.rb
1 class InvalidCharsValidator < ActiveModel::EachValidator
2   INVALID_CHARS = "\x00-\x08\x0b-\x0c\x0e-\x1f\x7f\ufffe\uffff".freeze
3
4   def validate_each(record, attribute, value)
5     if value =~ /[#{INVALID_CHARS}]/
6       record.errors[attribute] << (options[:message] || "contains invalid chars")
7     end
8   end
9 end