45 lines
997 B
Ruby
45 lines
997 B
Ruby
# frozen_string_literal: true
|
|
|
|
class JobArtifactUploader < GitlabUploader
|
|
extend Workhorse::UploadPath
|
|
include ObjectStorage::Concern
|
|
|
|
ObjectNotReadyError = Class.new(StandardError)
|
|
UnknownFileLocationError = Class.new(StandardError)
|
|
|
|
storage_options Gitlab.config.artifacts
|
|
|
|
alias_method :upload, :model
|
|
|
|
def cached_size
|
|
return model.size if model.size.present? && !model.file_changed?
|
|
|
|
size
|
|
end
|
|
|
|
def store_dir
|
|
dynamic_segment
|
|
end
|
|
|
|
private
|
|
|
|
def dynamic_segment
|
|
raise ObjectNotReadyError, 'JobArtifact is not ready' unless model.id
|
|
|
|
if model.hashed_path?
|
|
hashed_path
|
|
elsif model.legacy_path?
|
|
legacy_path
|
|
else
|
|
raise UnknownFileLocationError
|
|
end
|
|
end
|
|
|
|
def hashed_path
|
|
Gitlab::HashedPath.new(model.created_at.utc.strftime('%Y_%m_%d'), model.job_id, model.id, root_hash: model.project_id)
|
|
end
|
|
|
|
def legacy_path
|
|
File.join(model.created_at.utc.strftime('%Y_%m'), model.project_id.to_s, model.job_id.to_s)
|
|
end
|
|
end
|