Ruby On Rails Polymorphic Paperclip Plugin Tutorial

Posted on the October 17th, 2008 under My Projects, Ruby on Rails, programming by John Burmeister

This tutorial is an extension of the paperclip tutorial I put up last week. This time we are going to take advantage of polymorphic paperclip. Polymorphic paperclip utilizes separate tables (an assets table and an attachings table) to track your attachments. This allows for an unlimited number of attachments per item per model. In the first tutorial I showed you how to attach just one item, although you could add more columns to your table to handle additional attachments this way is a lot more flexible. While this plugin is not perfect, there is a lot of room for improvement, its a great starting point. Perhaps a fork is on its way from me…

Project Page: http://github.com/heavysixer/paperclippolymorph/tree/master

First things first, lets install the plugin:

script/plugin git://github.com/heavysixer/paperclippolymorph.git

Lets setup our new migration that is needed. After reading the rdoc, I noticed there was a new generator installed. Great, this makes things even easier. Lets verify that the generator is available for use, first run:

script/generate

This should produce a list of all generators available for use, my list below might vary from yours depending upon what plugins you have installed…

Installed Generators
  Plugins (vendor/plugins): authenticated, forgot_password, open_id_authentication_tables, paperclip, polymorphic_paperclip, roles, rspec, rspec_controller, rspec_model, rspec_scaffold, upgrade_open_id_authentication_tables
  Builtin: controller, integration_test, mailer, migration, model, observer, plugin, resource, scaffold, session_migration

As you will notice there is a polymorphic_paperclip generator, go ahead an run it as follows:

script/generate polymorphic_paperclip

Before you go and run rake db:migrate, open up the migration and modify the assets_count to attachings_count - it seems there is a minor bug. I notified the author of the plugin and will submit a patch via git. Now its OK to run rake db:migrate

Now we have the migration generated and the tables have been added to your database. Next we have to add (or change if you already have paperclip setup) the model where you want to have attachments by adding acts_as_polymorphic_paperclip. As an example, I posted my documents model below.

class Document < ActiveRecord::Base
# Document Belongs To A User
belongs_to :user
# for paperclip (polymorphic)
acts_as_polymorphic_paperclip 
# Validations
...

Note: Ideally I would like to be able to override the styles settings that are set in the plugins assets.rb, however I went ahead and hard coded them there to fit my needs. Example:

class Asset < ActiveRecord::Base
  has_many :attachings, :dependent => :destroy
  has_attached_file :data,
                    :styles => {
                    :thumb=> "100x100#",
                    :small  => "150x150>",
                    :medium => "300x300>",
                    :large =>   "500x500>",
                    :xlarge =>   "600x600>",
                    :xxlarge =>   "800x800>" }

For now, lets move onto the views where you are going to allow attachments. We are just going to have one upload, perhaps in another tutorial we will look at handling multiple uploads.

You need to make sure you put the html => { :multipart => true } in both your edit and new views for the model you are working with. Example in my case:

<% form_for(@document,:html => { :multipart => true }) do |f| %>
  <%= f.error_messages %>
  <%= render :partial => 'form', :locals => { :f => f } %>
<% end %>

Next you need to add the file upload field to your _form or edit/new views.

<p>
  Attach a file or image <br />
  <%= f.file_field :data%>
</p>

Now lets go ahead and make these attachments viewable in the document. For the edit view I added the following:

<p><%= image_tag asset.url(:medium) %></p>
<p>Tiny:  <%= asset.url(:tiny) %><br />
 Small:  <%= asset.url(:small)%><br />
 Medium:  <%= asset.url(:medium)%><br />
 Large:  <%= asset.url(:large)%><br />
 XL:  <%= asset.url(:xlarge)%><br />
 XXL:  <%= asset.url(:xxlarge)%><br />   
 Original:  <%= asset.url %>
</p>

Other Notes:

You can use this to attach an attachment if you were going to use a different view, for example an upload view with @document.assets.attach(@asset)

You can nuke an attachment by either calling @document.assets.detach or @document.assets.detach(@asset) depending upon how you are going about dealing with removing attachments. @document.assets.detach will nuke ALL attachments associated with that document, @document.essay.assets.detach(@asset) will nuke just that asset you are referencing.

Similar Posts:

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • Reddit
  • StumbleUpon
  • Technorati
  • TwitThis
  • Furl
  • LinkedIn

12 Responses to 'Ruby On Rails Polymorphic Paperclip Plugin Tutorial'

Subscribe to comments with RSS
  1. [...] Checkout my other tutorial on polymorphic paperclip if you would like to have multiple image [...]

  2. rohandey said, on October 22nd, 2008 at 11:38 pm

    Is there a facility for uploading images to S3 as this feature is there in attachment_fu

  3. John Burmeister said, on October 23rd, 2008 at 12:46 am

    Yes, its baked right in -> http://github.com/thoughtbot/paperclip/tree/master/lib/paperclip/storage.rb

  4. heavysixer said, on October 27th, 2008 at 11:10 am

    Hey great tutorial. Give me a patch for the bug you found and I’ll patch the plugin.

    Later,
    Mark

  5. Tom said, on November 1st, 2008 at 12:54 pm

    Shouldn’t line one be


    script/plugin install git://github.com/heavysixer/paperclippolymorph.git

  6. ryan said, on November 20th, 2008 at 6:53 pm

    if anyone is getting some weird errors after installing polymorphic paperclip… few people mention you ALSO need regular old paperclip installed too. it’s in the readme file included in polymorphic paperclip. regular paperclip can be installed via ’script/plugin install git://github.com/thoughtbot/paperclip.git’

    cheers.

  7. John Burmeister said, on November 20th, 2008 at 9:00 pm

    Yes you also need paperclip installed, its a dependency…

  8. EH said, on November 20th, 2008 at 10:44 pm

    Some of this doesn’t make sense, and I’m getting some errors. Do you have to create an Assets model by hand to match up with the table created in the migration?

  9. ron said, on November 27th, 2008 at 7:42 am

    I got this when uploading an image
    undefined method `data_updated_at=’ for #

    Changing the assets.updated_at column in the db to assets.data_updated_at seemed to fix it.

    Also had to change assets_count to attachings_count

  10. EH said, on December 3rd, 2008 at 12:21 am

    Nevermind. It just took a closer reading of:

    I would like to be able to override the styles settings that are set in the plugins assets.rb, however I went ahead and hard coded them there to fit my needs

    So what you have to do is edit the plugin’s file in:
    /vendor/plugins/paperclippolymorph/lib/asset.rb

  11. Will Merrell said, on December 17th, 2008 at 12:26 am

    Thanks for this plugin, I have it working and it is just what I needed.

    However, I cannot figure out how to remove an asset once I have added it. There is a mention at the end of this article that suggests using detach, but I have not been able to get actual code to work. Could you say a bit more about that part of it?

    – Will

  12. EH said, on January 3rd, 2009 at 1:20 am

    Will:


    class AssetsController < ApplicationController
    def destroy
    @asset = Asset.find(params[:id])
    @asset.delete
    redirect_to :back
    flash[:notice] = “Asset deleted”
    end
    end

Leave a Reply
XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="">