Lets say we want the following:
- .pdf extension to be associated with the :pdf content_type
- Want to call to_pdf on an object we give to render
- Content-Type: application/pdf
- Content-Encoding: gzip
The arguments to Merb.add_mime_type are
- Symbol for content_type
- Symbol of method to call to convert an object to this format
- An array of possible content types that the browser might give the server for this format. The first one will be used as the outgoing Content-Type header
- A hash of response headers you want to include [optional]
Merb.add_mime_type(:pdf, :to_pdf, %w[application/pdf], "Content-Encoding" => "gzip")
That's it. Now in your controllers you can use
provides :pdfand to_pdf will be called on @obj.
# and then
render @obj
This looks like a great opportunity to use a presenter object with a to_pdf method on it.
If there's a format that you never want to use a transform method on, since you'll always have templates for them, just use nil for the transform method.
0 comments:
Post a Comment