2011-10-08 17:36:38 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
class AttachmentUploader < CarrierWave::Uploader::Base
|
|
|
|
storage :file
|
|
|
|
|
2013-12-11 10:30:22 -05:00
|
|
|
after :store, :reset_events_cache
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def store_dir
|
|
|
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
|
|
|
end
|
|
|
|
|
2013-01-04 15:13:32 -05:00
|
|
|
def image?
|
2013-05-15 02:41:33 -04:00
|
|
|
img_ext = %w(png jpg jpeg gif bmp tiff)
|
2013-02-11 03:14:32 -05:00
|
|
|
if file.respond_to?(:extension)
|
2013-05-15 02:41:33 -04:00
|
|
|
img_ext.include?(file.extension.downcase)
|
2013-02-11 03:14:32 -05:00
|
|
|
else
|
|
|
|
# Not all CarrierWave storages respond to :extension
|
2013-05-15 02:41:33 -04:00
|
|
|
ext = file.path.split('.').last.downcase
|
2013-02-11 03:14:32 -05:00
|
|
|
img_ext.include?(ext)
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
false
|
2013-01-04 15:13:32 -05:00
|
|
|
end
|
2013-02-11 14:31:19 -05:00
|
|
|
|
|
|
|
def secure_url
|
2013-07-30 10:48:00 -04:00
|
|
|
Gitlab.config.gitlab.relative_url_root + "/files/#{model.class.to_s.underscore}/#{model.id}/#{file.filename}"
|
2013-05-15 15:35:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def file_storage?
|
|
|
|
self.class.storage == CarrierWave::Storage::File
|
2013-02-11 14:31:19 -05:00
|
|
|
end
|
2013-12-11 10:30:22 -05:00
|
|
|
|
|
|
|
def reset_events_cache(file)
|
|
|
|
model.reset_events_cache if model.is_a?(User)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|