Class: Utopia::Static::LocalFile
- Inherits:
-
Object
- Object
- Utopia::Static::LocalFile
- Defined in:
- lib/utopia/static/local_file.rb
Overview
Represents a local file on disk which can be served directly, or passed upstream to sendfile.
Constant Summary
- CONTENT_LENGTH =
Rack::CONTENT_LENGTH
- CONTENT_RANGE =
'Content-Range'.freeze
Instance Attribute Summary collapse
-
#etag ⇒ Object
readonly
Returns the value of attribute etag.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#range ⇒ Object
readonly
Returns the value of attribute range.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
Instance Method Summary collapse
-
#bytesize ⇒ Object
(also: #size)
-
#each ⇒ Object
-
#empty? ⇒ Boolean
This reflects whether calling each would yield anything.
-
#full_path ⇒ Object
-
#initialize(root, path) ⇒ LocalFile
constructor
A new instance of LocalFile.
-
#modified?(env) ⇒ Boolean
-
#mtime_date ⇒ Object
-
#serve(env, response_headers) ⇒ Object
-
#to_path ⇒ Object
Fit in with Rack::Sendfile.
Constructor Details
Instance Attribute Details
#etag ⇒ Object (readonly)
Returns the value of attribute etag
39 40 41 |
# File 'lib/utopia/static/local_file.rb', line 39 def etag @etag end |
#path ⇒ Object (readonly)
Returns the value of attribute path
38 39 40 |
# File 'lib/utopia/static/local_file.rb', line 38 def path @path end |
#range ⇒ Object (readonly)
Returns the value of attribute range
40 41 42 |
# File 'lib/utopia/static/local_file.rb', line 40 def range @range end |
#root ⇒ Object (readonly)
Returns the value of attribute root
37 38 39 |
# File 'lib/utopia/static/local_file.rb', line 37 def root @root end |
Instance Method Details
#bytesize ⇒ Object Also known as: size
55 56 57 |
# File 'lib/utopia/static/local_file.rb', line 55 def bytesize File.size(full_path) end |
#each ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/utopia/static/local_file.rb', line 66 def each File.open(full_path, "rb") do |file| file.seek(@range.begin) remaining = @range.end - @range.begin+1 while remaining > 0 break unless part = file.read([8192, remaining].min) remaining -= part.length yield part end end end |
#empty? ⇒ Boolean
This reflects whether calling each would yield anything.
60 61 62 |
# File 'lib/utopia/static/local_file.rb', line 60 def empty? bytesize == 0 end |
#full_path ⇒ Object
47 48 49 |
# File 'lib/utopia/static/local_file.rb', line 47 def full_path File.join(@root, @path.components) end |
#modified?(env) ⇒ Boolean
81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/utopia/static/local_file.rb', line 81 def modified?(env) if modified_since = env['HTTP_IF_MODIFIED_SINCE'] return false if File.mtime(full_path) <= Time.parse(modified_since) end if = env['HTTP_IF_NONE_MATCH'] = .split(/\s*,\s*/) return false if .include?(etag) || .include?('*') end return true end |
#mtime_date ⇒ Object
51 52 53 |
# File 'lib/utopia/static/local_file.rb', line 51 def mtime_date File.mtime(full_path).httpdate end |
#serve(env, response_headers) ⇒ Object
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/utopia/static/local_file.rb', line 97 def serve(env, response_headers) ranges = Rack::Utils.get_byte_ranges(env['HTTP_RANGE'], size) response = [200, response_headers, self] # puts "Requesting ranges: #{ranges.inspect} (#{size})" if ranges == nil or ranges.size != 1 # No ranges, or multiple ranges (which we don't support). # TODO: Support multiple byte-ranges, for now just send entire file: response[0] = 200 response[1][CONTENT_LENGTH] = size.to_s @range = 0...size else # Partial content: @range = ranges[0] partial_size = @range.count response[0] = 206 response[1][CONTENT_LENGTH] = partial_size.to_s response[1][CONTENT_RANGE] = "bytes #{@range.min}-#{@range.max}/#{size}" end return response end |
#to_path ⇒ Object
Fit in with Rack::Sendfile
43 44 45 |
# File 'lib/utopia/static/local_file.rb', line 43 def to_path full_path end |