Sha256: 1c116d2a475ed16c4f0304f09962f20191c5a2dfcd8d21ff4786a16e050fc4ca

Contents?: true

Size: 1.22 KB

Versions: 37

Compression:

Stored size: 1.22 KB

Contents

require 'rack/utils'

module ActionDispatch
  class FileHandler
    def initialize(root, cache_control)
      @root          = root.chomp('/')
      @compiled_root = /^#{Regexp.escape(root)}/
      @file_server   = ::Rack::File.new(@root, cache_control)
    end

    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
      end
    end

    def call(env)
      @file_server.call(env)
    end

    def ext
      @ext ||= begin
        ext = ::ActionController::Base.page_cache_extension
        "{,#{ext},/index#{ext}}"
      end
    end
  end

  class Static
    def initialize(app, path, cache_control=nil)
      @app = app
      @file_handler = FileHandler.new(path, cache_control)
    end

    def call(env)
      case env['REQUEST_METHOD']
      when 'GET', 'HEAD'
        path = env['PATH_INFO'].chomp('/')
        if match = @file_handler.match?(path)
          env["PATH_INFO"] = match
          return @file_handler.call(env)
        end
      end

      @app.call(env)
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
challah-0.6.1 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.6.0 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.5.4 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.5.3 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.5.2 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.5.0 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.4.1 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.4.0 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.5 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.4 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.3 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.2 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.1 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.3.0 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.2.1 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
challah-0.2.0 vendor/bundle/gems/actionpack-3.2.1/lib/action_dispatch/middleware/static.rb
actionpack-3.2.1 lib/action_dispatch/middleware/static.rb
actionpack-3.2.0 lib/action_dispatch/middleware/static.rb
actionpack-3.2.0.rc2 lib/action_dispatch/middleware/static.rb
actionpack-3.2.0.rc1 lib/action_dispatch/middleware/static.rb