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

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

module Gitlab
  module Seeders
    module Ci
      class VariablesInstanceSeeder
        DEFAULT_SEED_COUNT = 10
        DEFAULT_PREFIX = 'INSTANCE_VAR_'

        def initialize(params = {})
          @seed_count = params[:seed_count] || DEFAULT_SEED_COUNT
          @prefix = params[:prefix] || DEFAULT_PREFIX
        end

        def seed
          max_id = ::Ci::InstanceVariable.maximum(:id).to_i
          seed_count.times do
            max_id += 1
            create_ci_variable(max_id)
          end
        end

        private

        attr_reader :prefix, :seed_count

        def create_ci_variable(id)
          key = "#{prefix}#{id}"

          if ::Ci::InstanceVariable.find_by_key(key)
            warn "WARNING: Instance CI Variable with key '#{key}' already exists. Skipping to next CI variable..."
            return
          end

          ::Ci::InstanceVariable.new(
            key: key,
            value: SecureRandom.hex(32)
          ).save
        end
      end
    end
  end
end