aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_controller/response.rb
blob: 2bec477647d4c01fdb412e9a684717d5fbb32ece (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                       
                                                                                                                                 




                                                                                             
                                             
                                                                                             
                                   

                                                                                             


       
module ActionController
  class AbstractResponse #:nodoc:
    DEFAULT_HEADERS = { "Cache-Control" => "no-cache" }
    attr_accessor :body, :headers, :session, :cookies, :assigns, :template, :redirected_to, :redirected_to_method_params, :layout

    def initialize
      @body, @headers, @session, @assigns = "", DEFAULT_HEADERS.merge("cookie" => []), [], []
    end

    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
  end
end