1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_dispatch/middleware/static.rb

60 lines
1.2 KiB
Ruby
Raw Normal View History

2009-09-26 12:37:42 -04:00
require 'rack/utils'
module ActionDispatch
2010-09-03 06:48:21 -04:00
class FileHandler
def initialize(root)
@root = root.chomp('/')
@compiled_root = /^#{Regexp.escape(root)}/
@file_server = ::Rack::File.new(@root)
2010-09-03 06:48:21 -04:00
end
2010-09-03 06:48:21 -04:00
def match?(path)
path = path.dup
full_path = path.empty? ? @root : File.join(@root, ::Rack::Utils.unescape(path))
paths = "#{full_path}#{ext}"
matches = Dir[paths]
match = matches.detect { |m| File.file?(m) }
if match
match.sub!(@compiled_root, '')
match
2010-09-03 06:48:21 -04:00
end
end
2010-09-03 06:48:21 -04:00
def call(env)
@file_server.call(env)
end
def ext
@ext ||= begin
ext = ::ActionController::Base.page_cache_extension
"{,#{ext},/index#{ext}}"
end
end
2010-09-03 06:48:21 -04:00
end
2010-09-03 06:48:21 -04:00
class Static
2009-09-26 12:37:42 -04:00
FILE_METHODS = %w(GET HEAD).freeze
def initialize(app, path)
2009-09-26 12:37:42 -04:00
@app = app
@file_handler = FileHandler.new(path)
2009-09-26 12:37:42 -04:00
end
def call(env)
path = env['PATH_INFO'].chomp('/')
method = env['REQUEST_METHOD']
if FILE_METHODS.include?(method)
if match = @file_handler.match?(path)
env["PATH_INFO"] = match
return @file_handler.call(env)
2009-09-26 12:37:42 -04:00
end
end
@app.call(env)
end
end
end