Class: Utopia::Middleware::Static
- Inherits:
-
Object
- Object
- Utopia::Middleware::Static
- Defined in:
- lib/utopia/middleware/static.rb
Defined Under Namespace
Classes: LocalFile
Constant Summary collapse
- MIME_TYPES =
{ :xiph => { "ogx" => "application/ogg", "ogv" => "video/ogg", "oga" => "audio/ogg", "ogg" => "audio/ogg", "spx" => "audio/ogg", "flac" => "audio/flac", "anx" => "application/annodex", "axa" => "audio/annodex", "xspf" => "application/xspf+xml", }, :media => [ :xiph, "mp3", "mp4", "wav", "aiff", ["aac", "audio/x-aac"], "mov", "avi", "wmv", "mpg" ], :text => [ "html", "css", "js", "txt", "rtf", "xml", "pdf" ], :fonts => [ "otf", ["eot", "application/vnd.ms-fontobject"], "ttf", "woff" ], :archive => [ "zip", "tar", "tgz", "tar.gz", "tar.bz2", ["dmg", "application/x-apple-diskimage"], ["torrent", "application/x-bittorrent"] ], :images => [ "png", "gif", "jpeg", "tiff", "svg" ], :default => [ :media, :text, :archive, :images, :fonts ] }
Instance Attribute Summary collapse
-
#extensions ⇒ Object
readonly
Returns the value of attribute extensions.
Instance Method Summary collapse
- #call(env) ⇒ Object
- #fetch_file(path) ⇒ Object
-
#initialize(app, options = {}) ⇒ Static
constructor
A new instance of Static.
- #lookup_relative_file(path) ⇒ Object
Constructor Details
#initialize(app, options = {}) ⇒ Static
Returns a new instance of Static.
204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/utopia/middleware/static.rb', line 204 def initialize(app, = {}) @app = app @root = [:root] || Utopia::Middleware::default_root if [:types] @extensions = load_mime_types([:types]) else @extensions = load_mime_types(MIME_TYPES[:default]) end @cache_control = [:cache_control] || "public, max-age=3600" end |
Instance Attribute Details
#extensions ⇒ Object (readonly)
Returns the value of attribute extensions.
261 262 263 |
# File 'lib/utopia/middleware/static.rb', line 261 def extensions @extensions end |
Instance Method Details
#call(env) ⇒ Object
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 |
# File 'lib/utopia/middleware/static.rb', line 263 def call(env) request = Rack::Request.new(env) ext = File.extname(request.path_info) if @extensions.key? ext.downcase path = Path.create(request.path_info).simplify if file = fetch_file(path) response_headers = { "Last-Modified" => file.mtime_date, "Content-Type" => @extensions[ext], "Cache-Control" => @cache_control, "ETag" => file.etag, "Accept-Ranges" => "bytes" } if file.modified?(env) return file.serve(env, response_headers) else return [304, response_headers, []] end elsif redirect = lookup_relative_file(path) return [307, {"Location" => redirect}, []] end end # else if no file was found: return @app.call(env) end |
#fetch_file(path) ⇒ Object
217 218 219 220 221 222 223 224 225 226 |
# File 'lib/utopia/middleware/static.rb', line 217 def fetch_file(path) # We need file_path to be an absolute path for X-Sendfile to work correctly. file_path = File.join(@root, path.components) if File.exist?(file_path) return LocalFile.new(@root, path) else return nil end end |
#lookup_relative_file(path) ⇒ Object
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/utopia/middleware/static.rb', line 228 def lookup_relative_file(path) file = nil name = path.basename if split = path.split("@rel@") path = split[0] name = split[1].components # Fix a problem if the browser request has multiple @rel@ # This normally indicates a browser bug.. :( name = name.dup name.delete("@rel@") else path = path.dirname # Relative lookups are not done unless explicitly required by @rel@ # ... but they do work. This is a performance optimization. return nil end # LOG.debug("Searching for #{name.inspect} starting in #{path.components}") path.ascend do |parent_path| file_path = File.join(@root, parent_path.components, name) # LOG.debug("File path: #{file_path}") if File.exist?(file_path) return (parent_path + name).to_s end end return nil end |