summaryrefslogtreecommitdiff
path: root/app/validators/color_validator.rb
blob: 571d0007aa2d111bf6bd4416584e5493f19d78f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ColorValidator
#
# Custom validator for web color codes. It requires the leading hash symbol and
# will accept RGB triplet or hexadecimal formats.
#
# Example:
#
#   class User < ActiveRecord::Base
#     validates :background_color, allow_blank: true, color: true
#   end
#
class ColorValidator < ActiveModel::EachValidator
  PATTERN = /\A\#[0-9A-Fa-f]{3}{1,2}+\Z/.freeze

  def validate_each(record, attribute, value)
    unless value =~ PATTERN
      record.errors.add(attribute, "must be a valid color code")
    end
  end
end