Rails Paperclip多态风格

时间:2010-08-19 01:21:11

标签: ruby-on-rails paperclip

我正在使用paperclip为使用accepts_nested_attributes_for的多个模型的附件。有没有办法为每个模型指定特定的回形针样式选项?

2 个答案:

答案 0 :(得分:10)

是。我在网站上使用单表继承(STI)来通过资产模型处理音频,视频和图像。

# models/Asset.rb
class Asset < ActiveRecord::Base
  # Asset has to exist as a model in order to provide inheritance
  # It can't just be a table in the db like in HABTM. 
end

# models/Audio.rb
class Audio < Asset # !note inheritance from Asset rather than AR!
  # I only ever need the original file
  has_attached_file :file
end

# models/Video.rb
class Video < Asset
  has_attached_file :file, 
    :styles => {
      :thumbnail => '180x180',
      :ipod => ['320x480', :mp4]
      },
    :processors => "video_thumbnail"
end

# models/Image.rb
class Image < Asset
  has_attached_file :file,
    :styles => {
      :medium => "300x300>", 
      :small => "150x150>",
      :thumb => "40x40>",
      :bigthumb => "60x60>"
    }
end

它们都以:file的形式进入Rails,但控制器(A / V / I)知道保存到正确的模型。请记住,任何媒体形式的所有属性都需要包含在Asset中:如果视频不需要字幕但图片不需要字幕,那么Video的字幕属性将为零。它不会抱怨。

如果连接到STI模型,协会也可以正常工作。 User has_many :videos将与您现在使用的操作相同,只是确保您不要尝试直接保存到资产。

  # controllers/images_controller.rb
  def create
    # params[:image][:file] ~= Image has_attached_file :file
    @upload = current_user.images.build(params[:image]) 
    # ...
  end

最后,既然你有资产模型,你仍然可以直接从中读取,例如:你想要一份20个最近资产的清单。此外,该示例不限于分离媒体类型,它也可以用于不同类型的相同事物:Avatar&lt;资产,图库&lt;资产等等。

答案 1 :(得分:2)

可以采用nicer方式,(如果使用的是处理图像):

class Image < ActiveRecord::Base
  belongs_to :imageable, :polymorphic => true
  has_attached_file :attachment, styles: lambda {
    |attachment| { 
      thumb: ( 
        attachment.instance.imageable_type.eql?("Product") ? ["300>", 'jpg'] :  ["200>", 'jpg']   
      ),
      medium: ( 
       ["500>", 'jpg']
      )
    }
  }
end