From 2bfeaf886e7dc95104418eb9c5a5e549f502835c Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 15 Mar 2015 18:13:58 +0000 Subject: [PATCH] Merged r14112 (#19305). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14114 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/setting.rb | 24 +++++++++++++++++++++++- test/unit/setting_test.rb | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/app/models/setting.rb b/app/models/setting.rb index 19e0cf204..00f8e52d0 100644 --- a/app/models/setting.rb +++ b/app/models/setting.rb @@ -94,7 +94,10 @@ class Setting < ActiveRecord::Base def value v = read_attribute(:value) # Unserialize serialized settings - v = YAML::load(v) if @@available_settings[name]['serialized'] && v.is_a?(String) + if @@available_settings[name]['serialized'] && v.is_a?(String) + v = YAML::load(v) + v = force_utf8_strings(v) + end v = v.to_sym if @@available_settings[name]['format'] == 'symbol' && !v.blank? v end @@ -237,6 +240,25 @@ END_SRC end private + + def force_utf8_strings(arg) + if arg.is_a?(String) + arg.dup.force_encoding('UTF-8') + elsif arg.is_a?(Array) + arg.map do |a| + force_utf8_strings(a) + end + elsif arg.is_a?(Hash) + arg = arg.dup + arg.each do |k,v| + arg[k] = force_utf8_strings(v) + end + arg + else + arg + end + end + # Returns the Setting instance for the setting named name # (record found in database or new record with default value) def self.find_or_default(name) diff --git a/test/unit/setting_test.rb b/test/unit/setting_test.rb index 46383e867..6c3c27df9 100644 --- a/test/unit/setting_test.rb +++ b/test/unit/setting_test.rb @@ -1,3 +1,5 @@ +# encoding: utf-8 +# # Redmine - project management software # Copyright (C) 2006-2015 Jean-Philippe Lang # @@ -101,4 +103,25 @@ class SettingTest < ActiveSupport::TestCase assert_equal [10, 25, 50], Setting.per_page_options_array end end + + def test_setting_serialied_as_binary_should_be_loaded_as_utf8_encoded_strings + yaml = <<-YAML +--- +- keywords: !binary | + Zml4ZXMsY2xvc2VzLNC40YHQv9GA0LDQstC70LXQvdC+LNCz0L7RgtC+0LLQ + vizRgdC00LXQu9Cw0L3QvixmaXhlZA== + + done_ratio: "100" + status_id: "5" +YAML + + Setting.commit_update_keywords = {} + assert_equal 1, Setting.where(:name => 'commit_update_keywords').update_all(:value => yaml) + Setting.clear_cache + + assert_equal 'UTF-8', Setting.commit_update_keywords.first['keywords'].encoding.name + ensure + Setting.where(:name => 'commit_update_keywords').delete_all + Setting.clear_cache + end end -- 2.39.5