Class: HTTP::FormData::Urlencoded

Inherits:
Object
  • Object
show all
Defined in:
lib/http/form_data/urlencoded.rb

Overview

application/x-www-form-urlencoded form data.

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Urlencoded

Returns a new instance of Urlencoded.

Parameters:

  • data (#to_h, Hash)

    form data key-value Hash



10
11
12
# File 'lib/http/form_data/urlencoded.rb', line 10

def initialize(data)
  @data = FormData.ensure_hash data
end

Instance Method Details

#content_lengthInteger

Returns form data content size to be used for HTTP request Content-Length header.

Returns:

  • (Integer)


32
33
34
# File 'lib/http/form_data/urlencoded.rb', line 32

def content_length
  to_s.bytesize
end

#content_typeString

Returns MIME type to be used for HTTP request Content-Type header.

Returns:

  • (String)


24
25
26
# File 'lib/http/form_data/urlencoded.rb', line 24

def content_type
  "application/x-www-form-urlencoded"
end

#to_sString

Returns content to be used for HTTP request body.

Returns:

  • (String)


17
18
19
# File 'lib/http/form_data/urlencoded.rb', line 17

def to_s
  ::URI.encode_www_form @data
end