Решение на Четвърта задача от Елена Денева

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

Към профила на Елена Денева

Резултати

  • 3 точки от тестове
  • 0 бонус точки
  • 3 точки общо
  • 23 успешни тест(а)
  • 18 неуспешни тест(а)

Код

class Validations
DOMAIN = /([\da-zA-Z][-\da-zA-Z]{,60}[\da-zA-Z]|[\da-zA-Z])\./
TLD = /[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
EMAIL = /([a-zA-Z0-9]([-\.\+\w]{,200}))(@(#{DOMAIN})+#{TLD})/
LONGEMAIL = /(([a-zA-Z0-9][-\.\+\w]{2})[-\.\+\w]{4,196})(@(#{DOMAIN})+#{TLD})/
CODE = /(00|\+)[1-9]\d{,2}/
PHONEWITHCODE = /(#{CODE})(([-\(\) ]?\d){6,11})/
PHONE = /(0|#{CODE})(([-\(\) ]?\d){6,11})/
def self.email? value
return true if /^#{EMAIL}$/.match value
false
end
def self.hostname? value
return true if /^(#{DOMAIN})+#{TLD}$/.match value
false
end
def self.number? value
return true if /^(^(-?)[1-9][0-9]*|0)(\.[0-9]+)?$/.match value
false
end
def self.integer? value
return true if /^(-?)[1-9][0-9]*$|^0$/.match value
false
end
def self.phone? value
return true if /^#{PHONE}$/.match value
false
end
def self.ip_address? value
byte = /[1-9]?\d|1\d\d|2[0-4]\d|25[0-5]/
return true if /^#{byte}\.#{byte}\.#{byte}\.#{byte}$/.match (value)
false
end
def self.date? value
return true if /^\d{4}\-(0\d|1[012])-([0-2]\d|3[01])$/.match value
false
end
def self.time? value
return true if /^([0-1]\d|2[0-3])(:[0-5]\d){2}$/.match value
false
end
def self.date_time? value
return false unless /^(.*)[-T ](.*)$/.match value
is_correct_date = date? $1
return false unless time? $2
is_correct_date ? true : false
end
end
class PrivacyFilter
attr_accessor :text, :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 partially_preserve_email_username= value
@preserve_email_hostname = true if value
@partially_preserve_email_username = value
end
def filtered
filter_by_phone filter_by_email
end
private
def filter_by_email
text_to_filter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
return text_to_filter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
text.gsub(Validations::EMAIL,"[EMAIL]")
end
def filter_by_phone text_to_filter
f = preserve_phone_country_code ? text_to_filter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : text_to_filter
f.gsub(Validations::PHONE, "[PHONE]")
end
end

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

...F....FF.F.F...F.FF.F.F.FF.FF...F.F..FF

Failures:

  1) 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-kw0v76/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-kw0v76/spec.rb:46:in `each'
     # /tmp/d20130203-23049-kw0v76/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)>'

  2) PrivacyFilter filters more complex phone numbers
     Failure/Error: filter(text).should eq filtered
       
       expected: "[PHONE]"
            got: "+1 (555) 123-456-99"
       
       (compared using ==)
     # /tmp/d20130203-23049-kw0v76/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-kw0v76/spec.rb:84:in `each'
     # /tmp/d20130203-23049-kw0v76/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)>'

  3) 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-kw0v76/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-kw0v76/spec.rb:95:in `each'
     # /tmp/d20130203-23049-kw0v76/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)>'

  4) 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: +1 (555) 123-456-99 or [PHONE]\n      Email: [EMAIL] or [EMAIL]\n    "
       
       (compared using ==)
       
       Diff:
       @@ -1,7 +1,7 @@
        
              Contacts
        
       -      Phones: [PHONE] or [PHONE]
       +      Phones: +1 (555) 123-456-99 or [PHONE]
              Email: [EMAIL] or [EMAIL]
            
     # /tmp/d20130203-23049-kw0v76/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)>'

  5) PrivacyFilter separates preserved country code from filtered phone with a space
     Failure/Error: filter.filtered.should eq filtered
       
       expected: "Phone: 0025 [FILTERED]"
            got: "Phone: 0025 (55) 12 12255"
       
       (compared using ==)
     # /tmp/d20130203-23049-kw0v76/spec.rb:144:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-kw0v76/spec.rb:141:in `each'
     # /tmp/d20130203-23049-kw0v76/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)>'

  6) 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-kw0v76/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)>'

  7) 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-kw0v76/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-kw0v76/spec.rb:209:in `each'
     # /tmp/d20130203-23049-kw0v76/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)>'

  8) 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-kw0v76/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)>'

  9) 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-kw0v76/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)>'

  10) 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-kw0v76/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)>'

  11) Validations validates more complex numbers
     Failure/Error: Validations.number?('-0.5555550555555555').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-kw0v76/spec.rb:261: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 handles multiline strings in numbers validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-kw0v76/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)>'

  13) Validations validates more complex integers
     Failure/Error: Validations.integer?('-0').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-kw0v76/spec.rb:289: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 integer validation properly
     Failure/Error: Validations.number?("42\n24").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-kw0v76/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)>'

  15) Validations does not allow zero months or days in dates
     Failure/Error: Validations.date?('1000-00-01').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-kw0v76/spec.rb:315: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 handles newlines in date validation
     Failure/Error: Validations.date?("2012-11-19\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-kw0v76/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)>'

  17) Validations validates datetime values
     Failure/Error: Validations.date_time?('2012-00-19T23:59:00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-kw0v76/spec.rb:352: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 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-kw0v76/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.05387 seconds
41 examples, 18 failures

Failed examples:

rspec /tmp/d20130203-23049-kw0v76/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-kw0v76/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-kw0v76/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-kw0v76/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-kw0v76/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-kw0v76/spec.rb:175 # Validations does not break on emails in multiline strings
rspec /tmp/d20130203-23049-kw0v76/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-kw0v76/spec.rb:214 # Validations does not break on phones in multiline strings
rspec /tmp/d20130203-23049-kw0v76/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-kw0v76/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-kw0v76/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-kw0v76/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-kw0v76/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-kw0v76/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-kw0v76/spec.rb:314 # Validations does not allow zero months or days in dates
rspec /tmp/d20130203-23049-kw0v76/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-kw0v76/spec.rb:347 # Validations validates datetime values
rspec /tmp/d20130203-23049-kw0v76/spec.rb:359 # Validations handles newlines in time and datetime validation

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

Елена обнови решението на 24.11.2012 13:08 (преди над 11 години)

+class Validations
+ DOMAIN = /([\da-zA-Z][-\da-zA-Z]{,60}[\da-zA-Z]|[\da-zA-Z])\./
+ TLD = /[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
+ EMAIL = /([a-zA-Z0-9]([-\.\+\_a-zA-Z\d]{,200}))(@(#{DOMAIN})+#{TLD})/
+ LONGEMAIL = /(([a-zA-Z0-9][-\.\+\_a-zA-Z\d]{,194}?[-\.\+\_a-zA-z\d])[-\.\+\_a-zA-z\d]{4})(@(#{DOMAIN})+#{TLD})/
+ CODE = /(00|\+)[1-9]\d{,2}/
+ PHONEWITHCODE = /(#{CODE})(([-\(\) ]?\d){6,11})/
+ PHONE = /(0|#{CODE})(([-\(\) ]?\d){6,11})/
+
+ def self.email? value
+ return true if /^#{EMAIL}$/.match value
+ false
+ end
+
+ def self.hostname? value
+ return true if /^(#{DOMAIN})+#{TLD}$/.match value
+ false
+ end
+
+ def self.number? value
+ return true if /^(^(-?)[1-9][0-9]*|0)(\.[0-9]+)?$/.match value
+ false
+ end
+
+ def self.integer? value
+ return true if /^(-?)[1-9][0-9]*$|^0$/.match value
+ false
+ end
+
+ def self.phone? value
+ return true if /^#{PHONE}$/.match value
+ false
+ end
+
+ def self.ip_address? value
+ byte = /[1-9]?\d|1\d\d|2[0-4]\d|25[0-5]/
+ return true if /^#{byte}\.#{byte}\.#{byte}\.#{byte}$/.match (value)
+ false
+ end
+
+ def self.date? value
+ return true if /^\d{4}\-(0\d|1[012])-([0-2]\d|3[01])$/.match value
+ false
+ end
+
+ def self.time? value
+ return true if /^([0-1]\d|2[0-3])(:[0-5]\d){2}$/.match value
+ false
+ end
+
+ def self.date_time? value
+ return false unless /^(.*)[-T ](.*)$/.match value
+ isCorrectDate = date? $1
+ return false unless time? $2
+ isCorrectDate ? true : false
+ end
+end
+
+class PrivacyFilter
+ attr_accessor :text, :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 partially_preserve_email_username= value
+ @preserve_email_hostname = true if value
+ @partially_preserve_email_username = value
+ end
+
+ def filtered
+ filterByPhone filterByEmail
+ end
+
+ private
+
+ def filterByEmail
+ textTiFilter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
+ return textTiFilter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
+ text.gsub(Validations::EMAIL,"[EMAIL]")
+ end
+
+ def filterByPhone textToFilter
+ f = preserve_phone_country_code ? textToFilter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : textToFilter
+ f.gsub(Validations::PHONE, "[PHONE]")
+ end
+end

Елена обнови решението на 24.11.2012 15:04 (преди над 11 години)

class Validations
DOMAIN = /([\da-zA-Z][-\da-zA-Z]{,60}[\da-zA-Z]|[\da-zA-Z])\./
TLD = /[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
EMAIL = /([a-zA-Z0-9]([-\.\+\_a-zA-Z\d]{,200}))(@(#{DOMAIN})+#{TLD})/
LONGEMAIL = /(([a-zA-Z0-9][-\.\+\_a-zA-Z\d]{,194}?[-\.\+\_a-zA-z\d])[-\.\+\_a-zA-z\d]{4})(@(#{DOMAIN})+#{TLD})/
CODE = /(00|\+)[1-9]\d{,2}/
PHONEWITHCODE = /(#{CODE})(([-\(\) ]?\d){6,11})/
PHONE = /(0|#{CODE})(([-\(\) ]?\d){6,11})/
def self.email? value
return true if /^#{EMAIL}$/.match value
false
end
def self.hostname? value
return true if /^(#{DOMAIN})+#{TLD}$/.match value
false
end
def self.number? value
return true if /^(^(-?)[1-9][0-9]*|0)(\.[0-9]+)?$/.match value
false
end
def self.integer? value
return true if /^(-?)[1-9][0-9]*$|^0$/.match value
false
end
def self.phone? value
return true if /^#{PHONE}$/.match value
false
end
def self.ip_address? value
byte = /[1-9]?\d|1\d\d|2[0-4]\d|25[0-5]/
return true if /^#{byte}\.#{byte}\.#{byte}\.#{byte}$/.match (value)
false
end
def self.date? value
return true if /^\d{4}\-(0\d|1[012])-([0-2]\d|3[01])$/.match value
false
end
def self.time? value
return true if /^([0-1]\d|2[0-3])(:[0-5]\d){2}$/.match value
false
end
def self.date_time? value
return false unless /^(.*)[-T ](.*)$/.match value
- isCorrectDate = date? $1
+ is_correct_date = date? $1
return false unless time? $2
- isCorrectDate ? true : false
+ is_correct_date ? true : false
end
end
class PrivacyFilter
attr_accessor :text, :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 partially_preserve_email_username= value
@preserve_email_hostname = true if value
@partially_preserve_email_username = value
end
def filtered
filterByPhone filterByEmail
end
private
def filterByEmail
- textTiFilter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
- return textTiFilter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
+ text_to_filter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
+ return text_to_filter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
text.gsub(Validations::EMAIL,"[EMAIL]")
end
- def filterByPhone textToFilter
- f = preserve_phone_country_code ? textToFilter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : textToFilter
+ def filterByPhone text_to_filter
+ f = preserve_phone_country_code ? text_to_filter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : text_to_filter
f.gsub(Validations::PHONE, "[PHONE]")
end
end

Елена обнови решението на 24.11.2012 18:45 (преди над 11 години)

class Validations
DOMAIN = /([\da-zA-Z][-\da-zA-Z]{,60}[\da-zA-Z]|[\da-zA-Z])\./
TLD = /[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
EMAIL = /([a-zA-Z0-9]([-\.\+\_a-zA-Z\d]{,200}))(@(#{DOMAIN})+#{TLD})/
- LONGEMAIL = /(([a-zA-Z0-9][-\.\+\_a-zA-Z\d]{,194}?[-\.\+\_a-zA-z\d])[-\.\+\_a-zA-z\d]{4})(@(#{DOMAIN})+#{TLD})/
+ LONGEMAIL = /(([a-zA-Z0-9][-\.\+\_a-zA-Z\d]{2})[-\.\+\_a-zA-z\d]{4,196})(@(#{DOMAIN})+#{TLD})/
CODE = /(00|\+)[1-9]\d{,2}/
PHONEWITHCODE = /(#{CODE})(([-\(\) ]?\d){6,11})/
PHONE = /(0|#{CODE})(([-\(\) ]?\d){6,11})/
def self.email? value
return true if /^#{EMAIL}$/.match value
false
end
def self.hostname? value
return true if /^(#{DOMAIN})+#{TLD}$/.match value
false
end
def self.number? value
return true if /^(^(-?)[1-9][0-9]*|0)(\.[0-9]+)?$/.match value
false
end
def self.integer? value
return true if /^(-?)[1-9][0-9]*$|^0$/.match value
false
end
def self.phone? value
return true if /^#{PHONE}$/.match value
false
end
def self.ip_address? value
byte = /[1-9]?\d|1\d\d|2[0-4]\d|25[0-5]/
return true if /^#{byte}\.#{byte}\.#{byte}\.#{byte}$/.match (value)
false
end
def self.date? value
return true if /^\d{4}\-(0\d|1[012])-([0-2]\d|3[01])$/.match value
false
end
def self.time? value
return true if /^([0-1]\d|2[0-3])(:[0-5]\d){2}$/.match value
false
end
def self.date_time? value
return false unless /^(.*)[-T ](.*)$/.match value
is_correct_date = date? $1
return false unless time? $2
is_correct_date ? true : false
end
end
class PrivacyFilter
attr_accessor :text, :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 partially_preserve_email_username= value
@preserve_email_hostname = true if value
@partially_preserve_email_username = value
end
def filtered
- filterByPhone filterByEmail
+ filter_by_phone filter_by_email
end
private
- def filterByEmail
+ def filter_by_email
text_to_filter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
return text_to_filter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
text.gsub(Validations::EMAIL,"[EMAIL]")
end
- def filterByPhone text_to_filter
+ def filter_by_phone text_to_filter
f = preserve_phone_country_code ? text_to_filter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : text_to_filter
f.gsub(Validations::PHONE, "[PHONE]")
end
end

Елена обнови решението на 27.11.2012 20:09 (преди над 11 години)

class Validations
DOMAIN = /([\da-zA-Z][-\da-zA-Z]{,60}[\da-zA-Z]|[\da-zA-Z])\./
TLD = /[a-zA-Z]{2,3}(\.[a-zA-Z]{2})?/
- EMAIL = /([a-zA-Z0-9]([-\.\+\_a-zA-Z\d]{,200}))(@(#{DOMAIN})+#{TLD})/
- LONGEMAIL = /(([a-zA-Z0-9][-\.\+\_a-zA-Z\d]{2})[-\.\+\_a-zA-z\d]{4,196})(@(#{DOMAIN})+#{TLD})/
+ EMAIL = /([a-zA-Z0-9]([-\.\+\w]{,200}))(@(#{DOMAIN})+#{TLD})/
+ LONGEMAIL = /(([a-zA-Z0-9][-\.\+\w]{2})[-\.\+\w]{4,196})(@(#{DOMAIN})+#{TLD})/
CODE = /(00|\+)[1-9]\d{,2}/
PHONEWITHCODE = /(#{CODE})(([-\(\) ]?\d){6,11})/
PHONE = /(0|#{CODE})(([-\(\) ]?\d){6,11})/
def self.email? value
return true if /^#{EMAIL}$/.match value
false
end
def self.hostname? value
return true if /^(#{DOMAIN})+#{TLD}$/.match value
false
end
def self.number? value
return true if /^(^(-?)[1-9][0-9]*|0)(\.[0-9]+)?$/.match value
false
end
def self.integer? value
return true if /^(-?)[1-9][0-9]*$|^0$/.match value
false
end
def self.phone? value
return true if /^#{PHONE}$/.match value
false
end
def self.ip_address? value
byte = /[1-9]?\d|1\d\d|2[0-4]\d|25[0-5]/
return true if /^#{byte}\.#{byte}\.#{byte}\.#{byte}$/.match (value)
false
end
def self.date? value
return true if /^\d{4}\-(0\d|1[012])-([0-2]\d|3[01])$/.match value
false
end
def self.time? value
return true if /^([0-1]\d|2[0-3])(:[0-5]\d){2}$/.match value
false
end
def self.date_time? value
return false unless /^(.*)[-T ](.*)$/.match value
is_correct_date = date? $1
return false unless time? $2
is_correct_date ? true : false
end
end
class PrivacyFilter
attr_accessor :text, :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 partially_preserve_email_username= value
@preserve_email_hostname = true if value
@partially_preserve_email_username = value
end
def filtered
filter_by_phone filter_by_email
end
private
def filter_by_email
text_to_filter = partially_preserve_email_username ? text.gsub(Validations::LONGEMAIL, '\2[FILTERED]\3') : text
return text_to_filter.gsub(Validations::EMAIL, '[FILTERED]\3' ) if preserve_email_hostname
text.gsub(Validations::EMAIL,"[EMAIL]")
end
def filter_by_phone text_to_filter
f = preserve_phone_country_code ? text_to_filter.gsub(Validations::PHONEWITHCODE, '\1 [FILTERED]') : text_to_filter
f.gsub(Validations::PHONE, "[PHONE]")
end
end