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

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

15
    attr_reader :before_script, :after_script, :image, :services, :path, :cache
D
Douwe Maan 已提交
16

17
    def initialize(config, path = nil)
18
      @config = Gitlab::Ci::Config.new(config).to_hash
19
      @path = path
D
Douwe Maan 已提交
20 21 22 23

      initial_parsing

      validate!
24
    rescue Gitlab::Ci::Config::Loader::FormatError => e
25
      raise ValidationError, e.message
D
Douwe Maan 已提交
26 27
    end

28 29
    def builds_for_stage_and_ref(stage, ref, tag = false, trigger_request = nil)
      builds.select{|build| build[:stage] == stage && process?(build[:only], build[:except], ref, tag, trigger_request)}
D
Douwe Maan 已提交
30 31 32 33 34 35 36 37 38 39 40 41
    end

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

    def stages
      @stages || DEFAULT_STAGES
    end

42
    def global_variables
43 44 45 46
      @variables
    end

    def job_variables(name)
G
Grzegorz Bizon 已提交
47 48 49 50
      job = @jobs[name.to_sym]
      return [] unless job

      job.fetch(:variables, [])
51 52
    end

D
Douwe Maan 已提交
53 54 55 56
    private

    def initial_parsing
      @before_script = @config[:before_script] || []
57
      @after_script = @config[:after_script]
D
Douwe Maan 已提交
58 59 60 61
      @image = @config[:image]
      @services = @config[:services]
      @stages = @config[:stages] || @config[:types]
      @variables = @config[:variables] || {}
62
      @cache = @config[:cache]
63
      @jobs = {}
D
Douwe Maan 已提交
64

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

68
      raise ValidationError, "Please define at least one job" if @jobs.none?
D
Douwe Maan 已提交
69 70
    end

71 72 73 74 75 76 77
    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)
78 79
    end

D
Douwe Maan 已提交
80 81
    def build_job(name, job)
      {
K
Kamil Trzcinski 已提交
82
        stage_idx: stages.index(job[:stage]),
D
Douwe Maan 已提交
83
        stage: job[:stage],
84
        commands: [job[:before_script] || @before_script, job[:script]].flatten.join("\n"),
K
Kamil Trzcinski 已提交
85
        tag_list: job[:tags] || [],
D
Douwe Maan 已提交
86 87 88 89
        name: name,
        only: job[:only],
        except: job[:except],
        allow_failure: job[:allow_failure] || false,
90
        when: job[:when] || 'on_success',
91
        environment: job[:environment],
D
Douwe Maan 已提交
92 93
        options: {
          image: job[:image] || @image,
K
Kamil Trzcinski 已提交
94
          services: job[:services] || @services,
95 96
          artifacts: job[:artifacts],
          cache: job[:cache] || @cache,
97
          dependencies: job[:dependencies],
98
          after_script: job[:after_script] || @after_script,
D
Douwe Maan 已提交
99 100 101 102 103
        }.compact
      }
    end

    def validate!
K
Kamil Trzcinski 已提交
104 105 106 107 108 109 110 111 112 113
      validate_global!

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

      true
    end

    def validate_global!
D
Douwe Maan 已提交
114 115 116 117
      unless validate_array_of_strings(@before_script)
        raise ValidationError, "before_script should be an array of strings"
      end

118 119
      unless @after_script.nil? || validate_array_of_strings(@after_script)
        raise ValidationError, "after_script should be an array of strings"
120 121
      end

D
Douwe Maan 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134
      unless @image.nil? || @image.is_a?(String)
        raise ValidationError, "image should be a string"
      end

      unless @services.nil? || validate_array_of_strings(@services)
        raise ValidationError, "services should be an array of strings"
      end

      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 已提交
135
        raise ValidationError, "variables should be a map of key-value strings"
D
Douwe Maan 已提交
136 137
      end

K
Kamil Trzcinski 已提交
138 139
      validate_global_cache! if @cache
    end
140

K
Kamil Trzcinski 已提交
141
    def validate_global_cache!
K
Kamil Trzcinski 已提交
142 143 144 145 146 147
      @cache.keys.each do |key|
        unless ALLOWED_CACHE_KEYS.include? key
          raise ValidationError, "#{name} cache unknown parameter #{key}"
        end
      end

K
Kamil Trzcinski 已提交
148 149
      if @cache[:key] && !validate_string(@cache[:key])
        raise ValidationError, "cache:key parameter should be a string"
150 151
      end

K
Kamil Trzcinski 已提交
152 153
      if @cache[:untracked] && !validate_boolean(@cache[:untracked])
        raise ValidationError, "cache:untracked parameter should be an boolean"
D
Douwe Maan 已提交
154 155
      end

K
Kamil Trzcinski 已提交
156 157 158
      if @cache[:paths] && !validate_array_of_strings(@cache[:paths])
        raise ValidationError, "cache:paths parameter should be an array of strings"
      end
D
Douwe Maan 已提交
159 160 161
    end

    def validate_job!(name, job)
162 163 164
      validate_job_name!(name)
      validate_job_keys!(name, job)
      validate_job_types!(name, job)
K
Kamil Trzcinski 已提交
165
      validate_job_script!(name, job)
166 167

      validate_job_stage!(name, job) if job[:stage]
168
      validate_job_variables!(name, job) if job[:variables]
169 170
      validate_job_cache!(name, job) if job[:cache]
      validate_job_artifacts!(name, job) if job[:artifacts]
171
      validate_job_dependencies!(name, job) if job[:dependencies]
172 173 174
    end

    def validate_job_name!(name)
K
Kamil Trzcinski 已提交
175 176 177
      if name.blank? || !validate_string(name)
        raise ValidationError, "job name should be non-empty string"
      end
178
    end
K
Kamil Trzcinski 已提交
179

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

188
    def validate_job_types!(name, job)
K
Kamil Trzcinski 已提交
189 190
      if job[:image] && !validate_string(job[:image])
        raise ValidationError, "#{name} job: image should be a string"
D
Douwe Maan 已提交
191 192 193
      end

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

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

      if job[:only] && !validate_array_of_strings(job[:only])
K
Kamil Trzcinski 已提交
202
        raise ValidationError, "#{name} job: only parameter should be an array of strings"
D
Douwe Maan 已提交
203 204 205
      end

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

209 210
      if job[:allow_failure] && !validate_boolean(job[:allow_failure])
        raise ValidationError, "#{name} job: allow_failure parameter should be an boolean"
211 212
      end

K
Kamil Trzcinski 已提交
213
      if job[:when] && !job[:when].in?(%w[on_success on_failure always])
214 215
        raise ValidationError, "#{name} job: when parameter should be on_success, on_failure or always"
      end
216 217 218 219

      if job[:environment] && !validate_string(job[:environment])
        raise ValidationError, "#{name} job: environment should be a string"
      end
220
    end
221

K
Kamil Trzcinski 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235
    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

236 237 238
    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 已提交
239
      end
240
    end
K
Kamil Trzcinski 已提交
241

242
    def validate_job_variables!(name, job)
G
Grzegorz Bizon 已提交
243
      unless validate_variables(job[:variables])
244
        raise ValidationError,
G
Grzegorz Bizon 已提交
245
          "#{name} job: variables should be a map of key-value strings"
246 247 248
      end
    end

249
    def validate_job_cache!(name, job)
K
Kamil Trzcinski 已提交
250 251 252 253 254 255
      job[:cache].keys.each do |key|
        unless ALLOWED_CACHE_KEYS.include? key
          raise ValidationError, "#{name} job: cache unknown parameter #{key}"
        end
      end

256 257 258 259
      if job[:cache][:key] && !validate_string(job[:cache][:key])
        raise ValidationError, "#{name} job: cache:key parameter should be a string"
      end

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

264 265
      if job[:cache][:paths] && !validate_array_of_strings(job[:cache][:paths])
        raise ValidationError, "#{name} job: cache:paths parameter should be an array of strings"
266
      end
D
Douwe Maan 已提交
267 268
    end

269
    def validate_job_artifacts!(name, job)
K
Kamil Trzcinski 已提交
270 271 272 273 274 275
      job[:artifacts].keys.each do |key|
        unless ALLOWED_ARTIFACTS_KEYS.include? key
          raise ValidationError, "#{name} job: artifacts unknown parameter #{key}"
        end
      end

276 277 278 279
      if job[:artifacts][:name] && !validate_string(job[:artifacts][:name])
        raise ValidationError, "#{name} job: artifacts:name parameter should be a string"
      end

280 281 282 283 284 285 286
      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 已提交
287

K
Kamil Trzcinski 已提交
288
      if job[:artifacts][:when] && !job[:artifacts][:when].in?(%w[on_success on_failure always])
K
Kamil Trzcinski 已提交
289 290
        raise ValidationError, "#{name} job: artifacts:when parameter should be on_success, on_failure or always"
      end
291
    end
D
Douwe Maan 已提交
292

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

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

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

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

D
Douwe Maan 已提交
309
    def validate_array_of_strings(values)
K
Kamil Trzcinski 已提交
310
      values.is_a?(Array) && values.all? { |value| validate_string(value) }
D
Douwe Maan 已提交
311 312 313
    end

    def validate_variables(variables)
K
Kamil Trzcinski 已提交
314 315 316 317 318
      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)
D
Douwe Maan 已提交
319
    end
320

321 322 323 324
    def validate_boolean(value)
      value.in?([true, false])
    end

325
    def process?(only_params, except_params, ref, tag, trigger_request)
326
      if only_params.present?
327
        return false unless matching?(only_params, ref, tag, trigger_request)
328 329 330
      end

      if except_params.present?
331
        return false if matching?(except_params, ref, tag, trigger_request)
332 333 334 335 336
      end

      true
    end

337
    def matching?(patterns, ref, tag, trigger_request)
338
      patterns.any? do |pattern|
339
        match_ref?(pattern, ref, tag, trigger_request)
340 341 342
      end
    end

J
Jason Roehm 已提交
343
    def match_ref?(pattern, ref, tag, trigger_request)
344 345 346 347
      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 已提交
348
      return true if trigger_request.present? && pattern == 'triggers'
349 350 351 352 353 354 355

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