79dd92c818
String#underscore isn't particularly slow, but it's possible for us to call it many times in a users autocomplete request, with mostly-static values ('User', 'Group', etc.). We can memoise this and save a surprising amount of time (around 10% of the total request time in some cases).
30 lines
550 B
Ruby
30 lines
550 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AvatarUploader < GitlabUploader
|
|
include UploaderHelper
|
|
include RecordsUploads::Concern
|
|
include ObjectStorage::Concern
|
|
prepend ObjectStorage::Extension::RecordsUploads
|
|
|
|
def exists?
|
|
model.avatar.file && model.avatar.file.present?
|
|
end
|
|
|
|
def move_to_store
|
|
false
|
|
end
|
|
|
|
def move_to_cache
|
|
false
|
|
end
|
|
|
|
def absolute_path
|
|
self.class.absolute_path(model.avatar.upload)
|
|
end
|
|
|
|
private
|
|
|
|
def dynamic_segment
|
|
File.join(model.class.underscore, mounted_as.to_s, model.id.to_s)
|
|
end
|
|
end
|