2014-08-31 16:02:56 +03:00
|
|
|
class PictureUploader < CarrierWave::Uploader::Base
|
|
|
|
# Include RMagick or MiniMagick support:
|
2019-04-28 21:10:54 +03:00
|
|
|
# include CarrierWave::RMagick
|
2018-11-11 00:07:00 +02:00
|
|
|
include CarrierWave::MiniMagick
|
2014-08-31 16:02:56 +03:00
|
|
|
|
|
|
|
# Choose what kind of storage to use for this uploader:
|
|
|
|
storage :file
|
|
|
|
# storage :fog
|
|
|
|
|
|
|
|
# Override the directory where uploaded files will be stored.
|
|
|
|
# This is a sensible default for uploaders that are meant to be mounted:
|
|
|
|
def store_dir
|
|
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Provide a default URL as a default if there hasn't been a file uploaded:
|
2015-05-25 11:41:11 +03:00
|
|
|
def default_url
|
2019-04-28 21:10:54 +03:00
|
|
|
ActionController::Base.helpers.asset_path("fallback/profile_picture/" + [version_name, "default.png"].compact.join("_"))
|
2015-05-25 11:41:11 +03:00
|
|
|
end
|
2014-08-31 16:02:56 +03:00
|
|
|
|
|
|
|
# Process files as they are uploaded:
|
|
|
|
# process :scale => [200, 300]
|
|
|
|
#
|
|
|
|
# def scale(width, height)
|
|
|
|
# # do something
|
|
|
|
# end
|
|
|
|
|
|
|
|
# Create different versions of your uploaded files:
|
2014-09-17 19:47:07 +03:00
|
|
|
|
|
|
|
version :medium do
|
2019-04-28 21:10:54 +03:00
|
|
|
process resize_to_fit: [171, 180]
|
2014-09-17 19:47:07 +03:00
|
|
|
end
|
|
|
|
|
2014-08-31 19:29:19 +03:00
|
|
|
version :thumb do
|
2019-04-28 21:10:54 +03:00
|
|
|
process resize_to_fit: [50, 50]
|
2014-08-31 19:29:19 +03:00
|
|
|
end
|
2014-08-31 16:02:56 +03:00
|
|
|
|
2014-10-12 13:31:48 +03:00
|
|
|
version :schedule do
|
2019-04-28 21:10:54 +03:00
|
|
|
process resize_to_fill: [100, 100]
|
2014-10-12 13:31:48 +03:00
|
|
|
end
|
|
|
|
|
2014-08-31 16:02:56 +03:00
|
|
|
# Add a white list of extensions which are allowed to be uploaded.
|
|
|
|
# For images you might use something like this:
|
2014-08-31 18:03:28 +03:00
|
|
|
def extension_white_list
|
2019-04-28 21:10:54 +03:00
|
|
|
%w[jpg jpeg png]
|
2014-08-31 18:03:28 +03:00
|
|
|
end
|
2014-08-31 16:02:56 +03:00
|
|
|
|
|
|
|
# Override the filename of the uploaded files:
|
|
|
|
# Avoid using model.id or version_name here, see uploader/store.rb for details.
|
|
|
|
# def filename
|
|
|
|
# "something.jpg" if original_filename
|
|
|
|
# end
|
|
|
|
end
|