Welcome to mirror list, hosted at ThFree Co, Russian Federation.

artifact_blob.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76d4b9d6206b2bf0fabc2ce53f3cd0df9491ea38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

module Ci
  class ArtifactBlob
    include BlobLike

    EXTENSIONS_SERVED_BY_PAGES = %w[.html .htm .txt .json .xml .log].freeze

    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
    alias_method :external_size, :size

    def data
      "Build artifact #{path}"
    end

    def mode
      entry.metadata[:mode]
    end

    def external_storage
      :build_artifact
    end

    def external_url(project, job)
      return unless external_link?(job)

      url_project_path = project.full_path.partition('/').last

      artifact_path = [
        '-', url_project_path, '-',
        'jobs', job.id,
        'artifacts', path
      ].join('/')

      "#{project.pages_group_url}/#{artifact_path}"
    end

    def external_link?(job)
      pages_config.enabled &&
        pages_config.artifacts_server &&
        EXTENSIONS_SERVED_BY_PAGES.include?(File.extname(name)) &&
        (pages_config.access_control || job.project.public?)
    end

    private

    def pages_config
      Gitlab.config.pages
    end
  end
end