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

module_version.rb « go « packages « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd575e6c96c562e6d88dd4f3eddd54a6dbbe3557 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# frozen_string_literal: true

module Packages
  module Go
    class ModuleVersion
      include Gitlab::Utils::StrongMemoize
      include Gitlab::Golang

      VALID_TYPES = %i[ref commit pseudo].freeze

      attr_reader :mod, :type, :ref, :commit

      delegate :major, to: :@semver, allow_nil: true
      delegate :minor, to: :@semver, allow_nil: true
      delegate :patch, to: :@semver, allow_nil: true
      delegate :prerelease, to: :@semver, allow_nil: true
      delegate :build, to: :@semver, allow_nil: true

      def initialize(mod, type, commit, name: nil, semver: nil, ref: nil)
        raise ArgumentError.new("invalid type '#{type}'") unless VALID_TYPES.include? type
        raise ArgumentError.new("mod is required") unless mod
        raise ArgumentError.new("commit is required") unless commit

        if type == :ref
          raise ArgumentError.new("ref is required") unless ref
        elsif type == :pseudo
          raise ArgumentError.new("name is required") unless name
          raise ArgumentError.new("semver is required") unless semver
        end

        @mod = mod
        @type = type
        @commit = commit
        @name = name if name
        @semver = semver if semver
        @ref = ref if ref
      end

      def name
        @name || @ref&.name
      end

      def full_name
        "#{mod.name}@#{name || commit.sha}"
      end

      def gomod
        strong_memoize(:gomod) do
          if strong_memoized?(:blobs)
            blob_at(@mod.path + '/go.mod')
          elsif @mod.path.empty?
            @mod.project.repository.blob_at(@commit.sha, 'go.mod')&.data
          else
            @mod.project.repository.blob_at(@commit.sha, @mod.path + '/go.mod')&.data
          end
        end
      end

      def archive
        suffix_len = @mod.path == '' ? 0 : @mod.path.length + 1

        Zip::OutputStream.write_buffer do |zip|
          files.each do |file|
            zip.put_next_entry "#{full_name}/#{file[suffix_len...]}"
            zip.write blob_at(file)
          end
        end
      end

      def files
        strong_memoize(:files) do
          ls_tree.filter { |e| !excluded.any? { |n| e.start_with? n } }
        end
      end

      def excluded
        strong_memoize(:excluded) do
          ls_tree
            .filter { |f| f.end_with?('/go.mod') && f != @mod.path + '/go.mod' }
            .map    { |f| f[0..-7] }
        end
      end

      def valid?
        # assume the module version is valid if a corresponding Package exists
        return true if ::Packages::Go::PackageFinder.new(mod.project, mod.name, name).exists?

        @mod.path_valid?(major) && @mod.gomod_valid?(gomod)
      end

      private

      def blob_at(path)
        return if path.nil? || path.empty?

        path = path[1..] if path.start_with? '/'

        blobs.find { |x| x.path == path }&.data
      end

      def blobs
        strong_memoize(:blobs) { @mod.project.repository.batch_blobs(files.map { |x| [@commit.sha, x] }) }
      end

      def ls_tree
        strong_memoize(:ls_tree) do
          path =
            if @mod.path.empty?
              '.'
            else
              @mod.path
            end

          @mod.project.repository.gitaly_repository_client.search_files_by_name(@commit.sha, path)
        end
      end
    end
  end
end