Sha256: 35b284226fb39fc104f75958a293eea42cf6149b435803658766a99348e76f97
Contents?: true
Size: 1.52 KB
Versions: 2
Compression:
Stored size: 1.52 KB
Contents
module Rack::Accept # Represents an HTTP Accept-Encoding header according to the HTTP 1.1 # specification, and provides several convenience methods for determining # acceptable content encodings. # # See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html for more # information. class Encoding include Header attr_reader :qvalues def initialize(header) @qvalues = parse(header) end # The name of this header. def name 'Accept-Encoding' end # The value of this header, built from its internal representation. def value join(@qvalues) end # Returns an array of all encoding values that were specified in the # original header, in no particular order. def values @qvalues.keys end # Determines the quality factor (qvalue) of the given +encoding+, # according to the specifications of the original header. def qvalue(encoding) m = matches(encoding) if m.empty? encoding == 'identity' ? 1 : 0 else @qvalues[m.first] end end # Returns an array of encodings from the original header that match # the given +encoding+, ordered by precedence. def matches(encoding) values.select {|v| v == encoding || v == '*' }.sort {|a, b| # "*" gets least precedence, any others should be equal. a == '*' ? 1 : (b == '*' ? -1 : 0) } end # Returns a string representation of this header. def to_s [name, value].join(': ') end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rack-accept-0.1.1 | lib/rack/accept/encoding.rb |
rack-accept-0.1 | lib/rack/accept/encoding.rb |