1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Fixed unescaping umlauts. (siebertm)

This commit is contained in:
John Nunemaker 2009-02-10 23:37:48 -05:00
parent 98230a5837
commit 98e1ccfcf7
2 changed files with 18 additions and 10 deletions

View file

@ -13,12 +13,19 @@ module HTTParty
end
def self.decode(json)
YAML.load(convert_json_to_yaml(json))
YAML.load(unescape(convert_json_to_yaml(json)))
rescue ArgumentError => e
raise ParseError, "Invalid JSON string"
end
protected
def self.unescape(str)
str.gsub(/\\u([0-9a-f]{4})/) {
[$1.hex].pack("U")
}
end
# matches YAML-formatted dates
DATE_REGEX = /^\d{4}-\d{2}-\d{2}|\d{4}-\d{1,2}-\d{1,2}[ \t]+\d{1,2}:\d{2}:\d{2}(\.[0-9]*)?(([ \t]*)Z|[-+]\d{2}?(:\d{2})?)?$/

View file

@ -2,6 +2,7 @@ require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')
describe HTTParty::Parsers::JSON do
TESTS = {
%q({"data": "G\u00fcnter"}) => {"data" => "Günter"},
%q({"returnTo":{"\/categories":"\/"}}) => {"returnTo" => {"/categories" => "/"}},
%q({returnTo:{"\/categories":"\/"}}) => {"returnTo" => {"/categories" => "/"}},
%q({"return\\"To\\":":{"\/categories":"\/"}}) => {"return\"To\":" => {"/categories" => "/"}},