Class: ActionController::UrlEncodedPairParser

Inherits:
StringScanner
  • Object
show all
Defined in:
lib/action_controller/request.rb

Overview

:nodoc:

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.



755
756
757
758
759
# File 'lib/action_controller/request.rb', line 755

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

Instance Attribute Details

#parentObject (readonly)

Returns the value of attribute parent.



753
754
755
# File 'lib/action_controller/request.rb', line 753

def parent
  @parent
end

#resultObject (readonly)

Returns the value of attribute result.



753
754
755
# File 'lib/action_controller/request.rb', line 753

def result
  @result
end

#topObject (readonly)

Returns the value of attribute top.



753
754
755
# File 'lib/action_controller/request.rb', line 753

def top
  @top
end

Instance Method Details

#parse(key, value) ⇒ Object

Parse the query string



765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
# File 'lib/action_controller/request.rb', line 765

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