Sha256: e39c5b5955a141c4b8a76631dfc0badb99794a6819f37642fbb0d35c910e243d

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

# == usage:
# in your model, add:
#  validates :email, :presence => true, :is_email_address => true;
# taken from http://lindsaar.net/2010/1/31/validates_rails_3_awesome_is_true
# (It's probably a fake regex but hey, it looks legit.)
class IsCuracaoPhoneValidator < ActiveModel::EachValidator
  EmailAddress = begin
    qtext = '[^\\x0d\\x22\\x5c\\x80-\\xff]'
    dtext = '[^\\x0d\\x5b-\\x5d\\x80-\\xff]'
    atom = '[^\\x00-\\x20\\x22\\x28\\x29\\x2c\\x2e\\x3a-' +
      '\\x3c\\x3e\\x40\\x5b-\\x5d\\x7f-\\xff]+'
    quoted_pair = '\\x5c[\\x00-\\x7f]'
    domain_literal = "\\x5b(?:#{dtext}|#{quoted_pair})*\\x5d"
    quoted_string = "\\x22(?:#{qtext}|#{quoted_pair})*\\x22"
    domain_ref = atom
    sub_domain = "(?:#{domain_ref}|#{domain_literal})"
    word = "(?:#{atom}|#{quoted_string})"
    domain = "#{sub_domain}(?:\\x2e#{sub_domain})*"
    local_part = "#{word}(?:\\x2e#{word})*"
    addr_spec = "#{local_part}\\x40#{domain}"
    pattern = /\A#{addr_spec}\z/
  end

  def error_message
    "is not a valid Curacao phone number."
  end

  def help_message
    "Needs to be a valid Curacao phone number."
  end

  def validate_each(record, attribute, value)
    unless value =~ EmailAddress
      record.errors[attribute] << (options[:message] || error_message )
    end
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
inline_forms-1.2.3 lib/app/validators/is_curacao_phone_validator.rb
inline_forms-1.2.2 lib/app/validators/is_curacao_phone_validator.rb
inline_forms-1.2.1 lib/app/validators/is_curacao_phone_validator.rb
inline_forms-1.2.0 lib/app/validators/is_curacao_phone_validator.rb
inline_forms-1.1.20 lib/app/validators/is_curacao_phone_validator.rb