File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module Rack
4
4
# Rack::MediaType parse media type and parameters out of content_type string
5
5
6
6
class MediaType
7
- SPLIT_PATTERN = %r{ \s * [;,]\s *}
7
+ SPLIT_PATTERN = / [;,]/
8
8
9
9
class << self
10
10
# The media type (type/subtype) portion of the CONTENT_TYPE header
@@ -15,7 +15,11 @@ class << self
15
15
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7
16
16
def type ( content_type )
17
17
return nil unless content_type
18
- content_type . split ( SPLIT_PATTERN , 2 ) . first . tap &:downcase!
18
+ if type = content_type . split ( SPLIT_PATTERN , 2 ) . first
19
+ type . rstrip!
20
+ type . downcase!
21
+ type
22
+ end
19
23
end
20
24
21
25
# The media type parameters provided in CONTENT_TYPE as a Hash, or
@@ -27,9 +31,10 @@ def params(content_type)
27
31
return { } if content_type . nil?
28
32
29
33
content_type . split ( SPLIT_PATTERN ) [ 1 ..-1 ] . each_with_object ( { } ) do |s , hsh |
34
+ s . strip!
30
35
k , v = s . split ( '=' , 2 )
31
-
32
- hsh [ k . tap ( & :downcase! ) ] = strip_doublequotes ( v )
36
+ k . downcase!
37
+ hsh [ k ] = strip_doublequotes ( v )
33
38
end
34
39
end
35
40
You can’t perform that action at this time.
0 commit comments