Sha256: 1f3d2c4e0a0f5a110f70aeb7b370cb1860b70d47ef92f53e9a6b531e790e8d0b
Contents?: true
Size: 1.77 KB
Versions: 9
Compression:
Stored size: 1.77 KB
Contents
module Merb module Rack class Static < Merb::Rack::Middleware def initialize(app,directory) super(app) @static_server = ::Rack::File.new(directory) end def call(env) path = if env[Merb::Const::PATH_INFO] env[Merb::Const::PATH_INFO].chomp(Merb::Const::SLASH) else Merb::Const::EMPTY_STRING end cached_path = (path.empty? ? 'index' : path) + '.html' if file_exist?(path) && env[Merb::Const::REQUEST_METHOD] =~ /GET|HEAD/ # Serve the file if it's there and the request method is GET or HEAD serve_static(env) elsif file_exist?(cached_path) && env[Merb::Const::REQUEST_METHOD] =~ /GET|HEAD/ # Serve the page cache if it's there and the request method is GET or HEAD env[Merb::Const::PATH_INFO] = cached_path serve_static(env) elsif path =~ /favicon\.ico/ return [404, { Merb::Const::CONTENT_TYPE => Merb::Const::TEXT_SLASH_HTML }, "404 Not Found."] else @app.call(env) end end # ==== Parameters # path<String>:: The path to the file relative to the server root. # # ==== Returns # Boolean:: True if file exists under the server root and is readable. def file_exist?(path) full_path = ::File.join(@static_server.root, ::Merb::Parse.unescape(path)) ::File.file?(full_path) && ::File.readable?(full_path) end # ==== Parameters # env<Hash>:: Environment variables to pass on to the server. def serve_static(env) env[Merb::Const::PATH_INFO] = ::Merb::Parse.unescape(env[Merb::Const::PATH_INFO]) @static_server.call(env) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems