summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/entry/release.rb
blob: 7e504c24adede6c21f19eff94162b502b9b7ceb6 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      module Entry
        ##
        # Entry that represents a release configuration.
        #
        class Release < ::Gitlab::Config::Entry::Node
          include ::Gitlab::Config::Entry::Configurable
          include ::Gitlab::Config::Entry::Validatable
          include ::Gitlab::Config::Entry::Attributable

          ALLOWED_KEYS = %i[tag_name name description ref released_at milestones assets].freeze
          attributes %i[tag_name name ref milestones assets].freeze
          attr_reader :released_at

          # Attributable description conflicts with
          # ::Gitlab::Config::Entry::Node.description
          def has_description?
            true
          end

          def description
            config[:description]
          end

          entry :assets, Entry::Release::Assets, description: 'Release assets.'

          validations do
            validates :config, allowed_keys: ALLOWED_KEYS
            validates :tag_name, type: String, presence: true
            validates :description, type: String, presence: true
            validates :milestones, array_of_strings_or_string: true, allow_blank: true
            validate do
              next unless config[:released_at]

              begin
                @released_at = DateTime.iso8601(config[:released_at])
              rescue ArgumentError
                errors.add(:released_at, "must be a valid datetime")
              end
            end
            validate do
              next unless config[:ref]
              next if Commit.reference_valid?(config[:ref])
              next if Gitlab::GitRefValidator.validate(config[:ref])

              errors.add(:ref, "must be a valid ref")
            end
          end

          def value
            @config[:assets] = assets_value if @config.key?(:assets)
            @config
          end
        end
      end
    end
  end
end