2018-07-04 13:32:46 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 10:31:44 -04:00
|
|
|
class AvatarUploader < GitlabUploader
|
2015-11-14 13:29:58 -05:00
|
|
|
include UploaderHelper
|
2018-02-02 08:59:43 -05:00
|
|
|
include RecordsUploads::Concern
|
|
|
|
include ObjectStorage::Concern
|
|
|
|
prepend ObjectStorage::Extension::RecordsUploads
|
2020-01-02 16:07:38 -05:00
|
|
|
|
2020-03-12 14:09:28 -04:00
|
|
|
MIME_WHITELIST = %w[image/png image/jpeg image/gif image/bmp image/tiff image/vnd.microsoft.icon].freeze
|
2015-02-20 09:19:50 -05:00
|
|
|
|
2016-07-15 10:03:31 -04:00
|
|
|
def exists?
|
2017-09-19 10:34:10 -04:00
|
|
|
model.avatar.file && model.avatar.file.present?
|
2016-07-15 10:03:31 -04:00
|
|
|
end
|
2017-01-02 06:35:15 -05:00
|
|
|
|
|
|
|
def move_to_store
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def move_to_cache
|
|
|
|
false
|
|
|
|
end
|
2018-02-02 08:59:43 -05:00
|
|
|
|
2018-08-29 09:41:56 -04:00
|
|
|
def absolute_path
|
2019-10-02 20:05:59 -04:00
|
|
|
self.class.absolute_path(upload)
|
2018-08-29 09:41:56 -04:00
|
|
|
end
|
|
|
|
|
2020-02-12 13:09:21 -05:00
|
|
|
def mounted_as
|
|
|
|
super || 'avatar'
|
|
|
|
end
|
|
|
|
|
2020-03-12 14:09:28 -04:00
|
|
|
def content_type_whitelist
|
|
|
|
MIME_WHITELIST
|
|
|
|
end
|
|
|
|
|
2018-02-02 08:59:43 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def dynamic_segment
|
2019-05-11 08:06:44 -04:00
|
|
|
File.join(model.class.underscore, mounted_as.to_s, model.id.to_s)
|
2018-02-02 08:59:43 -05:00
|
|
|
end
|
2015-02-20 09:19:50 -05:00
|
|
|
end
|