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

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

Към профила на Свилен Андонов

Резултати

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

Код

class Validations
def Validations.time?(value)
value.match(/^([01]?[0-9]|2[0-3])\:[0-5][0-9]\:[0-5][0-9]$/) != nil
end
def Validations.date?(value)
value.match(/^(\d{4})\-(0?[1-9]|1[0-2])\-(0?[1-9]|[1-2]\d|3[01]\d)\z/) != nil
end
def Validations.ip_address?(value)
ip_address_match = /^([0]|[1-9]|([1-9][1-9])|([1][1-9][1-9])|([2][1-4][1-9])|([2][5][1-5]))\z/
values = value.split(".")
values[0].match( ip_address_match ) != nil and values[1].match( ip_address_match ) != nil and
values[3].match( ip_address_match ) != nil and values[2].match( ip_address_match ) != nil and values[4] == nil
end
def Validations.number?(value)
value.match(/^[-]?[\d]+(\.[\d]+){0,1}\z$/) != nil
end
def Validations.integer?(value)
value.match(/^([-][1-9])?[0-9]\d*?$/) != nil
end
def Validations.hostname?(value)
value.match(/^([0-9a-zA-Z]([0-9a-zA-Z-]{0,60}[0-9a-zA-Z])?\.)+[0-9a-zA-Z]?(.[a-zA-Z]{1,2})\z/) != nil
end
def Validations.phone?(value)
value.match(/^(([0]{2}|([+][1-9][0-9]{0,2})|[0])([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)\z/) != nil
end
def Validations.date_time?(value)
values = value.split
return ( Validations.date?(values[0]) and Validations.time?(values[1]) and values[2].nil? )
end
def Validations.check_email_prefix?(value)
value.to_s.match( /^[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}\z/).nil?
end
def Validations.email?(value)
values = value.split('@')
return ( Validations.hostname?(values[1]) and values[2].nil? and Validations.check_email_prefix?(value[0]))
end
end
class PrivacyFilter
EMAIL = /[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}@([0-9a-zA-Z][0-9a-zA-Z-]{1,60}[0-9a-zA-Z]\.)+[0-9a-zA-Z].[a-zA-Z]{1,2}/
INTERNATIONAL_PHONE = /([+][1-9][0-9]{0,2}([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
PHONE = /(([0]{2}|([+][1-9][0-9]{0,2}|[0]))([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
attr_accessor :value, :preserve_phone_country_code, :preserve_email_hostname,
:partially_preserve_email_username
def initialize (value)
@value = value
@preserve_phone_country_code = @preserve_email_hostname = @partially_preserve_email_username = false
end
def match_by_phone_country
@value = @value.gsub(INTERNATIONAL_PHONE) { |m| m.match(/([\w+]{4}).(\.*)/) {"#{$1} [FILTERED]"} }
end
def filter_by_phone
if @preserve_phone_country_code == true
match_by_phone_country
end
@value = @value.gsub(PHONE , "[PHONE]")
end
def match_by_email m
m.match(/(\w+)@(.*)/) do
"[FILTERED]@#$2" if $1.length < 3
"#{$1[0...3]}[FILTERED]@#$2" if $1.length >= 4
end
end
def filter_by_email
@value = @value.gsub(EMAIL) { |m| match_by_email m } if @partially_preserve_email_username == true
@value = @value.gsub(EMAIL) { |m| m.gsub!(/[^@]*\@/, "[FILTERED]@") } if @preserve_email_hostname == true
@value = @value.gsub(EMAIL , "[EMAIL]") #if @partially_preserve_email_username == false
end
def filtered
filter_by_phone
filter_by_email
end
end

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

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

Failures:

  1) PrivacyFilter obfuscates more complicated emails
     Failure/Error: filter(text).should eq filtered
       
       expected: "[EMAIL]"
            got: "some.user+and-more-here@nihon.co.jp"
       
       (compared using ==)
     # /tmp/d20130203-23049-fz5hg2/spec.rb:40:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:39:in `each'
     # /tmp/d20130203-23049-fz5hg2/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-fz5hg2/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:46:in `each'
     # /tmp/d20130203-23049-fz5hg2/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 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: ""
       
       (compared using ==)
     # /tmp/d20130203-23049-fz5hg2/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)>'

  4) 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: "За връзка: "
       
       (compared using ==)
     # /tmp/d20130203-23049-fz5hg2/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)>'

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

  6) PrivacyFilter does not filter invalid phone numbers
     Failure/Error: filter(text).should eq filtered
       
       expected: "0005551234569"
            got: "[PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-fz5hg2/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:95:in `each'
     # /tmp/d20130203-23049-fz5hg2/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)>'

  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: contact@company.co.uk or sales@office.us\n    "
       
       (compared using ==)
       
       Diff:
       @@ -1,7 +1,7 @@
        
              Contacts
        
       -      Phones: [PHONE] or [PHONE]
       -      Email: [EMAIL] or [EMAIL]
       +      Phones: +1 (555) 123-456-99 or [PHONE]
       +      Email: contact@company.co.uk or sales@office.us
            
     # /tmp/d20130203-23049-fz5hg2/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: 0025 [FILTERED]"
            got: "Phone: [PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-fz5hg2/spec.rb:132:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:129:in `each'
     # /tmp/d20130203-23049-fz5hg2/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-fz5hg2/spec.rb:144:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:141:in `each'
     # /tmp/d20130203-23049-fz5hg2/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-fz5hg2/spec.rb:171:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:170:in `each'
     # /tmp/d20130203-23049-fz5hg2/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 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-fz5hg2/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-fz5hg2/spec.rb:209:in `each'
     # /tmp/d20130203-23049-fz5hg2/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 validates hostnames
     Failure/Error: Validations.hostname?('not-a-hostname.c-m').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/spec.rb:228: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 handles multiline strings in hostname validation properly
     Failure/Error: Validations.hostname?("foo.com\nbar.com").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/spec.rb:234: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 IP validation properly
     Failure/Error: Validations.ip_address?("\n8.8.8.8").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/spec.rb:246: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 validates more complex numbers
     Failure/Error: Validations.number?('00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/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)>'

  16) 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-fz5hg2/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)>'

  17) Validations validates more complex integers
     Failure/Error: Validations.integer?('00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/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)>'

  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-fz5hg2/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\n2012-10-10").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/spec.rb:328: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 validates times
     Failure/Error: Validations.time?('3:59:59').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/spec.rb:336: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 validates datetime values
     Failure/Error: Validations.date_time?('2012-11-19T19:00:00').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-fz5hg2/spec.rb:349: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 time and datetime validation
     Failure/Error: Validations.time?("12:01:01\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-fz5hg2/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.04986 seconds
41 examples, 22 failures

Failed examples:

rspec /tmp/d20130203-23049-fz5hg2/spec.rb:30 # PrivacyFilter obfuscates more complicated emails
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:68 # PrivacyFilter filters whole email usernames if too short
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:72 # PrivacyFilter does not brake with unicode
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:136 # PrivacyFilter separates preserved country code from filtered phone with a space
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:160 # Validations can validate more complex emails
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:218 # Validations validates hostnames
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:331 # Validations validates times
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:347 # Validations validates datetime values
rspec /tmp/d20130203-23049-fz5hg2/spec.rb:359 # Validations handles newlines in time and datetime validation

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

Свилен обнови решението на 28.11.2012 08:44 (преди над 11 години)

+class Validations
+ def Validations.time?(value)
+ value.match(/^([01]?[0-9]|2[0-3])\:[0-5][0-9]\:[0-5][0-9]$/) != nil
+ end
+
+ def Validations.date?(value)
+ value.match(/^(\d{4})\-(0?[1-9]|1[0-2])\-(0?[1-9]|[1-2]\d|3[01]\d)\z/) != nil
+ end
+
+ def Validations.ip_address?(value)
+ ip_address_match = /^([0]|[1-9]|([1-9][1-9])|([1][1-9][1-9])|([2][1-4][1-9])|([2][5][1-5]))\z/
+ values = value.split(".")
+ values[0].match( ip_address_match ) != nil and values[1].match( ip_address_match ) != nil and
+ values[3].match( ip_address_match ) != nil and values[2].match( ip_address_match ) != nil and values[4] == nil
+ end
+
+ def Validations.number?(value)
+ value.match(/^[-]?[\d]+(\.[\d]+){0,1}\z$/) != nil
+ end
+
+ def Validations.integer?(value)
+ value.match(/^([-][1-9])?[0-9]\d*?$/) != nil
+ end
+
+ def Validations.hostname?(value)
+ value.match(/^([0-9a-zA-Z]([0-9a-zA-Z-]{0,60}[0-9a-zA-Z])?\.)+[0-9a-zA-Z]?(.[a-zA-Z]{1,2})\z/) !=nil
+ end
+
+ def Validations.phone?(value)
+ value.match(/^(([0]{2}|([+][1-9][0-9]{0,2})|[0])([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)\z/) !=nil
+ end
+
+ def Validations.date_time?(value)
+ values = value.split
+ return ( Validations.date?(values[0]) and Validations.time?(values[1]) and values[2].nil? )
+ end
+
+ def Validations.check_email_prefix?(value)
+ value.to_s.match( /^[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}\z/).nil?
+ end
+
+ def Validations.email?(value)
+ values = value.split('@')
+ return ( Validations.hostname?(values[1]) and values[2].nil? and Validations.check_email_prefix?(value[0]))
+ end
+end
+
+class PrivacyFilter
+ EMAIL = /[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}@([0-9a-zA-Z][0-9a-zA-Z-]{1,60}[0-9a-zA-Z]\.)+[0-9a-zA-Z].[a-zA-Z]{1,2}/
+ INTERNATIONAL_PHONE = /([+][1-9][0-9]{0,2}([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
+ PHONE = /(([0]{2}|([+][1-9][0-9]{0,2}|[0]))([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
+
+ attr_accessor :value, :preserve_phone_country_code, :preserve_email_hostname,
+ :partially_preserve_email_username
+
+ def initialize (value)
+ @value = value
+ @preserve_phone_country_code = @preserve_email_hostname = @partially_preserve_email_username = false
+ end
+
+ def match_by_phone_country
+ @value = @value.gsub(INTERNATIONAL_PHONE) { |m| m.match(/([\w+]{4}).(\.*)/) {"#{$1} [FILTERED]"} }
+ end
+
+ def filter_by_phone
+ if @preserve_phone_country_code == true
+ match_by_phone_country
+ end
+ @value = @value.gsub(PHONE , "[PHONE]")
+ end
+
+ def match_by_email m
+ m.match(/(\w+)@(.*)/) do
+ "[FILTERED]@#$2" if $1.length < 3
+ "#{$1[0...3]}[FILTERED]@#$2" if $1.length >= 4
+ end
+ end
+
+ def filter_by_email
+ @value = @value.gsub(EMAIL) { |m| match_by_email m } if @partially_preserve_email_username == true
+ @value = @value.gsub(EMAIL) { |m| m.gsub!(/[^@]*\@/, "[FILTERED]@") } if @preserve_email_hostname == true
+ @value = @value.gsub(EMAIL , "[EMAIL]") #if @partially_preserve_email_username == false
+ end
+
+ def filtered
+ filter_by_phone
+ filter_by_email
+ end
+end

Свилен обнови решението на 28.11.2012 15:27 (преди над 11 години)

class Validations
def Validations.time?(value)
value.match(/^([01]?[0-9]|2[0-3])\:[0-5][0-9]\:[0-5][0-9]$/) != nil
end
def Validations.date?(value)
value.match(/^(\d{4})\-(0?[1-9]|1[0-2])\-(0?[1-9]|[1-2]\d|3[01]\d)\z/) != nil
end
def Validations.ip_address?(value)
ip_address_match = /^([0]|[1-9]|([1-9][1-9])|([1][1-9][1-9])|([2][1-4][1-9])|([2][5][1-5]))\z/
values = value.split(".")
values[0].match( ip_address_match ) != nil and values[1].match( ip_address_match ) != nil and
values[3].match( ip_address_match ) != nil and values[2].match( ip_address_match ) != nil and values[4] == nil
end
def Validations.number?(value)
value.match(/^[-]?[\d]+(\.[\d]+){0,1}\z$/) != nil
end
def Validations.integer?(value)
value.match(/^([-][1-9])?[0-9]\d*?$/) != nil
end
def Validations.hostname?(value)
- value.match(/^([0-9a-zA-Z]([0-9a-zA-Z-]{0,60}[0-9a-zA-Z])?\.)+[0-9a-zA-Z]?(.[a-zA-Z]{1,2})\z/) !=nil
+ value.match(/^([0-9a-zA-Z]([0-9a-zA-Z-]{0,60}[0-9a-zA-Z])?\.)+[0-9a-zA-Z]?(.[a-zA-Z]{1,2})\z/) != nil
end
def Validations.phone?(value)
- value.match(/^(([0]{2}|([+][1-9][0-9]{0,2})|[0])([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)\z/) !=nil
+ value.match(/^(([0]{2}|([+][1-9][0-9]{0,2})|[0])([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)\z/) != nil
end
def Validations.date_time?(value)
values = value.split
return ( Validations.date?(values[0]) and Validations.time?(values[1]) and values[2].nil? )
end
def Validations.check_email_prefix?(value)
value.to_s.match( /^[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}\z/).nil?
end
def Validations.email?(value)
values = value.split('@')
return ( Validations.hostname?(values[1]) and values[2].nil? and Validations.check_email_prefix?(value[0]))
end
end
class PrivacyFilter
EMAIL = /[a-zA-Z0-9][a-zA-Z0-9\.\-\+\_]{1,200}@([0-9a-zA-Z][0-9a-zA-Z-]{1,60}[0-9a-zA-Z]\.)+[0-9a-zA-Z].[a-zA-Z]{1,2}/
INTERNATIONAL_PHONE = /([+][1-9][0-9]{0,2}([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
PHONE = /(([0]{2}|([+][1-9][0-9]{0,2}|[0]))([\s|\-|\(|\)]?([0-9][\s|\-|\)|\)]?){6,11})[0-9][\)]?)/
attr_accessor :value, :preserve_phone_country_code, :preserve_email_hostname,
:partially_preserve_email_username
def initialize (value)
@value = value
@preserve_phone_country_code = @preserve_email_hostname = @partially_preserve_email_username = false
end
def match_by_phone_country
@value = @value.gsub(INTERNATIONAL_PHONE) { |m| m.match(/([\w+]{4}).(\.*)/) {"#{$1} [FILTERED]"} }
end
def filter_by_phone
if @preserve_phone_country_code == true
match_by_phone_country
end
@value = @value.gsub(PHONE , "[PHONE]")
end
def match_by_email m
m.match(/(\w+)@(.*)/) do
"[FILTERED]@#$2" if $1.length < 3
"#{$1[0...3]}[FILTERED]@#$2" if $1.length >= 4
end
end
def filter_by_email
@value = @value.gsub(EMAIL) { |m| match_by_email m } if @partially_preserve_email_username == true
@value = @value.gsub(EMAIL) { |m| m.gsub!(/[^@]*\@/, "[FILTERED]@") } if @preserve_email_hostname == true
@value = @value.gsub(EMAIL , "[EMAIL]") #if @partially_preserve_email_username == false
end
def filtered
filter_by_phone
filter_by_email
end
end
+