gitlabhq/app/uploaders/attachment_uploader.rb

27 lines
572 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
# encoding: utf-8
class AttachmentUploader < CarrierWave::Uploader::Base
storage :file
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
def image?
2013-02-11 09:14:32 +01:00
img_ext = %w(png jpg jpeg)
if file.respond_to?(:extension)
img_ext.include?(file.extension)
else
# Not all CarrierWave storages respond to :extension
ext = file.path.split('.').last
img_ext.include?(ext)
end
rescue
false
end
2013-02-11 20:31:19 +01:00
def secure_url
"/files/#{model.class.to_s.underscore}/#{model.id}/#{file.filename}"
end
2011-10-08 23:36:38 +02:00
end