1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# frozen_string_literal: true
module Sentry
module Utils
module EncodingHelper
MALFORMED_STRING = "<malformed-string>"
def self.encode_to_utf_8(value)
if value.encoding != Encoding::UTF_8 && value.respond_to?(:force_encoding)
value = value.dup.force_encoding(Encoding::UTF_8)
end
value = value.scrub unless value.valid_encoding?
value
end
def self.valid_utf_8?(value)
return true unless value.respond_to?(:force_encoding)
value.dup.force_encoding(Encoding::UTF_8).valid_encoding?
end
def self.safe_utf_8_string(value)
valid_utf_8?(value) ? value : MALFORMED_STRING
end
end
end
end
|