50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
class BaseUploader < CarrierWave::Uploader::Base
|
|
include CarrierWave::BombShelter # limits size to 4096x4096
|
|
include CarrierWave::MiniMagick # adds processing operations
|
|
|
|
EXTENSION_ALLOWLIST = %w[jpg jpeg jpe gif png ico bmp dng].freeze
|
|
FRAME_MAX = 500
|
|
FRAME_STRIP_MAX = 150
|
|
|
|
process :validate_frame_count
|
|
process :strip_exif
|
|
|
|
def store_dir
|
|
# eg. uploads/user/profile_image/1/e481b7ee.jpg
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
end
|
|
|
|
def extension_allowlist
|
|
EXTENSION_ALLOWLIST
|
|
end
|
|
|
|
def size_range
|
|
1..(25.megabytes)
|
|
end
|
|
|
|
protected
|
|
|
|
# strip EXIF (and GPS) data
|
|
def strip_exif
|
|
# There will be no exif data for an SVG
|
|
return if file.content_type.include?("svg")
|
|
|
|
manipulate! do |image|
|
|
image.auto_orient
|
|
image.strip unless image.frames.count > FRAME_STRIP_MAX
|
|
image = yield(image) if block_given?
|
|
image
|
|
end
|
|
end
|
|
|
|
def validate_frame_count
|
|
begin
|
|
return unless MiniMagick::Image.new(file.path).frames.count > FRAME_MAX
|
|
rescue Timeout::Error
|
|
raise CarrierWave::IntegrityError, I18n.t("uploaders.base_uploader.timeout")
|
|
end
|
|
|
|
raise CarrierWave::IntegrityError,
|
|
I18n.t("uploaders.base_uploader.too_many_frames", frame_max: FRAME_MAX)
|
|
end
|
|
end
|