Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
More atrubyonrails.org:

Rails on Rack

This guide covers Rails integration with Rack and interfacing with other Rack components.

After reading this guide, you will know:

  • How to use Rack Middlewares in your Rails applications.
  • Action Pack's internal Middleware stack.
  • How to define a custom Middleware stack.

This guide assumes a working knowledge of Rack protocol and Rack concepts such as middlewares, URL maps, andRack::Builder.

1. Introduction to Rack

Rack provides a minimal, modular, and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.

Explaining how Rack works is not really in the scope of this guide. In case youare not familiar with Rack's basics, you should check out theResourcessection below.

2. Rails on Rack

2.1. Rails Application's Rack Object

Rails.application is the primary Rack application object of a Railsapplication. Any Rack compliant web server should be usingRails.application object to serve a Rails application.

2.2.bin/rails server

bin/rails server does the basic job of creating aRack::Server object and starting the web server.

Here's howbin/rails server creates an instance ofRack::Server

Rails::Server.new.tapdo|server|requireAPP_PATHDir.chdir(Rails.application.root)server.startend

TheRails::Server inherits fromRack::Server and calls theRack::Server#start method this way:

classServer<::Rack::Serverdefstart# ...superendend

2.3. Development and Auto-reloading

Middlewares are loaded once and are not monitored for changes. You will have to restart the server for changes to be reflected in the running application.

3. Action Dispatcher Middleware Stack

Many of Action Dispatcher's internal components are implemented as Rack middlewares.Rails::Application usesActionDispatch::MiddlewareStack to combine various internal and external middlewares to form a complete Rails Rack application.

ActionDispatch::MiddlewareStack is Rails' equivalent ofRack::Builder,but is built for better flexibility and more features to meet Rails' requirements.

3.1. Inspecting Middleware Stack

Rails has a handy command for inspecting the middleware stack in use:

$bin/railsmiddleware

For a freshly generated Rails application, this might produce something like:

useActionDispatch::HostAuthorizationuseRack::SendfileuseActionDispatch::StaticuseActionDispatch::ExecutoruseActionDispatch::ServerTiminguseActiveSupport::Cache::Strategy::LocalCache::MiddlewareuseRack::RuntimeuseRack::MethodOverrideuseActionDispatch::RequestIduseActionDispatch::RemoteIpuseSprockets::Rails::QuietAssetsuseRails::Rack::LoggeruseActionDispatch::ShowExceptionsuseWebConsole::MiddlewareuseActionDispatch::DebugExceptionsuseActionDispatch::ActionableExceptionsuseActionDispatch::ReloaderuseActionDispatch::CallbacksuseActiveRecord::Migration::CheckPendinguseActionDispatch::CookiesuseActionDispatch::Session::CookieStoreuseActionDispatch::FlashuseActionDispatch::ContentSecurityPolicy::MiddlewareuseRack::HeaduseRack::ConditionalGetuseRack::ETaguseRack::TempfileReaperrunMyApp::Application.routes

The default middlewares shown here (and some others) are each summarized in theInternal Middlewares section, below.

3.2. Configuring Middleware Stack

Rails provides a simple configuration interfaceconfig.middleware for adding, removing, and modifying the middlewares in the middleware stack viaapplication.rb or the environment specific configuration fileenvironments/<environment>.rb.

3.2.1. Adding a Middleware

You can add a new middleware to the middleware stack using any of the following methods:

  • config.middleware.use(new_middleware, args) - Adds the new middleware at the bottom of the middleware stack.

  • config.middleware.insert_before(existing_middleware, new_middleware, args) - Adds the new middleware before the specified existing middleware in the middleware stack.

  • config.middleware.insert_after(existing_middleware, new_middleware, args) - Adds the new middleware after the specified existing middleware in the middleware stack.

# config/application.rb# Push Rack::BounceFavicon at the bottomconfig.middleware.useRack::BounceFavicon# Add Lifo::Cache after ActionDispatch::Executor.# Pass { page_cache: false } argument to Lifo::Cache.config.middleware.insert_afterActionDispatch::Executor,Lifo::Cache,page_cache:false

3.2.2. Swapping a Middleware

You can swap an existing middleware in the middleware stack usingconfig.middleware.swap.

# config/application.rb# Replace ActionDispatch::ShowExceptions with Lifo::ShowExceptionsconfig.middleware.swapActionDispatch::ShowExceptions,Lifo::ShowExceptions

3.2.3. Moving a Middleware

You can move an existing middleware in the middleware stack usingconfig.middleware.move_before andconfig.middleware.move_after.

# config/application.rb# Move ActionDispatch::ShowExceptions to before Lifo::ShowExceptionsconfig.middleware.move_beforeLifo::ShowExceptions,ActionDispatch::ShowExceptions
# config/application.rb# Move ActionDispatch::ShowExceptions to after Lifo::ShowExceptionsconfig.middleware.move_afterLifo::ShowExceptions,ActionDispatch::ShowExceptions

3.2.4. Deleting a Middleware

Add the following lines to your application configuration:

# config/application.rbconfig.middleware.deleteRack::Runtime

And now if you inspect the middleware stack, you'll find thatRack::Runtime isnot a part of it.

$bin/railsmiddleware(in /Users/lifo/Rails/blog)use ActionDispatch::Staticuse #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x00000001c304c8>...run Rails.application.routes

If you want to remove session related middleware, do the following:

# config/application.rbconfig.middleware.deleteActionDispatch::Cookiesconfig.middleware.deleteActionDispatch::Session::CookieStoreconfig.middleware.deleteActionDispatch::Flash

And to remove browser related middleware,

# config/application.rbconfig.middleware.deleteRack::MethodOverride

If you want an error to be raised when you try to delete a non-existent item, usedelete! instead.

# config/application.rbconfig.middleware.delete!ActionDispatch::Executor

3.3. Internal Middleware Stack

Much of Action Controller's functionality is implemented as Middlewares. The following list explains the purpose of each of them:

ActionDispatch::HostAuthorization

  • Guards from DNS rebinding attacks by explicitly permitting the hosts a request can be sent to. See theconfiguration guide for configuration instructions.

Rack::Sendfile

ActionDispatch::Static

Rack::Lock

  • Setsenv["rack.multithread"] flag tofalse and wraps the application within a Mutex.

ActionDispatch::Executor

  • Used for thread safe code reloading during development.

ActionDispatch::ServerTiming

  • Sets aServer-Timing header containing performance metrics for the request.

ActiveSupport::Cache::Strategy::LocalCache::Middleware

  • Used for memory caching. This cache is not thread safe.

Rack::Runtime

  • Sets an X-Runtime header, containing the time (in seconds) taken to execute the request.

Rack::MethodOverride

  • Allows the method to be overridden ifparams[:_method] is set. This is the middleware which supports the PUT and DELETE HTTP method types.

ActionDispatch::RequestId

  • Makes a uniqueX-Request-Id header available to the response and enables theActionDispatch::Request#request_id method.

ActionDispatch::RemoteIp

  • Checks for IP spoofing attacks.

Sprockets::Rails::QuietAssets

  • Suppresses logger output for asset requests.

Rails::Rack::Logger

  • Notifies the logs that the request has begun. After the request is complete, flushes all the logs.

ActionDispatch::ShowExceptions

  • Rescues any exception returned by the application and calls an exceptions app that will wrap it in a format for the end user.

ActionDispatch::DebugExceptions

  • Responsible for logging exceptions and showing a debugging page in case the request is local.

ActionDispatch::ActionableExceptions

  • Provides a way to dispatch actions from Rails' error pages.

ActionDispatch::Reloader

  • Provides prepare and cleanup callbacks, intended to assist with code reloading during development.

ActionDispatch::Callbacks

  • Provides callbacks to be executed before and after dispatching the request.

ActiveRecord::Migration::CheckPending

  • Checks pending migrations and raisesActiveRecord::PendingMigrationError if any migrations are pending.

ActionDispatch::Cookies

  • Sets cookies for the request.

ActionDispatch::Session::CookieStore

  • Responsible for storing the session in cookies.

ActionDispatch::Flash

ActionDispatch::ContentSecurityPolicy::Middleware

  • Provides a DSL to configure a Content-Security-Policy header.

Rack::Head

  • Returns an empty body for all HEAD requests. It leaves all other requests unchanged.

Rack::ConditionalGet

  • Adds support for "ConditionalGET" so that server responds with nothing if the page wasn't changed.

Rack::ETag

  • Adds ETag header on all String bodies. ETags are used to validate cache.

Rack::TempfileReaper

  • Cleans up tempfiles used to buffer multipart requests.

It's possible to use any of the above middlewares in your custom Rack stack.

4. Resources

4.1. Learning Rack

4.2. Understanding Middlewares



Back to top
[8]ページ先頭

©2009-2025 Movatter.jp