mime_responds.rb 10.5 KB
Newer Older
1 2
require 'abstract_controller/collector'

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

189
      collector = Collector.new(mimes, request.variant)
190
      yield collector if block_given?
191

192
      if format = collector.negotiate_format(request)
193
        _process_format(format)
194
        _set_content_type _get_content_type format
195 196
        response = collector.response
        response ? response.call : render({})
197
      else
198
        raise ActionController::UnknownFormat
199 200 201
      end
    end

202 203
    # A container for responses available from the current controller for
    # requests for different mime-types sent to a particular action.
204
    #
205 206
    # The public controller methods +respond_to+ may be called with a block
    # that is used to define responses to different mime-types, e.g.
207 208 209 210
    # for +respond_to+ :
    #
    #   respond_to do |format|
    #     format.html
A
AvnerCohen 已提交
211
    #     format.xml { render xml: @people }
212 213 214 215 216 217 218 219 220 221 222 223 224
    #   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
225
      include AbstractController::Collector
226
      attr_accessor :format
227

228
      def initialize(mimes, variant = nil)
229
        @responses = {}
230
        @variant = variant
231 232

        mimes.each { |mime| @responses["Mime::#{mime.upcase}".constantize] = nil }
233
      end
234 235

      def any(*args, &block)
236 237 238
        if args.any?
          args.each { |type| send(type, &block) }
        else
239
          custom(Mime::ALL, &block)
240
        end
241
      end
J
José Valim 已提交
242
      alias :all :any
243 244

      def custom(mime_type, &block)
245
        mime_type = Mime::Type.lookup(mime_type.to_s) unless mime_type.is_a?(Mime::Type)
Ł
Łukasz Strzałkowski 已提交
246 247 248
        @responses[mime_type] ||= if block_given?
          block
        else
249
          VariantCollector.new(@variant)
Ł
Łukasz Strzałkowski 已提交
250
        end
251
      end
252

253
      def response
Ł
Łukasz Strzałkowski 已提交
254
        response = @responses.fetch(format, @responses[Mime::ALL])
255 256 257
        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 已提交
258
          response
259 260
        else # `format.html{ |variant| variant.phone }` - variant block syntax
          variant_collector = VariantCollector.new(@variant)
L
Lukasz Strzalkowski 已提交
261
          response.call(variant_collector) # call format block with variants collector
262
          variant_collector.variant
Ł
Łukasz Strzałkowski 已提交
263
        end
264 265 266
      end

      def negotiate_format(request)
267
        @format = request.negotiate_mime(@responses.keys)
268
      end
Ł
Łukasz Strzałkowski 已提交
269

Ł
Łukasz Strzałkowski 已提交
270
      class VariantCollector #:nodoc:
271 272
        def initialize(variant = nil)
          @variant = variant
Ł
Łukasz Strzałkowski 已提交
273 274 275
          @variants = {}
        end

276 277 278 279 280 281 282 283
        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 已提交
284
        end
285
        alias :all :any
Ł
Łukasz Strzałkowski 已提交
286

287 288
        def method_missing(name, *args, &block)
          @variants[name] = block if block_given?
Ł
Łukasz Strzałkowski 已提交
289 290
        end

291
        def variant
292
          if @variant.empty?
293
            @variants[:none] || @variants[:any]
294
          else
295
            @variants[variant_key]
296
          end
Ł
Łukasz Strzałkowski 已提交
297
        end
298 299 300 301 302

        private
          def variant_key
            @variant.find { |variant| @variants.key?(variant) } || :any
          end
Ł
Łukasz Strzałkowski 已提交
303
      end
304 305
    end
  end
306
end