mime_responds.rb 11.6 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
    module ClassMethods
      def respond_to(*)
        raise NoMethodError, "The controller-level `respond_to' feature has " \
G
Godfrey Chan 已提交
11
          "been extracted to the `responders` gem. Add it to your Gemfile to " \
12 13 14
          "continue using this feature:\n" \
          "  gem 'responders', '~> 2.0'\n" \
          "Consult the Rails upgrade guide for details."
15 16 17 18 19
      end
    end

    def respond_with(*)
      raise NoMethodError, "The `respond_with' feature has been extracted " \
G
Godfrey Chan 已提交
20
        "to the `responders` gem. Add it to your Gemfile to continue using " \
21 22 23
        "this feature:\n" \
        "  gem 'responders', '~> 2.0'\n" \
        "Consult the Rails upgrade guide for details."
24 25
    end

26 27 28 29
    # Without web-service support, an action which collects the data for displaying a list of people
    # might look something like this:
    #
    #   def index
30
    #     @people = Person.all
31 32 33 34 35
    #   end
    #
    # Here's the same action, with web-service support baked in:
    #
    #   def index
36
    #     @people = Person.all
37 38 39
    #
    #     respond_to do |format|
    #       format.html
A
AvnerCohen 已提交
40
    #       format.xml { render xml: @people }
41 42 43 44 45 46 47 48 49 50 51
    #     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
52
    #     @company = Company.find_or_create_by(name: params[:company][:name])
53 54 55 56 57 58 59 60 61
    #     @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)
62
    #     @company = Company.find_or_create_by(name: company[:name])
63 64 65 66 67
    #     @person  = @company.people.create(params[:person])
    #
    #     respond_to do |format|
    #       format.html { redirect_to(person_list_url) }
    #       format.js
A
AvnerCohen 已提交
68
    #       format.xml  { render xml: @person.to_xml(include: @company) }
69 70 71
    #     end
    #   end
    #
X
Xavier Noria 已提交
72 73
    # 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.
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
    # 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)
90
    #   @company = Company.find_or_create_by(name: company[:name])
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
    #
    # 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
115
    # config/initializers/mime_types.rb as follows.
116 117
    #
    #   Mime::Type.register "image/jpg", :jpg
J
José Valim 已提交
118 119 120 121
    #
    # Respond to also allows you to specify a common block for different formats by using any:
    #
    #   def index
122
    #     @people = Person.all
J
José Valim 已提交
123 124 125 126 127 128 129 130 131
    #
    #     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 已提交
132
    #   render xml: @people
J
José Valim 已提交
133 134 135
    #
    # Or if the format is json:
    #
A
AvnerCohen 已提交
136
    #   render json: @people
J
José Valim 已提交
137 138 139 140 141 142 143 144
    #
    # 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
145
    #       @people = Person.all
V
Vijay Dev 已提交
146
    #       respond_with(@people)
J
José Valim 已提交
147 148 149
    #     end
    #   end
    #
Ł
Łukasz Strzałkowski 已提交
150 151 152
    # Formats can have different variants.
    #
    # The request variant is a specialization of the request format, like <tt>:tablet</tt>,
153
    # <tt>:phone</tt>, or <tt>:desktop</tt>.
Ł
Łukasz Strzałkowski 已提交
154 155 156 157 158 159
    #
    # 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+:
    #
160
    #   request.variant = :tablet if request.user_agent =~ /iPad/
Ł
Łukasz Strzałkowski 已提交
161 162 163 164
    #
    # Respond to variants in the action just like you respond to formats:
    #
    #   respond_to do |format|
165 166 167 168
    #     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 已提交
169 170 171 172 173 174 175 176 177
    #     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
    #
178 179 180 181 182 183 184 185
    # 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
186
    #
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
    # 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
204
    #
L
Lukasz Strzalkowski 已提交
205 206 207 208 209 210 211 212 213 214 215 216
    # 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 已提交
217 218
    # Be sure to check the documentation of +respond_with+ and
    # <tt>ActionController::MimeResponds.respond_to</tt> for more examples.
219
    def respond_to(*mimes)
220
      raise ArgumentError, "respond_to takes either types or a block, never both" if mimes.any? && block_given?
221

222
      collector = Collector.new(mimes, request.variant)
223
      yield collector if block_given?
224

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

234 235
    # A container for responses available from the current controller for
    # requests for different mime-types sent to a particular action.
236 237 238 239 240 241 242
    #
    # 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 已提交
243
    #     format.xml { render xml: @people }
244 245 246 247 248 249 250 251 252 253 254 255 256
    #   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
257
      include AbstractController::Collector
258
      attr_accessor :format
259

260
      def initialize(mimes, variant = nil)
261
        @responses = {}
262
        @variant = variant
263 264

        mimes.each { |mime| @responses["Mime::#{mime.upcase}".constantize] = nil }
265
      end
266 267

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

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

285
      def response
Ł
Łukasz Strzałkowski 已提交
286
        response = @responses.fetch(format, @responses[Mime::ALL])
287 288 289
        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 已提交
290
          response
291 292
        else # `format.html{ |variant| variant.phone }` - variant block syntax
          variant_collector = VariantCollector.new(@variant)
L
Lukasz Strzalkowski 已提交
293
          response.call(variant_collector) # call format block with variants collector
294
          variant_collector.variant
Ł
Łukasz Strzałkowski 已提交
295
        end
296 297 298
      end

      def negotiate_format(request)
299
        @format = request.negotiate_mime(@responses.keys)
300
      end
Ł
Łukasz Strzałkowski 已提交
301

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

308 309 310 311 312 313 314 315
        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 已提交
316
        end
317
        alias :all :any
Ł
Łukasz Strzałkowski 已提交
318

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

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