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

task_helpers.rb « lib - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c532c883ba955cb650a320a5781b63417ef58333 (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
# frozen_string_literal: true

require 'yaml'

class TaskHelpers
  PRODUCTS = %w[ee omnibus runner charts operator].freeze
  VERSION_FORMAT = %r{^(?<major>\d{1,2})\.(?<minor>\d{1,2})$}.freeze

  def config
    # Parse the config file and create a hash.
    @config ||= YAML.load_file('./nanoc.yaml')
  end

  def products
    @products ||= begin
      # Pull products data from the config.
      PRODUCTS.each_with_object({}) do |key, result|
        result[key] = config['products'][key]
      end
    end
  end

  def retrieve_branch(slug)
    # If CI_COMMIT_REF_NAME is not defined (run locally), set it to the default branch.
    if ENV["CI_COMMIT_REF_NAME"].nil?
      default_branch(products[slug].fetch('repo'))

    # If we're on a gitlab-docs stable branch according to the regex, catch the
    # version and assign the product stable branches correctly.
    elsif version = ENV["CI_COMMIT_REF_NAME"].match(VERSION_FORMAT)

      case slug
      # EE has different branch name scheme
      when 'ee'
        "#{version[:major]}-#{version[:minor]}-stable-ee"

      when 'omnibus', 'runner'
        "#{version[:major]}-#{version[:minor]}-stable"

      # Charts don't use the same version scheme as GitLab, we need to
      # deduct their version from the GitLab equivalent one.
      when 'charts'
        chart = chart_version(ENV["CI_COMMIT_REF_NAME"]).match(VERSION_FORMAT)
        "#{chart[:major]}-#{chart[:minor]}-stable"

      # If the upstream product doesn't follow a stable branch scheme, set the
      # branch to the default
      else
        default_branch(products[slug].fetch('repo'))
      end

    # If we're NOT on a gitlab-docs stable branch, fetch the BRANCH_* environment
    # variable, and if not assigned, set to the default branch.
    else
      ENV.fetch("BRANCH_#{slug.upcase}", default_branch(products[slug].fetch('repo')))
    end
  end

  def git_workdir_dirty?
    !`git status --porcelain`.empty?
  end

  def local_branch_exist?(branch)
    !`git branch --list #{branch}`.empty?
  end

  #
  # The charts versions do not follow the same GitLab major number, BUT
  # they do follow a pattern https://docs.gitlab.com/charts/installation/version_mappings.html:
  #
  # 1. The minor version is the same for both
  # 2. The major version augments for both at the same time
  #
  # This means we can deduct the charts version from the GitLab version, since
  # the major charts version is always 9 versions behind its GitLab counterpart.
  #
  def chart_version(gitlab_version)
    major, minor = gitlab_version.split('.')

    # Assume major charts version is nine less than major GitLab version.
    # If this breaks and the version isn't found, it might be because they
    # are no longer exactly 9 releases behind. Ask the distribution team
    # about it.
    major = major.to_i - 9

    "#{major}.#{minor}"
  end

  def default_branch(repo)
    # Get the URL-encoded path of the project
    # https://docs.gitlab.com/ee/api/README.html#namespaced-path-encoding
    url_encoded_path = repo.sub('https://gitlab.com/', '').sub('.git', '').gsub('/', '%2F')

    `curl --silent https://gitlab.com/api/v4/projects/#{url_encoded_path} | jq --raw-output .default_branch`.tr("\n", '')
  end
end