提交 206230a4 编写于 作者: S Saito

rewrite encode strategy.

上级 89043d6b
# Patch Strings to enable detect_encoding! on views
require 'charlock_holmes/string'
module Gitlab
module Encode
module Encode
extend self
def utf8 message
# return nil if message is nil
return nil unless message
detect = CharlockHolmes::EncodingDetector.detect(message) rescue {}
# if message is utf-8 encoding, just return it
message.force_encoding("utf-8")
return message if message.valid_encoding?
# It's better to default to UTF-8 as sometimes it's wrongly detected as another charset
if detect[:encoding] && detect[:confidence] == 100
CharlockHolmes::Converter.convert(message, detect[:encoding], 'UTF-8')
else
message
end.force_encoding("utf-8")
# if message is not utf-8 encoding, detect and convert it
detect = CharlockHolmes::EncodingDetector.detect(message)
if detect[:encoding] && detect[:confidence] > 60
message.force_encoding(detect[:encoding])
message.encode!("utf-8", detect[:encoding], :undef => :replace, :replace => "", :invalid => :replace)
end
# Prevent app from crash cause of
# encoding errors
message.valid_encoding? ? message : raise
# Prevent app from crash cause of encoding errors
rescue
"--broken encoding: #{encoding}"
"--broken encoding: #{detect[:encoding]}"
end
def detect_encoding message
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册