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

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

194
      collector = Collector.new(mimes, request.variant)
195
      yield collector if block_given?
196

197
      if format = collector.negotiate_format(request)
198
        _process_format(format)
199
        _set_rendered_content_type format
200
        response = collector.response
201
        response.call if response
202
      else
203
        raise ActionController::UnknownFormat
204 205 206
      end
    end

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

233
      def initialize(mimes, variant = nil)
234
        @responses = {}
235
        @variant = variant
236

237
        mimes.each { |mime| @responses[Mime[mime]] = nil }
238
      end
239 240

      def any(*args, &block)
241 242 243
        if args.any?
          args.each { |type| send(type, &block) }
        else
244
          custom(Mime::ALL, &block)
245
        end
246
      end
J
José Valim 已提交
247
      alias :all :any
248 249

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

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

      def negotiate_format(request)
272
        @format = request.negotiate_mime(@responses.keys)
273
      end
Ł
Łukasz Strzałkowski 已提交
274

Ł
Łukasz Strzałkowski 已提交
275
      class VariantCollector #:nodoc:
276 277
        def initialize(variant = nil)
          @variant = variant
Ł
Łukasz Strzałkowski 已提交
278 279 280
          @variants = {}
        end

281 282
        def any(*args, &block)
          if block_given?
283 284
            if args.any? && args.none? { |a| a == @variant }
              args.each { |v| @variants[v] = block }
285 286 287 288
            else
              @variants[:any] = block
            end
          end
Ł
Łukasz Strzałkowski 已提交
289
        end
290
        alias :all :any
Ł
Łukasz Strzałkowski 已提交
291

292 293
        def method_missing(name, *args, &block)
          @variants[name] = block if block_given?
Ł
Łukasz Strzałkowski 已提交
294 295
        end

296
        def variant
297
          if @variant.empty?
298
            @variants[:none] || @variants[:any]
299
          else
300
            @variants[variant_key]
301
          end
Ł
Łukasz Strzałkowski 已提交
302
        end
303 304 305 306 307

        private
          def variant_key
            @variant.find { |variant| @variants.key?(variant) } || :any
          end
Ł
Łukasz Strzałkowski 已提交
308
      end
309 310
    end
  end
311
end