1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/core/json.rb
Nelvin Driz 530d860a04 [openstack] Fix Authentication as well as Fog::JSON call bugs
Signed-off-by: Nelvin Driz <nelvindriz@live.com>
2012-04-30 10:35:03 +08:00

46 lines
905 B
Ruby

require 'multi_json'
module Fog
module JSON
def self.sanitize(data)
case data
when Array
data.map {|datum| sanitize(datum)}
when Hash
for key, value in data
data[key] = sanitize(value)
end
when ::Time
data.strftime("%Y-%m-%dT%H:%M:%SZ")
else
data
end
end
# Do the MultiJson introspection at this level so we can define our encode/decode methods and perform
# the introspection only once rather than once per call.
if MultiJson.respond_to?(:dump)
def self.encode(obj)
MultiJson.dump(obj)
end
else
def self.encode(obj)
MultiJson.encode(obj)
end
end
if MultiJson.respond_to?(:load)
def self.decode(obj)
MultiJson.load(obj)
end
else
def self.decode(obj)
MultiJson.decode(obj)
end
end
end
end