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

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

Към профила на Чанита Иванова

Резултати

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

Код

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 replace_phone(array)
array[0] = array[1] if !array[0]
return array[0].concat(' [FILTERED]') if(preserve_phone_country_code and array[0].length>1)
'[PHONE]'
end
def filter_phone
text.gsub /((0)((( |-|\(|\)){0,2}[1-9])(( |-|\(|\)){0,2}[0-9]){5,11}))|
((((\b00)|\+)[1-9]([0-9]){0,2})((( |-|\(|\)){0,2}[0-9]){6,11}))/x do
replace_phone([$2,$9])
end
end
def replace_email(array)
return '[FILTERED]'.concat(array[1]) if(preserve_email_hostname and
(!partially_preserve_email_username or(partially_preserve_email_username and array[0].length<6)))
return array[0][0..2].concat('[FILTERED]').concat(array[1]) if(partially_preserve_email_username)
'[EMAIL]'
end
def filter_email
text.gsub /((\w([\w_\+\.-]){,200})
(@((\w|(\w([\w-]){,61}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))/x do
replace_email([$2,$4])
end
end
def filtered
@text = filter_email
@text = filter_phone
@text
end
end
class Validations
def self.email?(value)
return true if value =~ /(^\w([\w_\+\.-]){,200})
(@((\w|(\w([\w-]){,61}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x
false
end
def self.phone?(value)
return true if value =~ /^((0)((( |-|\(|\)){0,2}[1-9])(( |-|\(|\)){0,2}[0-9]){5,11}))|
((((\b00)|\+)[1-9]([0-9]){0,2})((( |-|\(|\)){0,2}[0-9]){6,11}))$/x
false
end
def self.hostname?(value)
return true if value =~ /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/
false
end
def self.ip_address?(value)
ip= /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
return true if( ip and ($1.to_i>=0 and $1.to_i<=255) and ($2.to_i>=0 and $2.to_i<=255) and
($3.to_i>=0 and $3.to_i<=255) and ($4.to_i>=0 and $4.to_i<=255))
false
end
def self.number?(value)
return true if value =~ /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/
false
end
def self.integer?(value)
return true if value =~ /^-{0,1}(0|([1-9]([0-9])*))$/
false
end
def self.date?(value)
return true if value =~ /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/ and ($1.to_i>=1 and $1.to_i<=12) and
($2.to_i>=1 and $2.to_i<=31)
false
end
def self.time?(value)
return true if value =~ /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/ and($1.to_i>=0 and $1.to_i<=23) and
($2.to_i>=0 and $2.to_i<=59) and($3.to_i>=0 and $3.to_i<=59)
false
end
def self.date_time?(value)
date_and_time = /(^[0-9]{4}-[0-9]{2}-[0-9]{2})( |T)([0-9]{2}:[0-9]{2}:[0-9]{2})$/.match(value)
return true if(date_and_time and date?($1) and time?($3))
false
end
end

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

...F..FFFFFFFF..FF.FF.F.F.FF..F.....F...F

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-1hgn6sk/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:46:in `each'
     # /tmp/d20130203-23049-1hgn6sk/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 whole email usernames if too short
     Failure/Error: partially_filter_email_usernames('me@example.com').should eq '[FILTERED]@example.com'
       
       expected: "[FILTERED]@example.com"
            got: "me[FILTERED]@example.com"
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:69: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 brake with unicode
     Failure/Error: partially_filter_email_usernames('За връзка: me@example.com').should eq 'За връзка: [FILTERED]@example.com'
       
       expected: "За връзка: [FILTERED]@example.com"
            got: "За връзка: me[FILTERED]@example.com"
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:73: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: "+1 555 123-456"
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:84:in `each'
     # /tmp/d20130203-23049-1hgn6sk/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-1hgn6sk/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:95:in `each'
     # /tmp/d20130203-23049-1hgn6sk/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] 2 or..."
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/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: +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-1hgn6sk/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 2 555-1212"
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:132:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:129:in `each'
     # /tmp/d20130203-23049-1hgn6sk/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: 0025 (55) 12 12255"
       
       (compared using ==)
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:144:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:141:in `each'
     # /tmp/d20130203-23049-1hgn6sk/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 can validate more complex emails
     Failure/Error: Validations.email?(email).should be(valid)
       
       expected #<FalseClass:0> => false
            got #<TrueClass:2> => true
       
       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-1hgn6sk/spec.rb:171:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:170:in `each'
     # /tmp/d20130203-23049-1hgn6sk/spec.rb:170: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 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-1hgn6sk/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)>'

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

  13) 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-1hgn6sk/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)>'

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

  19) 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-1hgn6sk/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)>'

  20) 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-1hgn6sk/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.04968 seconds
41 examples, 20 failures

Failed examples:

rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:68 # PrivacyFilter filters whole email usernames if too short
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:72 # PrivacyFilter does not brake with unicode
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:100 # PrivacyFilter preserves whitespace around phones
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:160 # Validations can validate more complex emails
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:175 # Validations does not break on emails in multiline strings
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:214 # Validations does not break on phones in multiline strings
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-1hgn6sk/spec.rb:359 # Validations handles newlines in time and datetime validation

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

Чанита обнови решението на 24.11.2012 00:09 (преди над 11 години)

+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 replace_phone(array)
+ return array[0].concat(' [FILTERED]').concat(array[2]) if(preserve_phone_country_code and array[0].length>1)
+ '[PHONE]'.concat(array[2])
+ end
+
+ def filter_phone
+ text.gsub /((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})(\s|$)/ do
+ replace_phone([$1,$7,$10])
+ end
+ end
+
+ def replace_email(array)
+ return '[FILTERED]'.concat(array[1]).concat(array[2]) if(preserve_email_hostname and
+ (!partially_preserve_email_username or(partially_preserve_email_username and array[0].length<6)))
+ return array[0][0..2].concat('[FILTERED]').concat(array[1]).concat(array[2]) if(partially_preserve_email_username)
+ '[EMAIL]'.concat(array[2])
+ end
+
+ def filter_email
+ text.gsub /((\w([\w_+\.-]){,200})
+ (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))(\s|$)/x do
+ replace_email([$2,$4,$12])
+ end
+ end
+
+ def filtered
+ @text = filter_phone
+ @text = filter_email
+ @text
+ end
+
+end
+
+class Validations
+
+ def self.email?(value)
+ return true if /(^\w([\w_+\.-]){,200})
+ (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x.match(value)
+ false
+ end
+
+ def self.phone?(value)
+ return true if /^((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})$/.match(value)
+ false
+ end
+
+ def self.hostname?(value)
+ return true if /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/.match(value)
+ false
+ end
+
+ def self.ip_address?(value)
+ ip= /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
+ return true if( ip and ($1.to_i>=0 and $1.to_i<=255) and ($2.to_i>=0 and $2.to_i<=255) and
+ ($3.to_i>=0 and $3.to_i<=255) and ($4.to_i>=0 and $4.to_i<=255))
+ false
+ end
+ def self.number?(value)
+ return true if /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/.match(value)
+ false
+ end
+ def self.integer?(value)
+ return true if /^-{0,1}(0|([1-9]([0-9])*))$/.match(value)
+ false
+ end
+
+ def self.date?(value)
+ return true if /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/.match(value) and ($1.to_i>=1 and $1.to_i<=12) and
+ ($2.to_i>=1 and $2.to_i<=31)
+ false
+ end
+
+ def self.time?(value)
+ return true if /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/.match(value) and($1.to_i>=0 and $1.to_i<=23) and
+ ($2.to_i>=0 and $2.to_i<=59) and($3.to_i>=0 and $3.to_i<=59)
+ false
+ end
+
+ def self.date_time?(value)
+ date_and_time = /(^[0-9]{4}-[0-9]{2}-[0-9]{2})( |T)([0-9]{2}:[0-9]{2}:[0-9]{2})$/.match(value)
+ return true if(date_and_time and date?($1) and time?($3))
+ false
+ end
+
+end

Чанита обнови решението на 25.11.2012 00:06 (преди над 11 години)

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 replace_phone(array)
- return array[0].concat(' [FILTERED]').concat(array[2]) if(preserve_phone_country_code and array[0].length>1)
- '[PHONE]'.concat(array[2])
+ return array[0].concat(' [FILTERED]') if(preserve_phone_country_code and array[0].length>1)
+ '[PHONE]'
end
def filter_phone
- text.gsub /((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})(\s|$)/ do
- replace_phone([$1,$7,$10])
+ text.gsub /((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})/ do
+ replace_phone([$1,$7])
end
end
def replace_email(array)
- return '[FILTERED]'.concat(array[1]).concat(array[2]) if(preserve_email_hostname and
+ return '[FILTERED]'.concat(array[1]) if(preserve_email_hostname and
(!partially_preserve_email_username or(partially_preserve_email_username and array[0].length<6)))
- return array[0][0..2].concat('[FILTERED]').concat(array[1]).concat(array[2]) if(partially_preserve_email_username)
- '[EMAIL]'.concat(array[2])
+ return array[0][0..2].concat('[FILTERED]').concat(array[1]) if(partially_preserve_email_username)
+ '[EMAIL]'
end
def filter_email
text.gsub /((\w([\w_+\.-]){,200})
- (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))(\s|$)/x do
- replace_email([$2,$4,$12])
+ (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))/x do
+ replace_email([$2,$4])
end
end
def filtered
- @text = filter_phone
@text = filter_email
+ @text = filter_phone
@text
end
end
class Validations
def self.email?(value)
return true if /(^\w([\w_+\.-]){,200})
(@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x.match(value)
false
end
def self.phone?(value)
return true if /^((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})$/.match(value)
false
end
def self.hostname?(value)
return true if /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/.match(value)
false
end
def self.ip_address?(value)
ip= /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
return true if( ip and ($1.to_i>=0 and $1.to_i<=255) and ($2.to_i>=0 and $2.to_i<=255) and
($3.to_i>=0 and $3.to_i<=255) and ($4.to_i>=0 and $4.to_i<=255))
false
end
def self.number?(value)
return true if /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/.match(value)
false
end
def self.integer?(value)
return true if /^-{0,1}(0|([1-9]([0-9])*))$/.match(value)
false
end
def self.date?(value)
return true if /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/.match(value) and ($1.to_i>=1 and $1.to_i<=12) and
($2.to_i>=1 and $2.to_i<=31)
false
end
def self.time?(value)
return true if /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/.match(value) and($1.to_i>=0 and $1.to_i<=23) and
($2.to_i>=0 and $2.to_i<=59) and($3.to_i>=0 and $3.to_i<=59)
false
end
def self.date_time?(value)
date_and_time = /(^[0-9]{4}-[0-9]{2}-[0-9]{2})( |T)([0-9]{2}:[0-9]{2}:[0-9]{2})$/.match(value)
return true if(date_and_time and date?($1) and time?($3))
false
end
end

Чанита обнови решението на 25.11.2012 12:15 (преди над 11 години)

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 replace_phone(array)
return array[0].concat(' [FILTERED]') if(preserve_phone_country_code and array[0].length>1)
'[PHONE]'
end
def filter_phone
text.gsub /((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})/ do
replace_phone([$1,$7])
end
end
def replace_email(array)
return '[FILTERED]'.concat(array[1]) if(preserve_email_hostname and
(!partially_preserve_email_username or(partially_preserve_email_username and array[0].length<6)))
return array[0][0..2].concat('[FILTERED]').concat(array[1]) if(partially_preserve_email_username)
'[EMAIL]'
end
def filter_email
- text.gsub /((\w([\w_+\.-]){,200})
+ text.gsub /((\w([\w_\+\.-]){,200})
(@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))/x do
replace_email([$2,$4])
end
end
def filtered
@text = filter_email
@text = filter_phone
@text
end
end
class Validations
def self.email?(value)
- return true if /(^\w([\w_+\.-]){,200})
+ return true if /(^\w([\w_\+\.-]){,200})
(@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x.match(value)
false
end
def self.phone?(value)
return true if /^((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})$/.match(value)
false
end
def self.hostname?(value)
return true if /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/.match(value)
false
end
def self.ip_address?(value)
ip= /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
return true if( ip and ($1.to_i>=0 and $1.to_i<=255) and ($2.to_i>=0 and $2.to_i<=255) and
($3.to_i>=0 and $3.to_i<=255) and ($4.to_i>=0 and $4.to_i<=255))
false
end
def self.number?(value)
return true if /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/.match(value)
false
end
def self.integer?(value)
return true if /^-{0,1}(0|([1-9]([0-9])*))$/.match(value)
false
end
def self.date?(value)
return true if /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/.match(value) and ($1.to_i>=1 and $1.to_i<=12) and
($2.to_i>=1 and $2.to_i<=31)
false
end
def self.time?(value)
return true if /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/.match(value) and($1.to_i>=0 and $1.to_i<=23) and
($2.to_i>=0 and $2.to_i<=59) and($3.to_i>=0 and $3.to_i<=59)
false
end
def self.date_time?(value)
date_and_time = /(^[0-9]{4}-[0-9]{2}-[0-9]{2})( |T)([0-9]{2}:[0-9]{2}:[0-9]{2})$/.match(value)
return true if(date_and_time and date?($1) and time?($3))
false
end
end

Чанита обнови решението на 28.11.2012 16:04 (преди над 11 години)

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 replace_phone(array)
+ array[0] = array[1] if !array[0]
return array[0].concat(' [FILTERED]') if(preserve_phone_country_code and array[0].length>1)
'[PHONE]'
end
def filter_phone
- text.gsub /((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})/ do
- replace_phone([$1,$7])
+ text.gsub /((0)((( |-|\(|\)){0,2}[1-9])(( |-|\(|\)){0,2}[0-9]){5,11}))|
+ ((((\b00)|\+)[1-9]([0-9]){0,2})((( |-|\(|\)){0,2}[0-9]){6,11}))/x do
+ replace_phone([$2,$9])
end
end
def replace_email(array)
return '[FILTERED]'.concat(array[1]) if(preserve_email_hostname and
(!partially_preserve_email_username or(partially_preserve_email_username and array[0].length<6)))
return array[0][0..2].concat('[FILTERED]').concat(array[1]) if(partially_preserve_email_username)
'[EMAIL]'
end
def filter_email
text.gsub /((\w([\w_\+\.-]){,200})
- (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))/x do
+ (@((\w|(\w([\w-]){,61}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}))/x do
replace_email([$2,$4])
end
end
def filtered
@text = filter_email
@text = filter_phone
@text
end
end
class Validations
def self.email?(value)
- return true if /(^\w([\w_\+\.-]){,200})
- (@((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x.match(value)
+ return true if value =~ /(^\w([\w_\+\.-]){,200})
+ (@((\w|(\w([\w-]){,61}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1})$/x
false
end
def self.phone?(value)
- return true if /^((0)|(((00)|\+)[1-9]([0-9]){0,2}))((( |-|\(|\)){0,2}[0-9]){6,11})$/.match(value)
+ return true if value =~ /^((0)((( |-|\(|\)){0,2}[1-9])(( |-|\(|\)){0,2}[0-9]){5,11}))|
+ ((((\b00)|\+)[1-9]([0-9]){0,2})((( |-|\(|\)){0,2}[0-9]){6,11}))$/x
false
end
def self.hostname?(value)
- return true if /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/.match(value)
+ return true if value =~ /((\w|(\w([\w-]){,60}\w))\.)+([[:alpha:]]){2,3}(\.([[:alpha:]]){2}){0,1}$/
false
end
def self.ip_address?(value)
ip= /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/.match(value)
return true if( ip and ($1.to_i>=0 and $1.to_i<=255) and ($2.to_i>=0 and $2.to_i<=255) and
($3.to_i>=0 and $3.to_i<=255) and ($4.to_i>=0 and $4.to_i<=255))
false
end
def self.number?(value)
- return true if /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/.match(value)
+ return true if value =~ /^-{0,1}(0|([1-9]([0-9])*(\.[0-9]){0,1}([0-9])*))$/
false
end
def self.integer?(value)
- return true if /^-{0,1}(0|([1-9]([0-9])*))$/.match(value)
+ return true if value =~ /^-{0,1}(0|([1-9]([0-9])*))$/
false
end
def self.date?(value)
- return true if /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/.match(value) and ($1.to_i>=1 and $1.to_i<=12) and
+ return true if value =~ /^[0-9]{4}-([0-9]{2})-([0-9]{2})$/ and ($1.to_i>=1 and $1.to_i<=12) and
($2.to_i>=1 and $2.to_i<=31)
false
end
def self.time?(value)
- return true if /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/.match(value) and($1.to_i>=0 and $1.to_i<=23) and
+ return true if value =~ /^([0-9]{2}):([0-9]{2}):([0-9]{2})$/ and($1.to_i>=0 and $1.to_i<=23) and
($2.to_i>=0 and $2.to_i<=59) and($3.to_i>=0 and $3.to_i<=59)
false
end
def self.date_time?(value)
date_and_time = /(^[0-9]{4}-[0-9]{2}-[0-9]{2})( |T)([0-9]{2}:[0-9]{2}:[0-9]{2})$/.match(value)
return true if(date_and_time and date?($1) and time?($3))
false
end
end