Sha256: a11b9b8012fb09b5131d1206f1189d01ada4972675affe35f10bcd40c7cec1a0

Contents?: true

Size: 1.32 KB

Versions: 23

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

require "forwardable"
require "uri"

module HTTPX::Transcoder
  module Form
    module_function

    PARAM_DEPTH_LIMIT = 32

    class Encoder
      extend Forwardable

      def_delegator :@raw, :to_s

      def_delegator :@raw, :to_str

      def_delegator :@raw, :bytesize

      def initialize(form)
        @raw = form.each_with_object("".b) do |(key, val), buf|
          HTTPX::Transcoder.normalize_keys(key, val) do |k, v|
            buf << "&" unless buf.empty?
            buf << URI.encode_www_form_component(k)
            buf << "=#{URI.encode_www_form_component(v.to_s)}" unless v.nil?
          end
        end
      end

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

    module Decoder
      module_function

      def call(response, _)
        URI.decode_www_form(response.to_s).each_with_object({}) do |(field, value), params|
          HTTPX::Transcoder.normalize_query(params, field, value, PARAM_DEPTH_LIMIT)
        end
      end
    end

    def encode(form)
      Encoder.new(form)
    end

    def decode(response)
      content_type = response.content_type.mime_type

      raise HTTPX::Error, "invalid form mime type (#{content_type})" unless content_type == "application/x-www-form-urlencoded"

      Decoder
    end
  end
  register "form", Form
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
httpx-0.20.5 lib/httpx/transcoder/form.rb
httpx-0.20.4 lib/httpx/transcoder/form.rb
httpx-0.20.3 lib/httpx/transcoder/form.rb
httpx-0.20.2 lib/httpx/transcoder/form.rb
httpx-0.20.1 lib/httpx/transcoder/form.rb
httpx-0.20.0 lib/httpx/transcoder/form.rb
httpx-0.19.8 lib/httpx/transcoder/form.rb
httpx-0.19.7 lib/httpx/transcoder/form.rb
httpx-0.19.6 lib/httpx/transcoder/form.rb
httpx-0.19.5 lib/httpx/transcoder/form.rb
httpx-0.19.4 lib/httpx/transcoder/form.rb
httpx-0.19.3 lib/httpx/transcoder/form.rb
httpx-0.19.2 lib/httpx/transcoder/form.rb
httpx-0.19.1 lib/httpx/transcoder/form.rb
httpx-0.19.0 lib/httpx/transcoder/form.rb
httpx-0.18.7 lib/httpx/transcoder/form.rb
httpx-0.18.6 lib/httpx/transcoder/form.rb
httpx-0.18.5 lib/httpx/transcoder/form.rb
httpx-0.18.4 lib/httpx/transcoder/form.rb
httpx-0.18.3 lib/httpx/transcoder/form.rb