gitlab-org--gitlab-foss/app/models/ci/artifact_blob.rb

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

66 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Ci
class ArtifactBlob
include BlobLike
EXTENSIONS_SERVED_BY_PAGES = %w[.html .htm .txt .json .xml .log].freeze
2017-10-03 10:34:24 +00:00
attr_reader :entry
def initialize(entry)
@entry = entry
end
delegate :name, :path, to: :entry
def id
Digest::SHA1.hexdigest(path)
end
def size
entry.metadata[:size]
end
2017-10-03 10:34:24 +00:00
alias_method :external_size, :size
def data
"Build artifact #{path}"
end
def mode
entry.metadata[:mode]
end
def external_storage
:build_artifact
end
2017-10-03 10:34:24 +00:00
def external_url(project, job)
2017-10-05 10:41:22 +00:00
return unless external_link?(job)
2017-10-03 10:34:24 +00:00
url_project_path = project.full_path.partition('/').last
2017-10-03 10:34:24 +00:00
artifact_path = [
'-', url_project_path, '-',
'jobs', job.id,
'artifacts', path
].join('/')
"#{project.pages_group_url}/#{artifact_path}"
2017-10-03 10:34:24 +00:00
end
2017-10-05 10:41:22 +00:00
def external_link?(job)
2017-10-03 10:34:24 +00:00
pages_config.enabled &&
pages_config.artifacts_server &&
EXTENSIONS_SERVED_BY_PAGES.include?(File.extname(name)) &&
(pages_config.access_control || job.project.public?)
2017-10-03 10:34:24 +00:00
end
private
def pages_config
Gitlab.config.pages
end
end
end