Class: Rack::Adapter::Rails
- Inherits:
-
Object
- Object
- Rack::Adapter::Rails
- Defined in:
- lib/rack/adapter/rails.rb
Defined Under Namespace
Classes: CGIWrapper
Constant Summary collapse
- FILE_METHODS =
%w(GET HEAD).freeze
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#file_exist?(path) ⇒ Boolean
TODO refactor this in File#can_serve?(path) ??.
-
#initialize(options = {}) ⇒ Rails
constructor
A new instance of Rails.
- #load_application ⇒ Object
- #serve_file(env) ⇒ Object
- #serve_rails(env) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Rails
Returns a new instance of Rails.
18 19 20 21 22 23 24 25 26 |
# File 'lib/rack/adapter/rails.rb', line 18 def initialize(={}) @root = [:root] || Dir.pwd @env = [:environment] || 'development' @prefix = [:prefix] load_application @file_server = Rack::File.new(::File.join(RAILS_ROOT, "public")) end |
Instance Method Details
#call(env) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/rack/adapter/rails.rb', line 59 def call(env) path = env['PATH_INFO'].chomp('/') method = env['REQUEST_METHOD'] cached_path = (path.empty? ? 'index' : path) + ActionController::Base.page_cache_extension if FILE_METHODS.include?(method) if file_exist?(path) # Serve the file if it's there return serve_file(env) elsif file_exist?(cached_path) # Serve the page cache if it's there env['PATH_INFO'] = cached_path return serve_file(env) end end # No static file, let Rails handle it serve_rails(env) end |
#file_exist?(path) ⇒ Boolean
TODO refactor this in File#can_serve?(path) ??
38 39 40 41 |
# File 'lib/rack/adapter/rails.rb', line 38 def file_exist?(path) full_path = ::File.join(@file_server.root, Utils.unescape(path)) ::File.file?(full_path) && ::File.readable?(full_path) end |
#load_application ⇒ Object
28 29 30 31 32 33 34 35 |
# File 'lib/rack/adapter/rails.rb', line 28 def load_application ENV['RAILS_ENV'] = @env require "#{@root}/config/environment" require 'dispatcher' ActionController::AbstractRequest.relative_url_root = @prefix if @prefix end |
#serve_file(env) ⇒ Object
43 44 45 |
# File 'lib/rack/adapter/rails.rb', line 43 def serve_file(env) @file_server.call(env) end |
#serve_rails(env) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/rack/adapter/rails.rb', line 47 def serve_rails(env) request = Request.new(env) response = Response.new = ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS cgi = CGIWrapper.new(request, response) Dispatcher.dispatch(cgi, , response) response.finish end |