“98dd726687259b96fad15cc073c610fda7fc1023”上不存在“actionpack/lib/action_dispatch/testing/integration.rb”
mime_responds.rb 11.5 KB
Newer Older
1
require 'active_support/core_ext/array/extract_options'
2 3
require 'abstract_controller/collector'

4
module ActionController #:nodoc:
5
  module MimeResponds
6 7
    extend ActiveSupport::Concern

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    module ClassMethods
      def respond_to(*)
        raise NoMethodError, "The controller-level `respond_to' feature has " \
          "been extracted to the `responder` gem. Add it to your Gemfile to " \
          "continue using this feature. Consult the Rails upgrade guide for " \
          "details."
      end
    end

    def respond_with(*)
      raise NoMethodError, "The `respond_with' feature has been extracted " \
        "to the `responder` gem. Add it to your Gemfile to continue using " \
        "this feature. Consult the Rails upgrade guide for details."
    end

23 24 25 26
    # Without web-service support, an action which collects the data for displaying a list of people
    # might look something like this:
    #
    #   def index
27
    #     @people = Person.all
28 29 30 31 32
    #   end
    #
    # Here's the same action, with web-service support baked in:
    #
    #   def index
33
    #     @people = Person.all
34 35 36
    #
    #     respond_to do |format|
    #       format.html
A
AvnerCohen 已提交
37
    #       format.xml { render xml: @people }
38 39 40 41 42 43 44 45 46 47 48
    #     end
    #   end
    #
    # What that says is, "if the client wants HTML in response to this action, just respond as we
    # would have before, but if the client wants XML, return them the list of people in XML format."
    # (Rails determines the desired response format from the HTTP Accept header submitted by the client.)
    #
    # Supposing you have an action that adds a new person, optionally creating their company
    # (by name) if it does not already exist, without web-services, it might look like this:
    #
    #   def create
49
    #     @company = Company.find_or_create_by(name: params[:company][:name])
50 51 52 53 54 55 56 57 58
    #     @person  = @company.people.create(params[:person])
    #
    #     redirect_to(person_list_url)
    #   end
    #
    # Here's the same action, with web-service support baked in:
    #
    #   def create
    #     company  = params[:person].delete(:company)
59
    #     @company = Company.find_or_create_by(name: company[:name])
60 61 62 63 64
    #     @person  = @company.people.create(params[:person])
    #
    #     respond_to do |format|
    #       format.html { redirect_to(person_list_url) }
    #       format.js
A
AvnerCohen 已提交
65
    #       format.xml  { render xml: @person.to_xml(include: @company) }
66 67 68
    #     end
    #   end
    #
X
Xavier Noria 已提交
69 70
    # If the client wants HTML, we just redirect them back to the person list. If they want JavaScript,
    # then it is an Ajax request and we render the JavaScript template associated with this action.
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    # Lastly, if the client wants XML, we render the created person as XML, but with a twist: we also
    # include the person's company in the rendered XML, so you get something like this:
    #
    #   <person>
    #     <id>...</id>
    #     ...
    #     <company>
    #       <id>...</id>
    #       <name>...</name>
    #       ...
    #     </company>
    #   </person>
    #
    # Note, however, the extra bit at the top of that action:
    #
    #   company  = params[:person].delete(:company)
87
    #   @company = Company.find_or_create_by(name: company[:name])
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    #
    # This is because the incoming XML document (if a web-service request is in process) can only contain a
    # single root-node. So, we have to rearrange things so that the request looks like this (url-encoded):
    #
    #   person[name]=...&person[company][name]=...&...
    #
    # And, like this (xml-encoded):
    #
    #   <person>
    #     <name>...</name>
    #     <company>
    #       <name>...</name>
    #     </company>
    #   </person>
    #
    # In other words, we make the request so that it operates on a single entity's person. Then, in the action,
    # we extract the company data from the request, find or create the company, and then create the new person
    # with the remaining data.
    #
    # Note that you can define your own XML parameter parser which would allow you to describe multiple entities
    # in a single request (i.e., by wrapping them all in a single root node), but if you just go with the flow
    # and accept Rails' defaults, life will be much easier.
    #
    # If you need to use a MIME type which isn't supported by default, you can register your own handlers in
112
    # config/initializers/mime_types.rb as follows.
113 114
    #
    #   Mime::Type.register "image/jpg", :jpg
J
José Valim 已提交
115 116 117 118
    #
    # Respond to also allows you to specify a common block for different formats by using any:
    #
    #   def index
119
    #     @people = Person.all
J
José Valim 已提交
120 121 122 123 124 125 126 127 128
    #
    #     respond_to do |format|
    #       format.html
    #       format.any(:xml, :json) { render request.format.to_sym => @people }
    #     end
    #   end
    #
    # In the example above, if the format is xml, it will render:
    #
A
AvnerCohen 已提交
129
    #   render xml: @people
J
José Valim 已提交
130 131 132
    #
    # Or if the format is json:
    #
A
AvnerCohen 已提交
133
    #   render json: @people
J
José Valim 已提交
134 135 136 137 138 139 140 141
    #
    # Since this is a common pattern, you can use the class method respond_to
    # with the respond_with method to have the same results:
    #
    #   class PeopleController < ApplicationController
    #     respond_to :html, :xml, :json
    #
    #     def index
142
    #       @people = Person.all
V
Vijay Dev 已提交
143
    #       respond_with(@people)
J
José Valim 已提交
144 145 146
    #     end
    #   end
    #
Ł
Łukasz Strzałkowski 已提交
147 148 149
    # Formats can have different variants.
    #
    # The request variant is a specialization of the request format, like <tt>:tablet</tt>,
150
    # <tt>:phone</tt>, or <tt>:desktop</tt>.
Ł
Łukasz Strzałkowski 已提交
151 152 153 154 155 156
    #
    # We often want to render different html/json/xml templates for phones,
    # tablets, and desktop browsers. Variants make it easy.
    #
    # You can set the variant in a +before_action+:
    #
157
    #   request.variant = :tablet if request.user_agent =~ /iPad/
Ł
Łukasz Strzałkowski 已提交
158 159 160 161
    #
    # Respond to variants in the action just like you respond to formats:
    #
    #   respond_to do |format|
162 163 164 165
    #     format.html do |variant|
    #       variant.tablet # renders app/views/projects/show.html+tablet.erb
    #       variant.phone { extra_setup; render ... }
    #       variant.none  { special_setup } # executed only if there is no variant set
Ł
Łukasz Strzałkowski 已提交
166 167 168 169 170 171 172 173 174
    #     end
    #   end
    #
    # Provide separate templates for each format and variant:
    #
    #   app/views/projects/show.html.erb
    #   app/views/projects/show.html+tablet.erb
    #   app/views/projects/show.html+phone.erb
    #
175 176 177 178 179 180 181 182
    # When you're not sharing any code within the format, you can simplify defining variants
    # using the inline syntax:
    #
    #   respond_to do |format|
    #     format.js         { render "trash" }
    #     format.html.phone { redirect_to progress_path }
    #     format.html.none  { render "trash" }
    #   end
183
    #
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
    # Variants also support common `any`/`all` block that formats have.
    #
    # It works for both inline:
    #
    #   respond_to do |format|
    #     format.html.any   { render text: "any"   }
    #     format.html.phone { render text: "phone" }
    #   end
    #
    # and block syntax:
    #
    #   respond_to do |format|
    #     format.html do |variant|
    #       variant.any(:tablet, :phablet){ render text: "any" }
    #       variant.phone { render text: "phone" }
    #     end
    #   end
201
    #
L
Lukasz Strzalkowski 已提交
202 203 204 205 206 207 208 209 210 211 212 213
    # You can also set an array of variants:
    #
    #   request.variant = [:tablet, :phone]
    #
    # which will work similarly to formats and MIME types negotiation. If there will be no
    # :tablet variant declared, :phone variant will be picked:
    #
    #   respond_to do |format|
    #     format.html.none
    #     format.html.phone # this gets rendered
    #   end
    #
X
Xavier Noria 已提交
214 215
    # Be sure to check the documentation of +respond_with+ and
    # <tt>ActionController::MimeResponds.respond_to</tt> for more examples.
216
    def respond_to(*mimes, &block)
217
      raise ArgumentError, "respond_to takes either types or a block, never both" if mimes.any? && block_given?
218

219
      collector = Collector.new(mimes, request.variant)
220
      block.call(collector) if block_given?
221

222
      if format = collector.negotiate_format(request)
223
        _process_format(format)
224 225
        response = collector.response
        response ? response.call : render({})
226
      else
227
        raise ActionController::UnknownFormat
228 229 230
      end
    end

231 232
    # A container for responses available from the current controller for
    # requests for different mime-types sent to a particular action.
233 234 235 236 237 238 239
    #
    # The public controller methods +respond_with+ and +respond_to+ may be called
    # with a block that is used to define responses to different mime-types, e.g.
    # for +respond_to+ :
    #
    #   respond_to do |format|
    #     format.html
A
AvnerCohen 已提交
240
    #     format.xml { render xml: @people }
241 242 243 244 245 246 247 248 249 250 251 252 253
    #   end
    #
    # In this usage, the argument passed to the block (+format+ above) is an
    # instance of the ActionController::MimeResponds::Collector class. This
    # object serves as a container in which available responses can be stored by
    # calling any of the dynamically generated, mime-type-specific methods such
    # as +html+, +xml+ etc on the Collector. Each response is represented by a
    # corresponding block if present.
    #
    # A subsequent call to #negotiate_format(request) will enable the Collector
    # to determine which specific mime-type it should respond with for the current
    # request, with this response then being accessible by calling #response.
    class Collector
254
      include AbstractController::Collector
255
      attr_accessor :format
256

257
      def initialize(mimes, variant = nil)
258
        @responses = {}
259
        @variant = variant
260 261

        mimes.each { |mime| @responses["Mime::#{mime.upcase}".constantize] = nil }
262
      end
263 264

      def any(*args, &block)
265 266 267
        if args.any?
          args.each { |type| send(type, &block) }
        else
268
          custom(Mime::ALL, &block)
269
        end
270
      end
J
José Valim 已提交
271
      alias :all :any
272 273

      def custom(mime_type, &block)
274
        mime_type = Mime::Type.lookup(mime_type.to_s) unless mime_type.is_a?(Mime::Type)
Ł
Łukasz Strzałkowski 已提交
275 276 277
        @responses[mime_type] ||= if block_given?
          block
        else
278
          VariantCollector.new(@variant)
Ł
Łukasz Strzałkowski 已提交
279
        end
280
      end
281

282
      def response
Ł
Łukasz Strzałkowski 已提交
283
        response = @responses.fetch(format, @responses[Mime::ALL])
284 285 286
        if response.is_a?(VariantCollector) # `format.html.phone` - variant inline syntax
          response.variant
        elsif response.nil? || response.arity == 0 # `format.html` - just a format, call its block
Ł
Łukasz Strzałkowski 已提交
287
          response
288 289
        else # `format.html{ |variant| variant.phone }` - variant block syntax
          variant_collector = VariantCollector.new(@variant)
L
Lukasz Strzalkowski 已提交
290
          response.call(variant_collector) # call format block with variants collector
291
          variant_collector.variant
Ł
Łukasz Strzałkowski 已提交
292
        end
293 294 295
      end

      def negotiate_format(request)
296
        @format = request.negotiate_mime(@responses.keys)
297
      end
Ł
Łukasz Strzałkowski 已提交
298

Ł
Łukasz Strzałkowski 已提交
299
      class VariantCollector #:nodoc:
300 301
        def initialize(variant = nil)
          @variant = variant
Ł
Łukasz Strzałkowski 已提交
302 303 304
          @variants = {}
        end

305 306 307 308 309 310 311 312
        def any(*args, &block)
          if block_given?
            if args.any? && args.none?{ |a| a == @variant }
              args.each{ |v| @variants[v] = block }
            else
              @variants[:any] = block
            end
          end
Ł
Łukasz Strzałkowski 已提交
313
        end
314
        alias :all :any
Ł
Łukasz Strzałkowski 已提交
315

316 317
        def method_missing(name, *args, &block)
          @variants[name] = block if block_given?
Ł
Łukasz Strzałkowski 已提交
318 319
        end

320
        def variant
L
Lukasz Strzalkowski 已提交
321
          if @variant.nil?
322
            @variants[:none] || @variants[:any]
L
Lukasz Strzalkowski 已提交
323 324 325 326
          elsif (@variants.keys & @variant).any?
            @variant.each do |v|
              return @variants[v] if @variants.key?(v)
            end
327
          else
L
Lukasz Strzalkowski 已提交
328
            @variants[:any]
329
          end
Ł
Łukasz Strzałkowski 已提交
330 331
        end
      end
332 333
    end
  end
334
end