2010-05-12 00:16:39 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
class AssetUploader < CarrierWave::Uploader::Base
|
|
|
|
|
|
|
|
include CarrierWave::RMagick
|
2011-06-08 14:33:33 +00:00
|
|
|
include Locomotive::CarrierWave::Uploader::Asset
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-03-05 22:27:26 +00:00
|
|
|
version :thumb, :if => :image? do
|
2010-05-12 00:16:39 +00:00
|
|
|
process :resize_to_fill => [50, 50]
|
|
|
|
process :convert => 'png'
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-03-05 22:27:26 +00:00
|
|
|
version :medium, :if => :image? do
|
2010-05-12 00:16:39 +00:00
|
|
|
process :resize_to_fill => [80, 80]
|
|
|
|
process :convert => 'png'
|
|
|
|
end
|
|
|
|
|
2011-03-05 22:27:26 +00:00
|
|
|
version :preview, :if => :image? do
|
2010-05-12 00:16:39 +00:00
|
|
|
process :resize_to_fit => [880, 1100]
|
2010-07-23 20:09:54 +00:00
|
|
|
process :convert => 'png'
|
2010-05-12 00:16:39 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-06-08 14:33:33 +00:00
|
|
|
def store_dir
|
|
|
|
self.build_store_dir('sites', model.collection.site_id, 'assets', model.id)
|
2011-03-05 22:27:26 +00:00
|
|
|
end
|
|
|
|
|
2010-05-12 00:16:39 +00:00
|
|
|
end
|