Class: WebMock::Util::JSON

Inherits:
Object
  • Object
show all
Defined in:
lib/webmock/util/json.rb

Defined Under Namespace

Classes: ParseError

Class Method Summary collapse

Class Method Details

.convert_json_to_yaml(json) ⇒ Object

Ensure that “:” and “,” are always followed by a space



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/webmock/util/json.rb', line 26

def self.convert_json_to_yaml(json) #:nodoc:
  scanner, quoting, marks, times = StringScanner.new(json), false, [], []
  while scanner.scan_until(/(\\['"]|['":,\\]|\\.)/)
    case char = scanner[1]
    when '"', "'"
      if !quoting
        quoting = char
      elsif quoting == char
        quoting = false
      end
    when ":",","
        marks << scanner.pos - 1 unless quoting
    when "\\"
        scanner.skip(/\\/)
    end
  end

  if marks.empty?
    json.gsub(/\\\//, '/')
  else
    left_pos  = [-1].push(*marks)
    right_pos = marks << json.bytesize
    output    = []

    left_pos.each_with_index do |left, i|
      if json.respond_to?(:byteslice)
        output << json.byteslice(left.succ..right_pos[i])
      else
        output << json[left.succ..right_pos[i]]
      end
    end

    output = output * " "

    times.each { |i| output[i-1] = ' ' }
    output.gsub!(/\\\//, '/')
    output
  end
end

.parse(json) ⇒ Object



13
14
15
16
17
18
# File 'lib/webmock/util/json.rb', line 13

def self.parse(json)
  yaml = unescape(convert_json_to_yaml(json))
  YAML.load(yaml)
rescue ArgumentError => e
  raise ParseError, "Invalid JSON string: #{yaml}, Error: #{e.inspect}"
end

.unescape(str) ⇒ Object



21
22
23
# File 'lib/webmock/util/json.rb', line 21

def self.unescape(str)
  str.gsub(/\\u([0-9a-f]{4})/) { [$1.hex].pack("U") }
end