Class: Rack::NestedParams::UrlEncodedPairParser

Inherits:
StringScanner
  • Object
show all
Defined in:
lib/rack/contrib/nested_params.rb

Constant Summary collapse

KEY_REGEXP =
%r{([^\[\]=&]+)}
BRACKETED_KEY_REGEXP =
%r{\[([^\[\]=&]+)\]}

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pairs = []) ⇒ UrlEncodedPairParser

Returns a new instance of UrlEncodedPairParser.



52
53
54
55
56
# File 'lib/rack/contrib/nested_params.rb', line 52

def initialize(pairs = [])
  super('')
  @result = {}
  pairs.each { |key, value| parse(key, value) }
end

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent.



50
51
52
# File 'lib/rack/contrib/nested_params.rb', line 50

def parent
  @parent
end

#resultObject (readonly)

Returns the value of attribute result.



50
51
52
# File 'lib/rack/contrib/nested_params.rb', line 50

def result
  @result
end

#topObject (readonly)

Returns the value of attribute top.



50
51
52
# File 'lib/rack/contrib/nested_params.rb', line 50

def top
  @top
end

Instance Method Details

#parse(key, value) ⇒ Object

Parse the query string



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/rack/contrib/nested_params.rb', line 62

def parse(key, value)
  self.string = key
  @top, @parent = result, nil

  # First scan the bare key
  key = scan(KEY_REGEXP) or return
  key = post_key_check(key)

  # Then scan as many nestings as present
  until eos?
    r = scan(BRACKETED_KEY_REGEXP) or return
    key = self[1]
    key = post_key_check(key)
  end

  bind(key, value)
end