Class: ActionController::Metal

Inherits:
AbstractController::Base show all
Includes:
Testing::Functional
Defined in:
actionpack/lib/action_controller/metal.rb,
actionpack/lib/action_controller/test_case.rb

Overview

ActionController::Metal is the simplest possible controller, providing a valid Rack interface without the additional niceties provided by ActionController::Base.

A sample metal controller might look like this:

class HelloController < ActionController::Metal
  def index
    self.response_body = "Hello World!"
  end
end

And then to route requests to your metal controller, you would add something like this to config/routes.rb:

get 'hello', to: HelloController.action(:index)

The action method returns a valid Rack application for the Rails router to dispatch to.

Rendering Helpers

ActionController::Metal by default provides no utilities for rendering views, partials, or other responses aside from explicitly calling of response_body=, content_type=, and status=. To add the render helpers you’re used to having in a normal controller, you can do the following:

class HelloController < ActionController::Metal
  include AbstractController::Rendering
  include ActionView::Layouts
  append_view_path "#{Rails.root}/app/views"

  def index
    render "hello/index"
  end
end

Redirection Helpers

To add redirection helpers to your metal controller, do the following:

class HelloController < ActionController::Metal
  include ActionController::Redirecting
  include Rails.application.routes.url_helpers

  def index
    redirect_to root_url
  end
end

Other Helpers

You can refer to the modules included in ActionController::Base to see other features you can bring into your metal controller.

Direct Known Subclasses

API, Base

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Testing::Functional

#recycle!

Methods inherited from AbstractController::Base

abstract!, action_methods, #action_methods, #action_name, #available_action?, clear_action_methods!, #controller_path, controller_path, #formats, internal_methods, method_added, #process, #response_body, supports_path?

Methods included from ActiveSupport::DescendantsTracker

clear, descendants, #descendants, #direct_descendants, direct_descendants, #inherited, store_inherited

Methods included from ActiveSupport::Configurable

#config

Methods included from ActiveSupport::Concern

#append_features, #class_methods, extended, #included

Constructor Details

#initializeMetal

Returns a new instance of Metal.



152
153
154
155
156
157
# File 'actionpack/lib/action_controller/metal.rb', line 152

def initialize
  @_request = nil
  @_response = nil
  @_routes = nil
  super
end

Class Method Details

.action(name) ⇒ Object

Returns a Rack endpoint for the given action name.



234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'actionpack/lib/action_controller/metal.rb', line 234

def self.action(name)
  app = lambda { |env|
    req = ActionDispatch::Request.new(env)
    res = make_response! req
    new.dispatch(name, req, res)
  }

  if middleware_stack.any?
    middleware_stack.build(name, app)
  else
    app
  end
end

.binary_params_for?(action) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


138
139
140
# File 'actionpack/lib/action_controller/metal.rb', line 138

def self.binary_params_for?(action) # :nodoc:
  false
end

.controller_nameObject

Returns the last part of the controller’s name, underscored, without the ending Controller. For instance, PostsController returns posts. Namespaces are left out, so Admin::PostsController returns posts as well.

Returns

  • string



128
129
130
# File 'actionpack/lib/action_controller/metal.rb', line 128

def self.controller_name
  @controller_name ||= name.demodulize.sub(/Controller$/, "").underscore
end

.dispatch(name, req, res) ⇒ Object

Direct dispatch to the controller. Instantiates the controller, then executes the action named name.



250
251
252
253
254
255
256
# File 'actionpack/lib/action_controller/metal.rb', line 250

def self.dispatch(name, req, res)
  if middleware_stack.any?
    middleware_stack.build(name) { |env| new.dispatch(name, req, res) }.call req.env
  else
    new.dispatch(name, req, res)
  end
end

.inherited(base) ⇒ Object

:nodoc:



214
215
216
217
# File 'actionpack/lib/action_controller/metal.rb', line 214

def self.inherited(base) # :nodoc:
  base.middleware_stack = middleware_stack.dup
  super
end

.make_response!(request) ⇒ Object



132
133
134
135
136
# File 'actionpack/lib/action_controller/metal.rb', line 132

def self.make_response!(request)
  ActionDispatch::Response.new.tap do |res|
    res.request = request
  end
end

.middlewareObject

Alias for middleware_stack.



229
230
231
# File 'actionpack/lib/action_controller/metal.rb', line 229

def self.middleware
  middleware_stack
end

.use(*args, &block) ⇒ Object

Pushes the given Rack middleware and its arguments to the bottom of the middleware stack.



222
223
224
# File 'actionpack/lib/action_controller/metal.rb', line 222

def use(*args, &block)
  middleware_stack.use(*args, &block)
end

Instance Method Details

#controller_nameObject

Delegates to the class’ controller_name.



143
144
145
# File 'actionpack/lib/action_controller/metal.rb', line 143

def controller_name
  self.class.controller_name
end

#dispatch(name, request, response) ⇒ Object

:nodoc:



187
188
189
190
191
192
193
# File 'actionpack/lib/action_controller/metal.rb', line 187

def dispatch(name, request, response) #:nodoc:
  set_request!(request)
  set_response!(response)
  process(name)
  request.commit_flash
  to_a
end

#paramsObject



159
160
161
# File 'actionpack/lib/action_controller/metal.rb', line 159

def params
  @_params ||= request.parameters
end

#params=(val) ⇒ Object



163
164
165
# File 'actionpack/lib/action_controller/metal.rb', line 163

def params=(val)
  @_params = val
end

#performed?Boolean

Tests if render or redirect has already happened.

Returns:

  • (Boolean)


183
184
185
# File 'actionpack/lib/action_controller/metal.rb', line 183

def performed?
  response_body || response.committed?
end

#reset_sessionObject



208
209
210
# File 'actionpack/lib/action_controller/metal.rb', line 208

def reset_session
  @_request.reset_session
end

#response_body=(body) ⇒ Object



174
175
176
177
178
179
180
# File 'actionpack/lib/action_controller/metal.rb', line 174

def response_body=(body)
  body = [body] unless body.nil? || body.respond_to?(:each)
  response.reset_body!
  return unless body
  response.body = body
  super
end

#set_request!(request) ⇒ Object

:nodoc:



199
200
201
202
# File 'actionpack/lib/action_controller/metal.rb', line 199

def set_request!(request) #:nodoc:
  @_request = request
  @_request.controller_instance = self
end

#set_response!(response) ⇒ Object

:nodoc:



195
196
197
# File 'actionpack/lib/action_controller/metal.rb', line 195

def set_response!(response) # :nodoc:
  @_response = response
end

#to_aObject

:nodoc:



204
205
206
# File 'actionpack/lib/action_controller/metal.rb', line 204

def to_a #:nodoc:
  response.to_a
end

#url_for(string) ⇒ Object

Basic url_for that can be overridden for more robust functionality.



170
171
172
# File 'actionpack/lib/action_controller/metal.rb', line 170

def url_for(string)
  string
end