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

previous_tag_finder.rb « repositories « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 150a6332c297b42a25d2cc820ffc633e77c59200 (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
# frozen_string_literal: true

module Repositories
  # A finder class for getting the tag of the last release before a given
  # version.
  #
  # Imagine a project with the following tags:
  #
  # * v1.0.0
  # * v1.1.0
  # * v2.0.0
  #
  # If the version supplied is 2.1.0, the tag returned will be v2.0.0. And when
  # the version is 1.1.1, or 1.2.0, the returned tag will be v1.1.0.
  #
  # This finder expects that all tags to consider meet the following
  # requirements:
  #
  # * They start with the letter "v"
  # * They use semantic versioning for the tag format
  #
  # Tags not meeting these requirements are ignored.
  class PreviousTagFinder
    TAG_REGEX = /\Av(?<version>#{Gitlab::Regex.unbounded_semver_regex})\z/.freeze

    def initialize(project)
      @project = project
    end

    def execute(new_version)
      tags = {}
      versions = [new_version]

      @project.repository.tags.each do |tag|
        matches = tag.name.match(TAG_REGEX)

        next unless matches

        version = matches[:version]
        tags[version] = tag
        versions << version
      end

      VersionSorter.sort!(versions)

      index = versions.index(new_version)

      tags[versions[index - 1]] if index&.positive?
    end
  end
end