Class: ActionController::AbstractResponse
- Defined in:
- lib/action_controller/response.rb
Overview
:nodoc:
Direct Known Subclasses
Constant Summary collapse
- DEFAULT_HEADERS =
{ "Cache-Control" => "no-cache" }
Instance Attribute Summary collapse
-
#assigns ⇒ Object
Returns the value of attribute assigns.
-
#body ⇒ Object
Returns the value of attribute body.
-
#cookies ⇒ Object
Returns the value of attribute cookies.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#layout ⇒ Object
Returns the value of attribute layout.
-
#redirected_to ⇒ Object
Returns the value of attribute redirected_to.
-
#redirected_to_method_params ⇒ Object
Returns the value of attribute redirected_to_method_params.
-
#session ⇒ Object
Returns the value of attribute session.
-
#template ⇒ Object
Returns the value of attribute template.
Instance Method Summary collapse
- #charset ⇒ Object
- #charset=(encoding) ⇒ Object
- #content_type ⇒ Object
- #content_type=(mime_type) ⇒ Object
-
#initialize ⇒ AbstractResponse
constructor
A new instance of AbstractResponse.
- #redirect(to_url, permanently = false) ⇒ Object
Constructor Details
#initialize ⇒ AbstractResponse
Returns a new instance of AbstractResponse.
6 7 8 |
# File 'lib/action_controller/response.rb', line 6 def initialize @body, @headers, @session, @assigns = "", DEFAULT_HEADERS.merge("cookie" => []), [], [] end |
Instance Attribute Details
#assigns ⇒ Object
Returns the value of attribute assigns.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def assigns @assigns end |
#body ⇒ Object
Returns the value of attribute body.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def body @body end |
#cookies ⇒ Object
Returns the value of attribute cookies.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def @cookies end |
#headers ⇒ Object
Returns the value of attribute headers.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def headers @headers end |
#layout ⇒ Object
Returns the value of attribute layout.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def layout @layout end |
#redirected_to ⇒ Object
Returns the value of attribute redirected_to.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def redirected_to @redirected_to end |
#redirected_to_method_params ⇒ Object
Returns the value of attribute redirected_to_method_params.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def redirected_to_method_params @redirected_to_method_params end |
#session ⇒ Object
Returns the value of attribute session.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def session @session end |
#template ⇒ Object
Returns the value of attribute template.
4 5 6 |
# File 'lib/action_controller/response.rb', line 4 def template @template end |
Instance Method Details
#charset ⇒ Object
23 24 25 26 |
# File 'lib/action_controller/response.rb', line 23 def charset charset = String(@headers["Content-Type"]).split(";")[1] charset.blank? ? nil : charset.strip.split("=")[1] end |
#charset=(encoding) ⇒ Object
19 20 21 |
# File 'lib/action_controller/response.rb', line 19 def charset=(encoding) @headers["Content-Type"] = "#{content_type || "text/html"}; charset=#{encoding}" end |
#content_type ⇒ Object
14 15 16 17 |
# File 'lib/action_controller/response.rb', line 14 def content_type content_type = String(@headers["Content-Type"]).split(";")[0] content_type.blank? ? nil : content_type end |
#content_type=(mime_type) ⇒ Object
10 11 12 |
# File 'lib/action_controller/response.rb', line 10 def content_type=(mime_type) @headers["Content-Type"] = charset ? "#{mime_type}; charset=#{charset}" : mime_type end |
#redirect(to_url, permanently = false) ⇒ Object
28 29 30 31 32 33 |
# File 'lib/action_controller/response.rb', line 28 def redirect(to_url, permanently = false) @headers["Status"] = "302 Found" unless @headers["Status"] == "301 Moved Permanently" @headers["Location"] = to_url @body = "<html><body>You are being <a href=\"#{to_url}\">redirected</a>.</body></html>" end |