gitlab-org--gitlab-foss/app/uploaders/avatar_uploader.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
746 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-18 14:31:44 +00:00
class AvatarUploader < GitlabUploader
include UploaderHelper
include RecordsUploads::Concern
include ObjectStorage::Concern
prepend ObjectStorage::Extension::RecordsUploads
MIME_ALLOWLIST = %w[image/png image/jpeg image/gif image/bmp image/tiff image/vnd.microsoft.icon].freeze
2015-02-20 14:19:50 +00:00
def exists?
model.avatar.file && model.avatar.file.present?
end
2017-01-02 11:35:15 +00:00
def move_to_store
false
end
def move_to_cache
false
end
def absolute_path
self.class.absolute_path(upload)
end
def mounted_as
super || 'avatar'
end
def content_type_whitelist
MIME_ALLOWLIST
end
private
def dynamic_segment
File.join(model.class.underscore, mounted_as.to_s, model.id.to_s)
end
2015-02-20 14:19:50 +00:00
end