2019-11-25 16:12:23 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# CarrierWave uploader for project image.
|
|
|
|
# This file defines the parameters for these uploads.
|
2015-05-05 03:10:25 +02:00
|
|
|
class ProjectImageUploader < CarrierWave::Uploader::Base
|
|
|
|
include CarrierWave::MiniMagick
|
|
|
|
include UploadHelper
|
2022-07-27 17:14:15 +02:00
|
|
|
include ContentTypeValidationFromFileContent
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# Choose what kind of storage to use for this uploader:
|
|
|
|
storage :file
|
|
|
|
after :remove, :delete_empty_dirs
|
|
|
|
|
|
|
|
def store_dir
|
|
|
|
"#{base_store_dir}/#{model.id}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def base_store_dir
|
|
|
|
"uploads/#{model.class.to_s.underscore}"
|
|
|
|
end
|
|
|
|
|
|
|
|
version :large do
|
2019-11-25 16:12:23 +01:00
|
|
|
process resize_to_fit: [1000, 700]
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
version :medium do
|
2019-11-25 16:12:23 +01:00
|
|
|
process resize_to_fit: [700, 400]
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Add a white list of extensions which are allowed to be uploaded.
|
|
|
|
# For images you might use something like this:
|
2020-06-02 17:57:24 +02:00
|
|
|
def extension_whitelist
|
2019-11-25 16:12:23 +01:00
|
|
|
%w[jpg jpeg gif png]
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
2020-06-02 19:18:57 +02:00
|
|
|
def content_type_whitelist
|
|
|
|
[%r{image/}]
|
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
# Override the filename of the uploaded files:
|
|
|
|
# Avoid using model.id or version_name here, see uploader/store.rb for details.
|
|
|
|
def filename
|
|
|
|
"#{model.class.to_s.underscore}.#{file.extension}" if original_filename
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
2016-07-28 17:44:58 +02:00
|
|
|
|
|
|
|
# return an array like [width, height]
|
|
|
|
def dimensions
|
|
|
|
::MiniMagick::Image.open(file.file)[:dimensions]
|
|
|
|
end
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|