Sha256: bbf86a117d811b2f68071b51dfc0622c5c1e5fa30e4aad097d03570961c779fa

Contents?: true

Size: 1.69 KB

Versions: 14

Compression:

Stored size: 1.69 KB

Contents

# :stopdoc:

# Stolen from ruby core's uri/common.rb, with modifications to support 1.8.x
#
# https://github.com/ruby/ruby/blob/trunk/lib/uri/common.rb
#
#

module URI
  begin
    TBLENCWWWCOMP_ = {} # :nodoc:
    256.times do |i|
      TBLENCWWWCOMP_[i.chr] = '%%%02X' % i
    end
    TBLENCWWWCOMP_[' '] = '+'
    TBLENCWWWCOMP_.freeze
    TBLDECWWWCOMP_ = {} # :nodoc:
    256.times do |i|
      h, l = i>>4, i&15
      TBLDECWWWCOMP_['%%%X%X' % [h, l]] = i.chr
      TBLDECWWWCOMP_['%%%x%X' % [h, l]] = i.chr
      TBLDECWWWCOMP_['%%%X%x' % [h, l]] = i.chr
      TBLDECWWWCOMP_['%%%x%x' % [h, l]] = i.chr
    end
    TBLDECWWWCOMP_['+'] = ' '
    TBLDECWWWCOMP_.freeze
  rescue Exception
  end

  # Encode given +s+ to URL-encoded form data.
  #
  # This method doesn't convert *, -, ., 0-9, A-Z, _, a-z, but does convert SP
  # (ASCII space) to + and converts others to %XX.
  #
  # This is an implementation of
  # http://www.w3.org/TR/html5/forms.html#url-encoded-form-data
  #
  # See URI.decode_www_form_component, URI.encode_www_form
  def self.encode_www_form_component(s)
    str = s.to_s
    if RUBY_VERSION < "1.9" && $KCODE =~ /u/i
      str.gsub(/([^ a-zA-Z0-9_.-]+)/) do
        '%' + $1.unpack('H2' * Rack::Utils.bytesize($1)).join('%').upcase
      end.tr(' ', '+')
    else
      str.gsub(/[^*\-.0-9A-Z_a-z]/) {|m| TBLENCWWWCOMP_[m]}
    end
  end

  # Decode given +str+ of URL-encoded form data.
  #
  # This decodes + to SP.
  #
  # See URI.encode_www_form_component, URI.decode_www_form
  def self.decode_www_form_component(str, enc=nil)
    raise ArgumentError, "invalid %-encoding (#{str})" unless /\A(?:%[0-9a-fA-F]{2}|[^%])*\z/ =~ str
    str.gsub(/\+|%[0-9a-fA-F]{2}/) {|m| TBLDECWWWCOMP_[m]}
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
puma-3.6.2-java lib/puma/rack/backports/uri/common_18.rb
puma-3.6.2 lib/puma/rack/backports/uri/common_18.rb
puma-3.6.1-java lib/puma/rack/backports/uri/common_18.rb
puma-3.6.1 lib/puma/rack/backports/uri/common_18.rb
puma-3.6.0-java lib/puma/rack/backports/uri/common_18.rb
puma-3.6.0 lib/puma/rack/backports/uri/common_18.rb
puma-3.5.2-java lib/puma/rack/backports/uri/common_18.rb
puma-3.5.2 lib/puma/rack/backports/uri/common_18.rb
puma-3.5.1-java lib/puma/rack/backports/uri/common_18.rb
puma-3.5.1 lib/puma/rack/backports/uri/common_18.rb
puma-3.5.0-java lib/puma/rack/backports/uri/common_18.rb
puma-3.5.0 lib/puma/rack/backports/uri/common_18.rb
puma-3.4.0-java lib/puma/rack/backports/uri/common_18.rb
puma-3.4.0 lib/puma/rack/backports/uri/common_18.rb