Sha256: e35727953dc9974ceb26c1b4d7815b262739e527503a51847483a93c51064010

Contents?: true

Size: 1.34 KB

Versions: 10

Compression:

Stored size: 1.34 KB

Contents

module Apipie

  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 = Apipie::FileHandler.new(path)
    end

    def call(env)
      case env['REQUEST_METHOD']
      when 'GET', 'HEAD'
        path = env['PATH_INFO'].sub("#{@baseurl}/","/apipie/").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

10 entries across 10 versions & 2 rubygems

Version Path
jmoses_apipie-rails-0.0.23 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.22 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.21 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.20 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.19 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.18 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.17 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.16 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.15 lib/apipie/static_dispatcher.rb
apipie-rails-0.0.14 lib/apipie/static_dispatcher.rb