Решение на Четвърта задача от Ивайло Христов

Обратно към всички решения

Към профила на Ивайло Христов

Резултати

  • 2 точки от тестове
  • 0 бонус точки
  • 2 точки общо
  • 16 успешни тест(а)
  • 25 неуспешни тест(а)

Код

class PrivacyFilter
attr_accessor :preserve_phone_country_code,
:preserve_email_hostname,
:partially_preserve_email_username
def initialize(text)
@text = text
@preserve_phone_country_code = false
@preserve_email_hostname = false
@partially_preserve_email_username = false
end
def filtered
filter_phone_numbers filter_emails(@text)
end
def filter_emails(text)
text.gsub(/([a-z0-9._-]+)(@[a-z0-9.-]+\.[a-z]{2,4})/i) do |match|
if @partially_preserve_email_username and $1.length < 6 then '[FILTERED]' + $2
elsif @partially_preserve_email_username then $1[0, 3] + '[FILTERED]' + $2
else (@preserve_email_hostname && '[FILTERED]' + $2) || '[EMAIL]' end
end
end
def filter_phone_numbers(text)
text.gsub(/(\+\d\d\d?)?(\s*)(\d\d*)/) do |match|
if $1 and @preserve_phone_country_code
String($1) + ' [FILTERED]' # for consistency ...
else
String($2) + '[PHONE]'
end
end
end
end
module Validations
def self.email?(value)
parts = value.split('@')
result = parts[0] && /^[a-z0-9][+_\.a-z0-9-]{0,200}$/im === parts[0] &&
parts[1] && Validations.hostname?(parts[1])
!!result
end
def self.hostname?(value)
/^([a-z0-9][-a-z0-9]{1,61}\.?)\g<1>*?\.([a-z]{2,3}\.?([a-z]{2})?)$/im === value
end
def self.phone?(value)
/^(0|(00|\+)[1-9]\d{0,2})(\d[-\s]{0,2}){5,10}$/m === value
end
def self.ip_address?(value)
/^(25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d).\g<1>.\g<1>.\g<1>$/m === value
end
def self.number?(value)
/^\-?(:?0|\d\d*)(\.\d\d*)?$/m === value
end
def self.integer?(value)
/^\d\d*$/m === value
end
def self.date?(value)
/^[1-9]\d{0,3}-(1[0-2]|[1-9])-(3[0-1]|[1-2]\d|[1-9])$/m === value
end
def self.time?(value)
/^(2[0-3]|1\d|\d):(\d\d):\g<2>$/m === value
end
def self.date_time?(value)
parts = value.split(/T|\s/)
result = parts[0] && Validations.date?(parts[0]) &&
parts[1] && Validations.time?(parts[1])
!!result
end
end

Лог от изпълнението

..FFF...FFFFFF...F.FFFF.F.FF.FF.FF..FFF.F

Failures:

  1) PrivacyFilter obfuscates more complicated emails
     Failure/Error: filter(text).should eq filtered
       
       expected: "[EMAIL]"
            got: "some.user+[EMAIL]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:40:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:39:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:39:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  2) PrivacyFilter does not filter invalid emails
     Failure/Error: filter(text_with_invalid_emails).should eq text_with_invalid_emails
       
       expected: "Contact me here: _invalid@email.com"
            got: "Contact me here: [EMAIL]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:46:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:46:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  3) PrivacyFilter allows email hostname to be preserved
     Failure/Error: filter_email_usernames('some12-+3@exa.mple.com').should eq '[FILTERED]@exa.mple.com'
       
       expected: "[FILTERED]@exa.mple.com"
            got: "some[PHONE]-+[FILTERED]@exa.mple.com"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:61:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  4) PrivacyFilter filters more complex phone numbers
     Failure/Error: filter(text).should eq filtered
       
       expected: "[PHONE]"
            got: "+[PHONE] [PHONE] [PHONE]-[PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:84:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:84:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  5) PrivacyFilter does not filter invalid phone numbers
     Failure/Error: filter(text).should eq filtered
       
       expected: "Reach me at: 0885123"
            got: "Reach me at: [PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:95:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:95:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  6) PrivacyFilter preserves whitespace around phones
     Failure/Error: filter(' +359881212-12-1 2 or...').should eq ' [PHONE] or...'
       
       expected: " [PHONE] or..."
            got: " [PHONE]-[PHONE]-[PHONE] [PHONE] or..."
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:101:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  7) PrivacyFilter filters more than one phone or email
     Failure/Error: filter(text).should eq filtered
       
       expected: "\n      Contacts\n\n      Phones: [PHONE] or [PHONE]\n      Email: [EMAIL] or [EMAIL]\n    "
            got: "\n      Contacts\n\n      Phones: +[PHONE] ([PHONE]) [PHONE]-[PHONE]-[PHONE] or [PHONE]\n      Email: [EMAIL] or [EMAIL]\n    "
       
       (compared using ==)
       
       Diff:
       @@ -1,7 +1,7 @@
        
              Contacts
        
       -      Phones: [PHONE] or [PHONE]
       +      Phones: +[PHONE] ([PHONE]) [PHONE]-[PHONE]-[PHONE] or [PHONE]
              Email: [EMAIL] or [EMAIL]
            
     # /tmp/d20130203-23049-6m0lmh/spec.rb:119:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  8) PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
     Failure/Error: filter.filtered.should eq filtered
       
       expected: "Phone: +359 [FILTERED]"
            got: "Phone: +359 [FILTERED] [PHONE]-[PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:132:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:129:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:129:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  9) PrivacyFilter separates preserved country code from filtered phone with a space
     Failure/Error: filter.filtered.should eq filtered
       
       expected: "Phone: 0025 [FILTERED]"
            got: "Phone: [PHONE] ([PHONE]) [PHONE] [PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-6m0lmh/spec.rb:144:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:141:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:141:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  10) Validations does not break on emails in multiline strings
     Failure/Error: Validations.email?("foo@bar.com\nwat?").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:176:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  11) Validations can validate more complex phone numbers
     Failure/Error: Validations.phone?(phone).should be(valid)
       
       expected #<TrueClass:2> => true
            got #<FalseClass:0> => false
       
       Compared using equal?, which compares object identity,
       but expected and actual are not the same object. Use
       'actual.should eq(expected)' if you don't care about
       object identity in this example.
     # /tmp/d20130203-23049-6m0lmh/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:209:in `each'
     # /tmp/d20130203-23049-6m0lmh/spec.rb:209:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  12) Validations does not break on phones in multiline strings
     Failure/Error: Validations.phone?("0885123123\nwat?").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:215:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  13) Validations validates hostnames
     Failure/Error: Validations.hostname?('1.2.3.4.xip.io').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-6m0lmh/spec.rb:222:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  14) Validations handles multiline strings in hostname validation properly
     Failure/Error: Validations.hostname?("foo.com\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:233:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  15) Validations handles multiline strings in IP validation properly
     Failure/Error: Validations.ip_address?("8.8.8.8\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:245:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  16) Validations validates more complex numbers
     Failure/Error: Validations.number?('00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:263:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  17) Validations handles multiline strings in numbers validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:274:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  18) Validations validates more complex integers
     Failure/Error: Validations.integer?('00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:286:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  19) Validations handles multiline strings in integer validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:295:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  20) Validations allows zero years in date validation
     Failure/Error: Validations.date?('0000-01-01').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-6m0lmh/spec.rb:307:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  21) Validations allows huge years in date validation
     Failure/Error: Validations.date?('9999-01-01').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-6m0lmh/spec.rb:311:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  22) Validations handles newlines in date validation
     Failure/Error: Validations.date?("2012-11-19\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:327:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  23) Validations validates times
     Failure/Error: Validations.time?('00:00:00').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-6m0lmh/spec.rb:334:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  24) Validations does not allow invalid hours, minutes or seconds
     Failure/Error: Validations.time?('12:69:00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:341:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

  25) Validations handles newlines in time and datetime validation
     Failure/Error: Validations.time?("12:01:01\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-6m0lmh/spec.rb:360:in `block (2 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
     # ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'

Finished in 0.051 seconds
41 examples, 25 failures

Failed examples:

rspec /tmp/d20130203-23049-6m0lmh/spec.rb:30 # PrivacyFilter obfuscates more complicated emails
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:59 # PrivacyFilter allows email hostname to be preserved
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:100 # PrivacyFilter preserves whitespace around phones
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:175 # Validations does not break on emails in multiline strings
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:214 # Validations does not break on phones in multiline strings
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:218 # Validations validates hostnames
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:306 # Validations allows zero years in date validation
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:310 # Validations allows huge years in date validation
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:331 # Validations validates times
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:339 # Validations does not allow invalid hours, minutes or seconds
rspec /tmp/d20130203-23049-6m0lmh/spec.rb:359 # Validations handles newlines in time and datetime validation

История (2 версии и 0 коментара)

Ивайло обнови решението на 28.11.2012 10:57 (преди над 11 години)

+
+class PrivacyFilter
+ attr_accessor :preserve_phone_country_code,
+ :preserve_email_hostname,
+ :partially_preserve_email_username
+
+ def initialize(text)
+ @text = text
+
+ @preserve_phone_country_code = false
+ @preserve_email_hostname = false
+ @partially_preserve_email_username = false
+ end
+
+ def filtered
+ filter_phone_numbers filter_emails(@text)
+ end
+
+ def filter_emails(text)
+ text.gsub(/([a-z0-9._-]+)(@[a-z0-9.-]+\.[a-z]{2,4})/i) do |match|
+ if @partially_preserve_email_username and $1.length < 6 then '[FILTERED]' + $2
+ elsif @partially_preserve_email_username then $1[0, 3] + '[FILTERED]' + $2
+ else (@preserve_email_hostname && '[FILTERED]' + $2) || '[EMAIL]' end
+ end
+ end
+
+ def filter_phone_numbers(text)
+ text.gsub(/(\+\d\d\d?)?(\s*)(\d\d*)/) do |match|
+ if $1 and @preserve_phone_country_code
+ String($1) + ' [FILTERED]' # for consistency ...
+ else
+ String($2) + '[PHONE]'
+ end
+ end
+ end
+end
+
+module Validations
+ def self.email?(value)
+ parts = value.split('@')
+
+ result = parts[0] && parts[0].match(/^[a-z0-9][+_\.a-z0-9-]{0,200}$/im) &&
+ parts[1] && Validations.hostname?(parts[1])
+
+ !!result
+ end
+
+ def self.hostname?(value)
+ !!value.match(/^([a-z0-9][-a-z0-9]{1,61}\.?)\g<1>*?\.([a-z]{2,3}\.?([a-z]{2})?)$/im)
+ end
+
+ def self.phone?(value)
+ !!value.match(/^(0|(00|\+)[1-9]\d{0,2})(\d[-\s]{0,2}){5,10}$/m)
+ end
+
+ def self.ip_address?(value)
+ !!value.match(/^(25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d).\g<1>.\g<1>.\g<1>$/m)
+ end
+
+ def self.number?(value)
+ !!value.match(/^\-?(:?0|\d\d*)(\.\d\d*)?$/m)
+ end
+
+ def self.integer?(value)
+ !!value.match(/^\d\d*$/m)
+ end
+
+ def self.date?(value)
+ !!value.match(/^[1-9]\d{0,3}-(1[0-2]|[1-9])-(3[0-1]|[1-2]\d|[1-9])$/m)
+ end
+
+ def self.time?(value)
+ !!value.match(/^(2[0-3]|1\d|\d):(\d\d):\g<2>$/m)
+ end
+
+ def self.date_time?(value)
+ parts = value.split(/T|\s/)
+
+ result = parts[0] && Validations.date?(parts[0]) &&
+ parts[1] && Validations.time?(parts[1])
+
+ !!result
+ end
+end

Ивайло обнови решението на 28.11.2012 11:02 (преди над 11 години)

class PrivacyFilter
attr_accessor :preserve_phone_country_code,
:preserve_email_hostname,
:partially_preserve_email_username
def initialize(text)
@text = text
@preserve_phone_country_code = false
@preserve_email_hostname = false
@partially_preserve_email_username = false
end
def filtered
filter_phone_numbers filter_emails(@text)
end
def filter_emails(text)
text.gsub(/([a-z0-9._-]+)(@[a-z0-9.-]+\.[a-z]{2,4})/i) do |match|
if @partially_preserve_email_username and $1.length < 6 then '[FILTERED]' + $2
elsif @partially_preserve_email_username then $1[0, 3] + '[FILTERED]' + $2
else (@preserve_email_hostname && '[FILTERED]' + $2) || '[EMAIL]' end
end
end
def filter_phone_numbers(text)
text.gsub(/(\+\d\d\d?)?(\s*)(\d\d*)/) do |match|
if $1 and @preserve_phone_country_code
String($1) + ' [FILTERED]' # for consistency ...
else
String($2) + '[PHONE]'
end
end
end
end
module Validations
def self.email?(value)
parts = value.split('@')
- result = parts[0] && parts[0].match(/^[a-z0-9][+_\.a-z0-9-]{0,200}$/im) &&
+ result = parts[0] && /^[a-z0-9][+_\.a-z0-9-]{0,200}$/im === parts[0] &&
parts[1] && Validations.hostname?(parts[1])
!!result
end
def self.hostname?(value)
- !!value.match(/^([a-z0-9][-a-z0-9]{1,61}\.?)\g<1>*?\.([a-z]{2,3}\.?([a-z]{2})?)$/im)
+ /^([a-z0-9][-a-z0-9]{1,61}\.?)\g<1>*?\.([a-z]{2,3}\.?([a-z]{2})?)$/im === value
end
def self.phone?(value)
- !!value.match(/^(0|(00|\+)[1-9]\d{0,2})(\d[-\s]{0,2}){5,10}$/m)
+ /^(0|(00|\+)[1-9]\d{0,2})(\d[-\s]{0,2}){5,10}$/m === value
end
def self.ip_address?(value)
- !!value.match(/^(25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d).\g<1>.\g<1>.\g<1>$/m)
+ /^(25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d).\g<1>.\g<1>.\g<1>$/m === value
end
def self.number?(value)
- !!value.match(/^\-?(:?0|\d\d*)(\.\d\d*)?$/m)
+ /^\-?(:?0|\d\d*)(\.\d\d*)?$/m === value
end
def self.integer?(value)
- !!value.match(/^\d\d*$/m)
+ /^\d\d*$/m === value
end
def self.date?(value)
- !!value.match(/^[1-9]\d{0,3}-(1[0-2]|[1-9])-(3[0-1]|[1-2]\d|[1-9])$/m)
+ /^[1-9]\d{0,3}-(1[0-2]|[1-9])-(3[0-1]|[1-2]\d|[1-9])$/m === value
end
def self.time?(value)
- !!value.match(/^(2[0-3]|1\d|\d):(\d\d):\g<2>$/m)
+ /^(2[0-3]|1\d|\d):(\d\d):\g<2>$/m === value
end
def self.date_time?(value)
parts = value.split(/T|\s/)
result = parts[0] && Validations.date?(parts[0]) &&
parts[1] && Validations.time?(parts[1])
!!result
end
end