Sha256: 26230ff718368cd2ca9f27e500f778b7746a9417f6b4b24e0d62bb8f7076c0fb
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
module Restapi class FileHandler def initialize(root) @root = root.chomp('/') @compiled_root = /^#{Regexp.escape(root)}/ @file_server = ::Rack::File.new(@root) 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 StaticDispatcher # Dispatches the statis files. Simillar to ActionDispatch::Static, but # it supports different baseurl configurations def initialize(app, path, baseurl) @app = app @baseurl = baseurl @file_handler = Restapi::FileHandler.new(path) end def call(env) case env['REQUEST_METHOD'] when 'GET', 'HEAD' path = env['PATH_INFO'].sub("#{@baseurl}/","/restapi/").chomp('/') path.sub!("#{ENV["RAILS_RELATIVE_URL_ROOT"]}",'') 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
restapi-0.0.5 | lib/restapi/static_dispatcher.rb |
restapi-0.0.4 | lib/restapi/static_dispatcher.rb |
restapi-0.0.3 | lib/restapi/static_dispatcher.rb |