Class: Rack::MediaType
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rack/media_type.rb |
Overview
MediaType
parse media type and parameters out of content_type string
Constant Summary
-
SPLIT_PATTERN =
# File 'lib/rack/media_type.rb', line 7/[;,]/
Class Method Summary
-
.params(content_type)
The media type parameters provided in CONTENT_TYPE as a Hash, or an empty Hash if no CONTENT_TYPE or media-type parameters were provided.
-
.type(content_type)
The media type (type/subtype) portion of the CONTENT_TYPE header without any media type parameters.
- .strip_doublequotes(str) private
Class Method Details
.params(content_type)
The media type parameters provided in CONTENT_TYPE as a Hash, or an empty Hash if no CONTENT_TYPE or media-type parameters were provided. e.g., when the CONTENT_TYPE is “text/plain;charset=utf-8”, this method responds with the following Hash:
{ 'charset' => 'utf-8' }
# File 'lib/rack/media_type.rb', line 29
def params(content_type) return {} if content_type.nil? || content_type.empty? content_type.split(SPLIT_PATTERN)[1..-1].each_with_object({}) do |s, hsh| s.strip! k, v = s.split('=', 2) k.downcase! hsh[k] = strip_doublequotes(v) end end
.strip_doublequotes(str) (private)
[ GitHub ]# File 'lib/rack/media_type.rb', line 42
def strip_doublequotes(str) (str.start_with?('"') && str.end_with?('"')) ? str[1..-2] : str end
.type(content_type)
The media type (type/subtype) portion of the CONTENT_TYPE header without any media type parameters. e.g., when CONTENT_TYPE is “text/plain;charset=utf-8”, the media-type is “text/plain”.
For more information on the use of media types in HTTP, see: www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7
# File 'lib/rack/media_type.rb', line 16
def type(content_type) return nil unless content_type && !content_type.empty? type = content_type.split(SPLIT_PATTERN, 2).first type.rstrip! type.downcase! type end