summary refs log tree commit
path: root/lib/rack/file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/file.rb')
-rw-r--r--lib/rack/file.rb34
1 files changed, 1 insertions, 33 deletions
diff --git a/lib/rack/file.rb b/lib/rack/file.rb
index fc79fa2f..9acf05d1 100644
--- a/lib/rack/file.rb
+++ b/lib/rack/file.rb
@@ -62,7 +62,7 @@ module Rack
         self
       ]
 
-      ranges = self.class.byte_ranges(env, size)
+      ranges = Rack::Utils.byte_ranges(env, size)
       if ranges.nil? || ranges.length > 1
         # No ranges, or multiple ranges (which we don't support):
         # TODO: Support multiple byte-ranges
@@ -99,38 +99,6 @@ module Rack
       end
     end
 
-    # Parses the "Range:" header, if present, into an array of Range objects.
-    # Returns nil if the header is missing or syntactically invalid.
-    # Returns an empty array if none of the ranges are satisfiable.
-    def self.byte_ranges(env, size)
-      # See <http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35>
-      http_range = env['HTTP_RANGE']
-      return nil unless http_range
-      ranges = []
-      http_range.split(/,\s*/).each do |range_spec|
-        matches = range_spec.match(/bytes=(\d*)-(\d*)/)
-        return nil  unless matches
-        r0,r1 = matches[1], matches[2]
-        if r0.empty?
-          return nil  if r1.empty?
-          # suffix-byte-range-spec, represents trailing suffix of file
-          r0 = [size - r1.to_i, 0].max
-          r1 = size - 1
-        else
-          r0 = r0.to_i
-          if r1.empty?
-            r1 = size - 1
-          else
-            r1 = r1.to_i
-            return nil  if r1 < r0  # backwards range is syntactically invalid
-            r1 = size-1  if r1 >= size
-          end
-        end
-        ranges << (r0..r1)  if r0 <= r1
-      end
-      ranges
-    end
-
     private
 
     def fail(status, body)