response.rb 7.3 KB
Newer Older
1
require 'digest/md5'
J
Jeremy Kemper 已提交
2
require 'active_support/core_ext/module/delegation'
3

4
module ActionDispatch # :nodoc:
5 6 7 8 9 10
  # Represents an HTTP response generated by a controller action. One can use
  # an ActionController::Response object to retrieve the current state
  # of the response, or customize the response. An Response object can
  # either represent a "real" HTTP response (i.e. one that is meant to be sent
  # back to the web browser) or a test response (i.e. one that is generated
  # from integration tests). See CgiResponse and TestResponse, respectively.
P
Pratik Naik 已提交
11
  #
12 13 14 15 16
  # Response is mostly a Ruby on Rails framework implement detail, and
  # should never be used directly in controllers. Controllers should use the
  # methods defined in ActionController::Base instead. For example, if you want
  # to set the HTTP response's content MIME type, then use
  # ActionControllerBase#headers instead of Response#headers.
P
Pratik Naik 已提交
17
  #
18 19 20 21 22 23
  # Nevertheless, integration tests may want to inspect controller responses in
  # more detail, and that's when Response can be useful for application
  # developers. Integration test methods such as
  # ActionController::Integration::Session#get and
  # ActionController::Integration::Session#post return objects of type
  # TestResponse (which are of course also of type Response).
P
Pratik Naik 已提交
24 25 26 27 28 29 30 31 32 33
  #
  # For example, the following demo integration "test" prints the body of the
  # controller response to the console:
  #
  #  class DemoControllerTest < ActionController::IntegrationTest
  #    def test_print_root_path_to_console
  #      get('/')
  #      puts @response.body
  #    end
  #  end
34
  class Response < Rack::Response
D
Initial  
David Heinemeier Hansson 已提交
35
    DEFAULT_HEADERS = { "Cache-Control" => "no-cache" }
36
    attr_accessor :request
P
Pratik Naik 已提交
37

38 39 40
    attr_writer :header
    alias_method :headers=, :header=

41 42
    delegate :default_charset, :to => 'ActionController::Base'

D
Initial  
David Heinemeier Hansson 已提交
43
    def initialize
44 45
      super
      @header = Rack::Utils::HeaderHash.new(DEFAULT_HEADERS)
46
    end
47

48 49 50 51 52 53 54 55 56 57 58 59 60
    # The response code of the request
    def response_code
      status.to_s[0,3].to_i rescue 0
    end

    # Returns a String to ensure compatibility with Net::HTTPResponse
    def code
      status.to_s.split(' ')[0]
    end

    def message
      status.to_s.split(' ',2)[1] || StatusCodes::STATUS_CODES[response_code]
    end
61
    alias_method :status_message, :message
62

63 64 65 66 67
    def body
      str = ''
      each { |part| str << part.to_s }
      str
    end
68

69
    def body=(body)
70
      @body = body.respond_to?(:to_str) ? [body] : body
71 72 73 74
    end

    def body_parts
      @body
D
Initial  
David Heinemeier Hansson 已提交
75 76
    end

77 78 79 80
    def location
      headers['Location']
    end
    alias_method :redirect_url, :location
81

82 83 84
    def location=(url)
      headers['Location'] = url
    end
85

P
Pratik Naik 已提交
86 87 88 89 90 91 92 93
    # Sets the HTTP response's content MIME type. For example, in the controller
    # you could write this:
    #
    #  response.content_type = "text/plain"
    #
    # If a character set has been defined for this response (see charset=) then
    # the character set information will also be included in the content type
    # information.
94
    attr_accessor :charset, :content_type
95

96
    def last_modified
97 98 99 100 101 102 103
      if last = headers['Last-Modified']
        Time.httpdate(last)
      end
    end

    def last_modified?
      headers.include?('Last-Modified')
104
    end
105

106 107
    def last_modified=(utc_time)
      headers['Last-Modified'] = utc_time.httpdate
108
    end
109

110 111 112
    def etag
      headers['ETag']
    end
113

114 115 116
    def etag?
      headers.include?('ETag')
    end
117

118
    def etag=(etag)
119 120 121 122 123
      if etag.blank?
        headers.delete('ETag')
      else
        headers['ETag'] = %("#{Digest::MD5.hexdigest(ActiveSupport::Cache.expand_cache_key(etag))}")
      end
D
Initial  
David Heinemeier Hansson 已提交
124
    end
125

126 127 128 129 130
    def sending_file?
      headers["Content-Transfer-Encoding"] == "binary"
    end

    def assign_default_content_type_and_charset!
131 132 133 134 135 136 137 138 139
      return if !headers["Content-Type"].blank?

      @content_type ||= Mime::HTML
      @charset      ||= default_charset

      type = @content_type.to_s.dup
      type << "; charset=#{@charset}" unless sending_file?

      headers["Content-Type"] = type
140 141
    end

142
    def prepare!
143
      assign_default_content_type_and_charset!
144
      handle_conditional_get!
145
      set_content_length!
146
      convert_content_type!
147
      convert_language!
148
      convert_cookies!
149
    end
150

151 152 153 154 155
    def each(&callback)
      if @body.respond_to?(:call)
        @writer = lambda { |x| callback.call(x) }
        @body.call(self, self)
      else
156
        @body.each { |part| callback.call(part.to_s) }
157 158 159 160 161 162 163
      end

      @writer = callback
      @block.call(self) if @block
    end

    def write(str)
164 165
      str = str.to_s
      @writer.call str
166 167 168
      str
    end

169
    def set_cookie(key, value)
170
      if value.has_key?(:http_only)
171 172 173
        ActiveSupport::Deprecation.warn(
          "The :http_only option in ActionController::Response#set_cookie " +
          "has been renamed. Please use :httponly instead.", caller)
174
        value[:httponly] ||= value.delete(:http_only)
175
      end
176 177

      super(key, value)
178 179
    end

180 181 182 183 184
    # Returns the response cookies, converted to a Hash of (name => value) pairs
    #
    #   assert_equal 'AuthorOfNewPage', r.cookies['author']
    def cookies
      cookies = {}
185 186 187 188 189 190 191 192
      if header = headers['Set-Cookie']
        header = header.split("\n") if header.respond_to?(:to_str)
        header.each do |cookie|
          if pair = cookie.split(';').first
            key, value = pair.split("=").map { |v| Rack::Utils.unescape(v) }
            cookies[key] = value
          end
        end
193 194 195 196
      end
      cookies
    end

197
    private
198 199 200 201 202 203 204 205
      def handle_conditional_get!
        if etag? || last_modified?
          set_conditional_cache_control!
        elsif nonempty_ok_response?
          self.etag = body

          if request && request.etag_matches?(etag)
            self.status = '304 Not Modified'
206
            self.body = []
207 208 209 210
          end

          set_conditional_cache_control!
        end
211 212
      end

213
      def nonempty_ok_response?
214
        ok = !status || status.to_s[0..2] == '200'
J
Jeremy Kemper 已提交
215 216 217 218 219
        ok && string_body?
      end

      def string_body?
        !body_parts.respond_to?(:call) && body_parts.any? && body_parts.all? { |part| part.is_a?(String) }
220 221 222 223 224 225 226 227
      end

      def set_conditional_cache_control!
        if headers['Cache-Control'] == DEFAULT_HEADERS['Cache-Control']
          headers['Cache-Control'] = 'private, max-age=0, must-revalidate'
        end
      end

228
      def convert_content_type!
229 230
        headers['Content-Type'] ||= "text/html"
        headers['Content-Type'] += "; charset=" + headers.delete('charset') if headers['charset']
231
      end
232

233 234
      # Don't set the Content-Length for block-based bodies as that would mean
      # reading it all into memory. Not nice for, say, a 2GB streaming file.
235
      def set_content_length!
236 237 238 239
        if status && status.to_s[0..2] == '204'
          headers.delete('Content-Length')
        elsif length = headers['Content-Length']
          headers['Content-Length'] = length.to_s
J
Jeremy Kemper 已提交
240
        elsif string_body? && (!status || status.to_s[0..2] != '304')
241
          headers["Content-Length"] = Rack::Utils.bytesize(body).to_s
242
        end
243 244 245 246 247 248
      end

      def convert_language!
        headers["Content-Language"] = headers.delete("language") if headers["language"]
      end

249
      def convert_cookies!
250 251 252 253 254 255 256
        headers['Set-Cookie'] =
          if header = headers['Set-Cookie']
            header = header.split("\n") if header.respond_to?(:to_str)
            header.compact
          else
            []
          end
257
      end
D
Initial  
David Heinemeier Hansson 已提交
258
  end
259
end