2016-08-18 10:31:44 -04:00
|
|
|
class AvatarUploader < GitlabUploader
|
2017-02-15 13:11:44 -05:00
|
|
|
include RecordsUploads
|
2015-11-14 13:29:58 -05:00
|
|
|
include UploaderHelper
|
|
|
|
|
2015-02-20 09:19:50 -05:00
|
|
|
storage :file
|
|
|
|
|
|
|
|
def store_dir
|
2017-02-23 16:54:25 -05:00
|
|
|
"#{base_dir}/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
2015-02-20 09:19:50 -05:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
# We set move_to_store and move_to_cache to 'false' to prevent stealing
|
|
|
|
# the avatar file from a project when forking it.
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab-ce/issues/26158
|
|
|
|
def move_to_store
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def move_to_cache
|
|
|
|
false
|
|
|
|
end
|
2015-02-20 09:19:50 -05:00
|
|
|
end
|