summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/entry/legacy_validation_helpers.rb
blob: 9b9a0a8125a68af29224c969ebbb8d4dbd49e6ce (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
module Gitlab
  module Ci
    class Config
      module Entry
        module LegacyValidationHelpers
          private

          def validate_duration(value)
            value.is_a?(String) && ChronicDuration.parse(value)
          rescue ChronicDuration::DurationParseError
            false
          end

          def validate_array_of_strings(values)
            values.is_a?(Array) && values.all? { |value| validate_string(value) }
          end

          def validate_array_of_strings_or_regexps(values)
            values.is_a?(Array) && values.all? { |value| validate_string_or_regexp(value) }
          end

          def validate_variables(variables)
            variables.is_a?(Hash) &&
              variables.all? { |key, value| validate_string(key) && validate_string(value) }
          end

          def validate_string(value)
            value.is_a?(String) || value.is_a?(Symbol)
          end

          def validate_regexp(value)
            !value.nil? && Regexp.new(value.to_s) && true
          rescue RegexpError, TypeError
            false
          end

          def validate_string_or_regexp(value)
            return true if value.is_a?(Symbol)
            return false unless value.is_a?(String)

            if value.first == '/' && value.last == '/'
              validate_regexp(value[1...-1])
            else
              true
            end
          end

          def validate_boolean(value)
            value.in?([true, false])
          end
        end
      end
    end
  end
end