summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/models/setting.rb24
-rw-r--r--test/unit/setting_test.rb23
2 files changed, 46 insertions, 1 deletions
diff --git a/app/models/setting.rb b/app/models/setting.rb
index ca280ebcd..2574649f3 100644
--- a/app/models/setting.rb
+++ b/app/models/setting.rb
@@ -91,7 +91,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
@@ -238,6 +241,25 @@ END_SRC
load_plugin_settings
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