我正在使用单个Image
模型来存储有关不同其他模型使用的图像的信息(通过多态关联)。
我想根据关联的模型更改此模型的上传器,以便为不同的模型提供不同的版本。
例如,如果imageable
是Place
,则挂载的上传程序将是PlaceUploader
。如果没有PlaceUploader
,它将是默认值ImageUploader
。
目前我有:
class Image < ActiveRecord::Base
belongs_to :imageable, polymorphic: true
mount_uploader :image, ImageUploader
end
理想情况下,我希望拥有:
# This is not supported by CarrierWave, just a proof of concept
mount_uploader :image, -> { |model| "#{model.imageable.class.to_s}Uploader".constantize || ImageUploader }
有没有办法做到这一点?还是根据相关模型拥有不同版本的更好方法?
编辑
我找到了另一种使用单个的解决方案ImageUploader
:
class ImageUploader < BaseUploader
version :thumb_place, if: :attached_to_place? do
process resize_to_fill: [200, 200]
end
version :thumb_user, if: :attached_to_user? do
process :bnw
process resize_to_fill: [100, 100]
end
def method_missing(method, *args)
# Define attached_to_#{model}?
if m = method.to_s.match(/attached_to_(.*)\?/)
model.imageable_type.underscore.downcase.to_sym == m[1].to_sym
else
super
end
end
end
如您所见,我的 2 个版本已命名thumb_place
,thumb_user
因为如果我将它们都命名,则thumb
只会考虑第一个(即使它不满足条件)。