gitlab_ci_yaml_processor.rb 11.2 KB
Newer Older
D
Douwe Maan 已提交
1 2
module Ci
  class GitlabCiYamlProcessor
3
    class ValidationError < StandardError; end
D
Douwe Maan 已提交
4

5
    include Gitlab::Ci::Config::Node::LegacyValidationHelpers
6

D
Douwe Maan 已提交
7 8
    DEFAULT_STAGES = %w(build test deploy)
    DEFAULT_STAGE = 'test'
9
    ALLOWED_YAML_KEYS = [:before_script, :after_script, :image, :services, :types, :stages, :variables, :cache]
10 11
    ALLOWED_JOB_KEYS = [:tags, :script, :only, :except, :type, :image, :services,
                        :allow_failure, :type, :stage, :when, :artifacts, :cache,
12 13
                        :dependencies, :before_script, :after_script, :variables,
                        :environment]
K
Kamil Trzcinski 已提交
14
    ALLOWED_CACHE_KEYS = [:key, :untracked, :paths]
15
    ALLOWED_ARTIFACTS_KEYS = [:name, :untracked, :paths, :when, :expire_in]
D
Douwe Maan 已提交
16

17
    attr_reader :path, :cache
D
Douwe Maan 已提交
18

19
    def initialize(config, path = nil)
20 21 22
      @ci_config = Gitlab::Ci::Config.new(config)
      @config = @ci_config.to_hash

23
      @path = path
D
Douwe Maan 已提交
24

25 26 27
      unless @ci_config.valid?
        raise ValidationError, @ci_config.errors.first
      end
D
Douwe Maan 已提交
28

29
      initial_parsing
D
Douwe Maan 已提交
30
      validate!
31
    rescue Gitlab::Ci::Config::Loader::FormatError => e
32
      raise ValidationError, e.message
D
Douwe Maan 已提交
33 34
    end

35
    def builds_for_stage_and_ref(stage, ref, tag = false, trigger_request = nil)
36 37 38 39
      builds.select do |build|
        build[:stage] == stage &&
          process?(build[:only], build[:except], ref, tag, trigger_request)
      end
D
Douwe Maan 已提交
40 41 42 43 44 45 46 47 48 49 50 51
    end

    def builds
      @jobs.map do |name, job|
        build_job(name, job)
      end
    end

    def stages
      @stages || DEFAULT_STAGES
    end

52
    def global_variables
53 54 55 56
      @variables
    end

    def job_variables(name)
G
Grzegorz Bizon 已提交
57 58 59
      job = @jobs[name.to_sym]
      return [] unless job

60
      job[:variables] || []
61 62
    end

D
Douwe Maan 已提交
63 64 65
    private

    def initial_parsing
66 67
      @before_script = @ci_config.before_script
      @image = @ci_config.image
68
      @after_script = @ci_config.after_script
69
      @services = @ci_config.services
70

D
Douwe Maan 已提交
71 72
      @stages = @config[:stages] || @config[:types]
      @variables = @config[:variables] || {}
73
      @cache = @config[:cache]
74
      @jobs = {}
D
Douwe Maan 已提交
75

76
      @config.except!(*ALLOWED_YAML_KEYS)
T
Tomasz Maczukin 已提交
77
      @config.each { |name, param| add_job(name, param) }
D
Douwe Maan 已提交
78

79
      raise ValidationError, "Please define at least one job" if @jobs.none?
D
Douwe Maan 已提交
80 81
    end

82 83 84 85 86 87 88
    def add_job(name, job)
      return if name.to_s.start_with?('.')

      raise ValidationError, "Unknown parameter: #{name}" unless job.is_a?(Hash) && job.has_key?(:script)

      stage = job[:stage] || job[:type] || DEFAULT_STAGE
      @jobs[name] = { stage: stage }.merge(job)
89 90
    end

D
Douwe Maan 已提交
91 92
    def build_job(name, job)
      {
K
Kamil Trzcinski 已提交
93
        stage_idx: stages.index(job[:stage]),
D
Douwe Maan 已提交
94
        stage: job[:stage],
95
        commands: [job[:before_script] || @before_script, job[:script]].flatten.compact.join("\n"),
K
Kamil Trzcinski 已提交
96
        tag_list: job[:tags] || [],
D
Douwe Maan 已提交
97 98 99 100
        name: name,
        only: job[:only],
        except: job[:except],
        allow_failure: job[:allow_failure] || false,
101
        when: job[:when] || 'on_success',
102
        environment: job[:environment],
D
Douwe Maan 已提交
103 104
        options: {
          image: job[:image] || @image,
K
Kamil Trzcinski 已提交
105
          services: job[:services] || @services,
106 107
          artifacts: job[:artifacts],
          cache: job[:cache] || @cache,
108
          dependencies: job[:dependencies],
109
          after_script: job[:after_script] || @after_script,
D
Douwe Maan 已提交
110 111 112 113 114
        }.compact
      }
    end

    def validate!
K
Kamil Trzcinski 已提交
115 116 117 118 119 120 121 122 123 124
      validate_global!

      @jobs.each do |name, job|
        validate_job!(name, job)
      end

      true
    end

    def validate_global!
D
Douwe Maan 已提交
125 126 127 128 129
      unless @stages.nil? || validate_array_of_strings(@stages)
        raise ValidationError, "stages should be an array of strings"
      end

      unless @variables.nil? || validate_variables(@variables)
G
Grzegorz Bizon 已提交
130
        raise ValidationError, "variables should be a map of key-value strings"
D
Douwe Maan 已提交
131 132
      end

K
Kamil Trzcinski 已提交
133 134
      validate_global_cache! if @cache
    end
135

K
Kamil Trzcinski 已提交
136
    def validate_global_cache!
K
Kamil Trzcinski 已提交
137 138 139 140 141 142
      @cache.keys.each do |key|
        unless ALLOWED_CACHE_KEYS.include? key
          raise ValidationError, "#{name} cache unknown parameter #{key}"
        end
      end

K
Kamil Trzcinski 已提交
143 144
      if @cache[:key] && !validate_string(@cache[:key])
        raise ValidationError, "cache:key parameter should be a string"
145 146
      end

K
Kamil Trzcinski 已提交
147 148
      if @cache[:untracked] && !validate_boolean(@cache[:untracked])
        raise ValidationError, "cache:untracked parameter should be an boolean"
D
Douwe Maan 已提交
149 150
      end

K
Kamil Trzcinski 已提交
151 152 153
      if @cache[:paths] && !validate_array_of_strings(@cache[:paths])
        raise ValidationError, "cache:paths parameter should be an array of strings"
      end
D
Douwe Maan 已提交
154 155 156
    end

    def validate_job!(name, job)
157 158 159
      validate_job_name!(name)
      validate_job_keys!(name, job)
      validate_job_types!(name, job)
K
Kamil Trzcinski 已提交
160
      validate_job_script!(name, job)
161 162

      validate_job_stage!(name, job) if job[:stage]
163
      validate_job_variables!(name, job) if job[:variables]
164 165
      validate_job_cache!(name, job) if job[:cache]
      validate_job_artifacts!(name, job) if job[:artifacts]
166
      validate_job_dependencies!(name, job) if job[:dependencies]
167 168 169
    end

    def validate_job_name!(name)
K
Kamil Trzcinski 已提交
170 171 172
      if name.blank? || !validate_string(name)
        raise ValidationError, "job name should be non-empty string"
      end
173
    end
K
Kamil Trzcinski 已提交
174

175
    def validate_job_keys!(name, job)
D
Douwe Maan 已提交
176 177
      job.keys.each do |key|
        unless ALLOWED_JOB_KEYS.include? key
K
Kamil Trzcinski 已提交
178
          raise ValidationError, "#{name} job: unknown parameter #{key}"
D
Douwe Maan 已提交
179 180
        end
      end
181
    end
D
Douwe Maan 已提交
182

183
    def validate_job_types!(name, job)
K
Kamil Trzcinski 已提交
184 185
      if job[:image] && !validate_string(job[:image])
        raise ValidationError, "#{name} job: image should be a string"
D
Douwe Maan 已提交
186 187 188
      end

      if job[:services] && !validate_array_of_strings(job[:services])
K
Kamil Trzcinski 已提交
189
        raise ValidationError, "#{name} job: services should be an array of strings"
D
Douwe Maan 已提交
190 191 192
      end

      if job[:tags] && !validate_array_of_strings(job[:tags])
K
Kamil Trzcinski 已提交
193
        raise ValidationError, "#{name} job: tags parameter should be an array of strings"
D
Douwe Maan 已提交
194 195
      end

196 197
      if job[:only] && !validate_array_of_strings_or_regexps(job[:only])
        raise ValidationError, "#{name} job: only parameter should be an array of strings or regexps"
D
Douwe Maan 已提交
198 199
      end

200 201
      if job[:except] && !validate_array_of_strings_or_regexps(job[:except])
        raise ValidationError, "#{name} job: except parameter should be an array of strings or regexps"
D
Douwe Maan 已提交
202 203
      end

204 205
      if job[:allow_failure] && !validate_boolean(job[:allow_failure])
        raise ValidationError, "#{name} job: allow_failure parameter should be an boolean"
206 207
      end

K
Kamil Trzcinski 已提交
208
      if job[:when] && !job[:when].in?(%w[on_success on_failure always])
209 210
        raise ValidationError, "#{name} job: when parameter should be on_success, on_failure or always"
      end
211

212 213
      if job[:environment] && !validate_environment(job[:environment])
        raise ValidationError, "#{name} job: environment parameter #{Gitlab::Regex.environment_name_regex_message}"
214
      end
215
    end
216

K
Kamil Trzcinski 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230
    def validate_job_script!(name, job)
      if !validate_string(job[:script]) && !validate_array_of_strings(job[:script])
        raise ValidationError, "#{name} job: script should be a string or an array of a strings"
      end

      if job[:before_script] && !validate_array_of_strings(job[:before_script])
        raise ValidationError, "#{name} job: before_script should be an array of strings"
      end

      if job[:after_script] && !validate_array_of_strings(job[:after_script])
        raise ValidationError, "#{name} job: after_script should be an array of strings"
      end
    end

231 232 233
    def validate_job_stage!(name, job)
      unless job[:stage].is_a?(String) && job[:stage].in?(stages)
        raise ValidationError, "#{name} job: stage parameter should be #{stages.join(", ")}"
K
Kamil Trzcinski 已提交
234
      end
235
    end
K
Kamil Trzcinski 已提交
236

237
    def validate_job_variables!(name, job)
G
Grzegorz Bizon 已提交
238
      unless validate_variables(job[:variables])
239
        raise ValidationError,
G
Grzegorz Bizon 已提交
240
          "#{name} job: variables should be a map of key-value strings"
241 242 243
      end
    end

244
    def validate_job_cache!(name, job)
K
Kamil Trzcinski 已提交
245 246 247 248 249 250
      job[:cache].keys.each do |key|
        unless ALLOWED_CACHE_KEYS.include? key
          raise ValidationError, "#{name} job: cache unknown parameter #{key}"
        end
      end

251 252 253 254
      if job[:cache][:key] && !validate_string(job[:cache][:key])
        raise ValidationError, "#{name} job: cache:key parameter should be a string"
      end

255 256
      if job[:cache][:untracked] && !validate_boolean(job[:cache][:untracked])
        raise ValidationError, "#{name} job: cache:untracked parameter should be an boolean"
D
Douwe Maan 已提交
257
      end
258

259 260
      if job[:cache][:paths] && !validate_array_of_strings(job[:cache][:paths])
        raise ValidationError, "#{name} job: cache:paths parameter should be an array of strings"
261
      end
D
Douwe Maan 已提交
262 263
    end

264
    def validate_job_artifacts!(name, job)
K
Kamil Trzcinski 已提交
265 266 267 268 269 270
      job[:artifacts].keys.each do |key|
        unless ALLOWED_ARTIFACTS_KEYS.include? key
          raise ValidationError, "#{name} job: artifacts unknown parameter #{key}"
        end
      end

271 272 273 274
      if job[:artifacts][:name] && !validate_string(job[:artifacts][:name])
        raise ValidationError, "#{name} job: artifacts:name parameter should be a string"
      end

275 276 277 278 279 280 281
      if job[:artifacts][:untracked] && !validate_boolean(job[:artifacts][:untracked])
        raise ValidationError, "#{name} job: artifacts:untracked parameter should be an boolean"
      end

      if job[:artifacts][:paths] && !validate_array_of_strings(job[:artifacts][:paths])
        raise ValidationError, "#{name} job: artifacts:paths parameter should be an array of strings"
      end
K
Kamil Trzcinski 已提交
282

K
Kamil Trzcinski 已提交
283
      if job[:artifacts][:when] && !job[:artifacts][:when].in?(%w[on_success on_failure always])
K
Kamil Trzcinski 已提交
284 285
        raise ValidationError, "#{name} job: artifacts:when parameter should be on_success, on_failure or always"
      end
286 287 288 289

      if job[:artifacts][:expire_in] && !validate_duration(job[:artifacts][:expire_in])
        raise ValidationError, "#{name} job: artifacts:expire_in parameter should be a duration"
      end
290
    end
D
Douwe Maan 已提交
291

292
    def validate_job_dependencies!(name, job)
293
      unless validate_array_of_strings(job[:dependencies])
294 295 296 297 298 299
        raise ValidationError, "#{name} job: dependencies parameter should be an array of strings"
      end

      stage_index = stages.index(job[:stage])

      job[:dependencies].each do |dependency|
300
        raise ValidationError, "#{name} job: undefined dependency: #{dependency}" unless @jobs[dependency.to_sym]
301

302
        unless stages.index(@jobs[dependency.to_sym][:stage]) < stage_index
303 304 305 306 307
          raise ValidationError, "#{name} job: dependency #{dependency} is not defined in prior stages"
        end
      end
    end

308
    def process?(only_params, except_params, ref, tag, trigger_request)
309
      if only_params.present?
310
        return false unless matching?(only_params, ref, tag, trigger_request)
311 312 313
      end

      if except_params.present?
314
        return false if matching?(except_params, ref, tag, trigger_request)
315 316 317 318 319
      end

      true
    end

320
    def matching?(patterns, ref, tag, trigger_request)
321
      patterns.any? do |pattern|
322
        match_ref?(pattern, ref, tag, trigger_request)
323 324 325
      end
    end

J
Jason Roehm 已提交
326
    def match_ref?(pattern, ref, tag, trigger_request)
327 328 329 330
      pattern, path = pattern.split('@', 2)
      return false if path && path != self.path
      return true if tag && pattern == 'tags'
      return true if !tag && pattern == 'branches'
J
Jason Roehm 已提交
331
      return true if trigger_request.present? && pattern == 'triggers'
332 333 334 335 336 337 338

      if pattern.first == "/" && pattern.last == "/"
        Regexp.new(pattern[1...-1]) =~ ref
      else
        pattern == ref
      end
    end
D
Douwe Maan 已提交
339
  end
340
end