diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-06-11 17:11:26 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-06-22 17:43:21 +0100 |
commit | 3d8f0cc6b70b55aad20ab4d86642f0e6d605c921 (patch) | |
tree | 9ea992e219fb9d2909c9e15e4349f304e2d43ab1 /lib/normalize_string.rb | |
parent | d359f76233787533c973a1f30c3f6439d5919783 (diff) |
convert_string_to_utf8 returns struct of string and scrubbing status.
Diffstat (limited to 'lib/normalize_string.rb')
-rw-r--r-- | lib/normalize_string.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/normalize_string.rb b/lib/normalize_string.rb index 8b54c080c..69853fd6e 100644 --- a/lib/normalize_string.rb +++ b/lib/normalize_string.rb @@ -73,13 +73,18 @@ def convert_string_to_utf8_or_binary(s, suggested_character_encoding=nil) result end +class StringConversionResult < Struct.new(:string, :scrubbed) + alias_method :scrubbed?, :scrubbed +end + def convert_string_to_utf8(s, suggested_character_encoding=nil) begin result = normalize_string_to_utf8 s, suggested_character_encoding + StringConversionResult.new(result, false) rescue EncodingNormalizationError result = scrub(s) + StringConversionResult.new(result, true) end - result end def scrub(string) |