aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/rack_convenience.rb
blob: 5dfa7d12f32c852e3bd82b6e5c2d5550f4c1de34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module ActionController
  module RackConvenience
    extend ActiveSupport::Concern

    included do
      delegate :headers, :status=, :location=,
               :status, :location, :content_type, :to => "@_response"
      attr_internal :request, :response
    end

    def call(name, env)
      @_request = ActionDispatch::Request.new(env)
      @_response = ActionDispatch::Response.new
      @_response.request = request
      super
    end

    def params
      @_params ||= @_request.parameters
    end

    # :api: private
    def to_rack
      @_response.prepare!
      @_response.to_a
    end

    def response_body=(body)
      response.body = body if response
      super
    end
  end
end