Created
January 23, 2013 19:41
-
-
Save igor-alexandrov/4612075 to your computer and use it in GitHub Desktop.
Parameters fix for Rails 2.3.x and Ruby 1.9.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ActionController::Base | |
def force_utf8_params | |
traverse = lambda do |object, block| | |
if object.kind_of?(Hash) | |
object.each_value { |o| traverse.call(o, block) } | |
elsif object.kind_of?(Array) | |
object.each { |o| traverse.call(o, block) } | |
else | |
block.call(object) | |
end | |
object | |
end | |
force_encoding = lambda do |o| | |
if o.respond_to?(:force_encoding) | |
o.force_encoding(Encoding::UTF_8) | |
raise ActionController::InvalidByteSequenceErrorFromParams unless o.valid_encoding? | |
end | |
if o.respond_to?(:original_filename) | |
o.original_filename.force_encoding(Encoding::UTF_8) | |
raise ActionController::InvalidByteSequenceErrorFromParams unless o.original_filename.valid_encoding? | |
end | |
end | |
traverse.call(params, force_encoding) | |
path_str = request.path.to_s | |
if path_str.respond_to?(:force_encoding) | |
path_str.force_encoding(Encoding::UTF_8) | |
raise ActionController::InvalidByteSequenceErrorFromParams unless path_str.valid_encoding? | |
end | |
end | |
before_filter :force_utf8_params | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment