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

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

Към профила на Станислав Гатев

Резултати

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

Код

module Validations
HOSTNAME_RE = /(?<hostname>([a-zA-Z0-9](\w{,60}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,3}(.[a-zA-Z]{2,2})?)/
EMAIL_RE = /(?<email>(?<username>[a-zA-Z0-9][a-zA-Z0-9_\+\.-]{,200})@#{HOSTNAME_RE})/
LOCAL_PHONE_CODE_RE = /(?<local-phone-code>0)/
INTERNATIONAL_PHONE_CODE_RE = /(?<international-phone-code>(00|\+)[1-9][0-9]{,2})/
PHONE_CODE_RE = /(?<phone-code>#{LOCAL_PHONE_CODE_RE}|#{INTERNATIONAL_PHONE_CODE_RE})/
PHONE_NUMBER_RE = /(?<phone-number>([ -\(\)]{,2}[0-9]){6,11})/
PHONE_RE = /(?<phone>#{PHONE_CODE_RE}#{PHONE_NUMBER_RE})/
IP_ADDRESS_VALUE_RE = /(?<ip-address-value>25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/
IP_ADDRESS_RE = /(?<ip-address>(?:#{IP_ADDRESS_VALUE_RE}\.){3}#{IP_ADDRESS_VALUE_RE})/
INTEGER_RE = /(?<integer>-?(0|[1-9])[0-9]*)/
NUMBER_RE = /(?<number>#{INTEGER_RE}(\.[0-9]+)?)/
DATE_RE = /(?<date>[0-9]{4}-(1[012]|0[1-9])-(3[01]|[12][0-9]|0[1-9]))/
TIME_RE = /(?<time>[0-9]{2}:[0-9]{2}:[0-9]{2})/
DATE_TIME_RE = /(?<date-time>#{DATE_RE}[ T]#{TIME_RE})/
def self.hostname?(value)
matches HOSTNAME_RE, value
end
def self.email?(value)
matches EMAIL_RE, value
end
def self.phone?(value)
matches PHONE_RE, value
end
def self.ip_address?(value)
matches IP_ADDRESS_RE, value
end
def self.integer?(value)
matches INTEGER_RE, value
end
def self.number?(value)
matches NUMBER_RE, value
end
def self.date?(value)
matches DATE_RE, value
end
def self.time?(value)
matches TIME_RE, value
end
def self.date_time?(value)
matches DATE_TIME_RE, value
end
private
def self.matches(re, value)
/^#{re}$/ === value
end
end
class PrivacyFilter
include Validations
attr_accessor :preserve_phone_country_code, :preserve_email_hostname, :partially_preserve_email_username
def initialize(text)
@text = text
end
def filtered
filter_phone filter_email @text
end
private
def filter_email(text)
filtered_email_partially_preserved_username = filter_email_partially_preserve_username text
filtered_email_preserved_hostname = filter_email_preserve_hostname filtered_email_partially_preserved_username
filtered_email_preserved_hostname.gsub EMAIL_RE, '[EMAIL]'
end
def filter_phone(text)
filtered_phone_preserved_country_code = filter_phone_preserve_country_code text
filtered_phone_preserved_country_code.gsub PHONE_RE, '[PHONE]'
end
def filter_email_partially_preserve_username(text)
if partially_preserve_email_username
text.gsub /(?<keep>[a-zA-Z0-9]{3})#{EMAIL_RE}/, '\k<keep>[FILTERED]@\k<hostname>'
else
text
end
end
def filter_email_preserve_hostname(text)
if preserve_email_hostname
text.gsub EMAIL_RE, '[FILTERED]@\k<hostname>'
else
text
end
end
def filter_phone_preserve_country_code(text)
if preserve_phone_country_code
text.gsub /#{INTERNATIONAL_PHONE_CODE_RE}#{PHONE_NUMBER_RE}/, '\k<international-phone-code> [FILTERED]'
else
text
end
end
end

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

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

Failures:

  1) PrivacyFilter obfuscates more complicated emails
     Failure/Error: filter(text).should eq filtered
       
       expected: "Contact: [EMAIL],[EMAIL]"
            got: "Contact: [EMAIL][EMAIL]"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/spec.rb:40:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:39:in `each'
     # /tmp/d20130203-23049-10zkb7o/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-10zkb7o/spec.rb:52:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:46:in `each'
     # /tmp/d20130203-23049-10zkb7o/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: "[EMAIL]"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/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: "За връзка: [EMAIL]"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/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: "[PHONE]-456"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/spec.rb:85:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:84:in `each'
     # /tmp/d20130203-23049-10zkb7o/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: "Reach me at: 0885123"
            got: "Reach me at: [PHONE]"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/spec.rb:96:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:95:in `each'
     # /tmp/d20130203-23049-10zkb7o/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 preserves whitespace around phones
     Failure/Error: filter(' +359881212-12-1 2 or...').should eq ' [PHONE] or...'
       
       expected: " [PHONE] or..."
            got: " [PHONE]-12-1 2 or..."
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/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)>'

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

  9) 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: +3 [FILTERED]-1212"
       
       (compared using ==)
     # /tmp/d20130203-23049-10zkb7o/spec.rb:132:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:129:in `each'
     # /tmp/d20130203-23049-10zkb7o/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)>'

  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-10zkb7o/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-10zkb7o/spec.rb:210:in `block (3 levels) in <top (required)>'
     # /tmp/d20130203-23049-10zkb7o/spec.rb:209:in `each'
     # /tmp/d20130203-23049-10zkb7o/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-10zkb7o/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?('some.long-subdomain.domain.co.ul').should be_true
       expected: true value
            got: false
     # /tmp/d20130203-23049-10zkb7o/spec.rb:220: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-10zkb7o/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-10zkb7o/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-10zkb7o/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-10zkb7o/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-10zkb7o/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-10zkb7o/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 handles newlines in date validation
     Failure/Error: Validations.date?("2012-11-19\n").should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-10zkb7o/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)>'

  21) Validations does not allow invalid hours, minutes or seconds
     Failure/Error: Validations.time?('24:00:00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-10zkb7o/spec.rb:340: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 validates datetime values
     Failure/Error: Validations.date_time?('2012-01-01T24:59:00').should be_false
       expected: false value
            got: true
     # /tmp/d20130203-23049-10zkb7o/spec.rb:354: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 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-10zkb7o/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.06027 seconds
41 examples, 23 failures

Failed examples:

rspec /tmp/d20130203-23049-10zkb7o/spec.rb:30 # PrivacyFilter obfuscates more complicated emails
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:44 # PrivacyFilter does not filter invalid emails
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:68 # PrivacyFilter filters whole email usernames if too short
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:72 # PrivacyFilter does not brake with unicode
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:76 # PrivacyFilter filters more complex phone numbers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:89 # PrivacyFilter does not filter invalid phone numbers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:100 # PrivacyFilter preserves whitespace around phones
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:104 # PrivacyFilter filters more than one phone or email
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:122 # PrivacyFilter allows country code to be preserved for internationally-formatted phone numbers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:175 # Validations does not break on emails in multiline strings
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:184 # Validations can validate more complex phone numbers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:214 # Validations does not break on phones in multiline strings
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:218 # Validations validates hostnames
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:232 # Validations handles multiline strings in hostname validation properly
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:244 # Validations handles multiline strings in IP validation properly
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:257 # Validations validates more complex numbers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:273 # Validations handles multiline strings in numbers validation properly
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:283 # Validations validates more complex integers
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:294 # Validations handles multiline strings in integer validation properly
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:326 # Validations handles newlines in date validation
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:339 # Validations does not allow invalid hours, minutes or seconds
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:347 # Validations validates datetime values
rspec /tmp/d20130203-23049-10zkb7o/spec.rb:359 # Validations handles newlines in time and datetime validation

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

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

+module Validations
+
+ HOSTNAME_RE = /(?<hostname>([a-zA-Z0-9](\w{,60}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,3}(.[a-zA-Z]{2,2})?)/
+ EMAIL_RE = /(?<email>(?<username>[a-zA-Z0-9][a-zA-Z0-9_\+\.-]{,200})@#{HOSTNAME_RE})/
+ LOCAL_PHONE_CODE_RE = /(?<local-phone-code>0)/
+ INTERNATIONAL_PHONE_CODE_RE = /(?<international-phone-code>(00|\+)[1-9][0-9]{,2})/
+ PHONE_CODE_RE = /(?<phone-code>#{LOCAL_PHONE_CODE_RE}|#{INTERNATIONAL_PHONE_CODE_RE})/
+ PHONE_NUMBER_RE = /(?<phone-number>([ -\(\)]{,2}[0-9]){6,11})/
+ PHONE_RE = /(?<phone>#{PHONE_CODE_RE}#{PHONE_NUMBER_RE})/
+ IP_ADDRESS_VALUE_RE = /(?<ip-address-value>25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/
+ IP_ADDRESS_RE = /(?<ip-address>(?:#{IP_ADDRESS_VALUE_RE}\.){3}#{IP_ADDRESS_VALUE_RE})/
+ INTEGER_RE = /(?<integer>-?(0|[1-9])[0-9]*)/
+ NUMBER_RE = /(?<number>#{INTEGER_RE}(\.[0-9]+)?)/
+ DATE_RE = /(?<date>[0-9]{4}-(1[012]|0[1-9])-(3[01]|[12][0-9]|0[1-9]))/
+ TIME_RE = /(?<time>[0-9]{2}:[0-9]{2}:[0-9]{2})/
+ DATE_TIME_RE = /(?<date-time>#{DATE_RE}[ T]#{TIME_RE})/
+
+ def self.hostname?(value)
+ matches HOSTNAME_RE, value
+ end
+
+ def self.email?(value)
+ matches EMAIL_RE, value
+ end
+
+ def self.phone?(value)
+ matches PHONE_RE, value
+ end
+
+ def self.ip_address?(value)
+ matches IP_ADDRESS_RE, value
+ end
+
+ def self.integer?(value)
+ matches INTEGER_RE, value
+ end
+
+ def self.number?(value)
+ matches NUMBER_RE, value
+ end
+
+ def self.date?(value)
+ matches DATE_RE, value
+ end
+
+ def self.time?(value)
+ matches TIME_RE, value
+ end
+
+ def self.date_time?(value)
+ matches DATE_TIME_RE, value
+ end
+
+ private
+
+ def self.matches(re, value)
+ /^#{re}$/ === value
+ end
+
+end
+
+class PrivacyFilter
+
+ include Validations
+
+ attr_accessor :preserve_phone_country_code, :preserve_email_hostname, :partially_preserve_email_username
+
+ def initialize(text)
+ @text = text
+ end
+
+ def filtered
+ filter_phone filter_email @text
+ end
+
+ private
+
+ def filter_email(text)
+ filtered_email_partially_preserved_username = filter_email_partially_preserve_username text
+ filtered_email_preserved_hostname = filter_email_preserve_hostname filtered_email_partially_preserved_username
+ filtered_email_preserved_hostname.gsub EMAIL_RE, '[EMAIL]'
+ end
+
+ def filter_phone(text)
+ filtered_phone_preserved_country_code = filter_phone_preserve_country_code text
+ filtered_phone_preserved_country_code.gsub PHONE_RE, '[PHONE]'
+ end
+
+ def filter_email_partially_preserve_username(text)
+ if partially_preserve_email_username
+ text.gsub /(?<keep>[a-zA-Z0-9]{3})#{EMAIL_RE}/, '\k<keep>[FILTERED]@\k<hostname>'
+ else
+ text
+ end
+ end
+
+ def filter_email_preserve_hostname(text)
+ if preserve_email_hostname
+ text.gsub EMAIL_RE, '[FILTERED]@\k<hostname>'
+ else
+ text
+ end
+ end
+
+ def filter_phone_preserve_country_code(text)
+ if preserve_phone_country_code
+ text.gsub /#{INTERNATIONAL_PHONE_CODE_RE}#{PHONE_NUMBER_RE}/, '\k<international-phone-code> [FILTERED]'
+ else
+ text
+ end
+ end
+
+end