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

204
      collector = Collector.new(mimes, request.variant)
205
      block.call(collector) if block_given?
206

207
      if format = collector.negotiate_format(request)
208
        _process_format(format)
209 210
        response = collector.response
        response ? response.call : render({})
211
      else
212
        raise ActionController::UnknownFormat
213 214 215
      end
    end

216 217
    # A container for responses available from the current controller for
    # requests for different mime-types sent to a particular action.
218 219 220 221 222 223 224
    #
    # 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 已提交
225
    #     format.xml { render xml: @people }
226 227 228 229 230 231 232 233 234 235 236 237 238
    #   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
239
      include AbstractController::Collector
240
      attr_accessor :format
241

242
      def initialize(mimes, variant = nil)
243
        @responses = {}
244
        @variant = variant
245 246

        mimes.each { |mime| @responses["Mime::#{mime.upcase}".constantize] = nil }
247
      end
248 249

      def any(*args, &block)
250 251 252
        if args.any?
          args.each { |type| send(type, &block) }
        else
253
          custom(Mime::ALL, &block)
254
        end
255
      end
J
José Valim 已提交
256
      alias :all :any
257 258

      def custom(mime_type, &block)
259
        mime_type = Mime::Type.lookup(mime_type.to_s) unless mime_type.is_a?(Mime::Type)
Ł
Łukasz Strzałkowski 已提交
260 261 262
        @responses[mime_type] ||= if block_given?
          block
        else
263
          VariantCollector.new(@variant)
Ł
Łukasz Strzałkowski 已提交
264
        end
265
      end
266

267
      def response
Ł
Łukasz Strzałkowski 已提交
268
        response = @responses.fetch(format, @responses[Mime::ALL])
269 270 271
        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 已提交
272
          response
273 274
        else # `format.html{ |variant| variant.phone }` - variant block syntax
          variant_collector = VariantCollector.new(@variant)
L
Lukasz Strzalkowski 已提交
275
          response.call(variant_collector) # call format block with variants collector
276
          variant_collector.variant
Ł
Łukasz Strzałkowski 已提交
277
        end
278 279 280
      end

      def negotiate_format(request)
281
        @format = request.negotiate_mime(@responses.keys)
282
      end
Ł
Łukasz Strzałkowski 已提交
283

Ł
Łukasz Strzałkowski 已提交
284
      class VariantCollector #:nodoc:
285 286
        def initialize(variant = nil)
          @variant = variant
Ł
Łukasz Strzałkowski 已提交
287 288 289
          @variants = {}
        end

290 291 292 293 294 295 296 297
        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 已提交
298
        end
299
        alias :all :any
Ł
Łukasz Strzałkowski 已提交
300

301 302
        def method_missing(name, *args, &block)
          @variants[name] = block if block_given?
Ł
Łukasz Strzałkowski 已提交
303 304
        end

305
        def variant
L
Lukasz Strzalkowski 已提交
306
          if @variant.nil?
307
            @variants[:none] || @variants[:any]
L
Lukasz Strzalkowski 已提交
308 309 310 311
          elsif (@variants.keys & @variant).any?
            @variant.each do |v|
              return @variants[v] if @variants.key?(v)
            end
312
          else
L
Lukasz Strzalkowski 已提交
313
            @variants[:any]
314
          end
Ł
Łukasz Strzałkowski 已提交
315 316
        end
      end
317 318
    end
  end
319
end