Class: ActionController::Metal

Inherits:
AbstractController::Base show all
Includes:
Testing::Functional
Defined in:
lib/action_controller/metal.rb,
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, #available_action?, clear_action_methods!, controller_path, #controller_path, internal_methods, method_added, #process, supports_path?

Constructor Details

#initializeMetal

Returns a new instance of Metal.



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

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.



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

def self.action(name)
  if middleware_stack.any?
    middleware_stack.build(name) do |env|
      req = ActionDispatch::Request.new(env)
      res = make_response! req
      new.dispatch(name, req, res)
    end
  else
    lambda { |env|
      req = ActionDispatch::Request.new(env)
      res = make_response! req
      new.dispatch(name, req, res)
    }
  end
end

.binary_params_for?(action) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


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

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



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

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.



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

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 'lib/action_controller/metal.rb', line 214

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

.make_response!(request) ⇒ Object



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

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

.middlewareObject

Alias for middleware_stack.



226
227
228
# File 'lib/action_controller/metal.rb', line 226

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.



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

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

Instance Method Details

#controller_nameObject

Delegates to the class’ controller_name.



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

def controller_name
  self.class.controller_name
end

#dispatch(name, request, response) ⇒ Object

:nodoc:



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

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

#paramsObject



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

def params
  @_params ||= request.parameters
end

#params=(val) ⇒ Object



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

def params=(val)
  @_params = val
end

#performed?Boolean

Tests if render or redirect has already happened.

Returns:

  • (Boolean)


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

def performed?
  response_body || response.committed?
end

#reset_sessionObject



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

def reset_session
  @_request.reset_session
end

#response_body=(body) ⇒ Object



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

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:



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

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

#set_response!(response) ⇒ Object

:nodoc:



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

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

#to_aObject

:nodoc:



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

def to_a #:nodoc:
  response.to_a
end

#url_for(string) ⇒ Object

Basic url_for that can be overridden for more robust functionality.



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

def url_for(string)
  string
end