module Ethon::Easy::Http::Postable

This module contains logic for setting up a [multipart] POST body.

Public Instance Methods

set_form(easy) click to toggle source

Set things up when form is provided. Deals with multipart forms.

@example Setup.

post.set_form(easy)

@param [ Easy ] easy The easy to setup.

# File lib/ethon/easy/http/postable.rb, line 16
def set_form(easy)
  easy.url ||= url
  form.params_encoding = params_encoding
  if form.multipart?
    form.escape = false
    form.materialize
    easy.httppost = form.first.read_pointer
  else
    form.escape = easy.escape?
    easy.postfieldsize = form.to_s.bytesize
    easy.copypostfields = form.to_s
  end
end