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

    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
                        :dependencies, :before_script, :after_script, :variables]
D
Douwe Maan 已提交
11

12
    attr_reader :before_script, :after_script, :image, :services, :path, :cache
D
Douwe Maan 已提交
13

14
    def initialize(config, path = nil)
15
      @config = YAML.safe_load(config, [Symbol], [], true)
16
      @path = path
D
Douwe Maan 已提交
17 18 19 20 21 22 23 24 25 26 27 28

      unless @config.is_a? Hash
        raise ValidationError, "YAML should be a hash"
      end

      @config = @config.deep_symbolize_keys

      initial_parsing

      validate!
    end

29 30
    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 已提交
31 32 33 34 35 36 37 38 39 40 41 42
    end

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

    def stages
      @stages || DEFAULT_STAGES
    end

43
    def global_variables
44 45 46 47
      @variables
    end

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

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

D
Douwe Maan 已提交
54 55 56 57
    private

    def initial_parsing
      @before_script = @config[:before_script] || []
58
      @after_script = @config[:after_script]
D
Douwe Maan 已提交
59 60 61 62
      @image = @config[:image]
      @services = @config[:services]
      @stages = @config[:stages] || @config[:types]
      @variables = @config[:variables] || {}
63
      @cache = @config[:cache]
D
Douwe Maan 已提交
64 65 66
      @config.except!(*ALLOWED_YAML_KEYS)

      @config.each do |name, param|
67
        raise ValidationError, "Unknown parameter: #{name}" unless is_a_job?(name, param)
D
Douwe Maan 已提交
68 69 70 71 72 73 74 75
      end

      unless @config.values.any?{|job| job.is_a?(Hash)}
        raise ValidationError, "Please define at least one job"
      end

      @jobs = {}
      @config.each do |key, job|
76
        next if key.to_s.start_with?('.')
D
Douwe Maan 已提交
77 78 79 80 81
        stage = job[:stage] || job[:type] || DEFAULT_STAGE
        @jobs[key] = { stage: stage }.merge(job)
      end
    end

82 83 84 85 86 87
    def is_a_job?(name, value)
      return true if value.is_a?(Hash) && value.has_key?(:script)
      return true if name.to_s.start_with?('.')
      false
    end

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

    def validate!
K
Kamil Trzcinski 已提交
111 112 113 114 115 116 117 118 119 120
      validate_global!

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

      true
    end

    def validate_global!
D
Douwe Maan 已提交
121 122 123 124
      unless validate_array_of_strings(@before_script)
        raise ValidationError, "before_script should be an array of strings"
      end

125 126
      unless @after_script.nil? || validate_array_of_strings(@after_script)
        raise ValidationError, "after_script should be an array of strings"
127 128
      end

D
Douwe Maan 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141
      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 已提交
142
        raise ValidationError, "variables should be a map of key-value strings"
D
Douwe Maan 已提交
143 144
      end

K
Kamil Trzcinski 已提交
145 146
      validate_global_cache! if @cache
    end
147

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

233 234 235
    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 已提交
236
      end
237
    end
K
Kamil Trzcinski 已提交
238

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

246
    def validate_job_cache!(name, job)
247 248 249 250
      if job[:cache][:key] && !validate_string(job[:cache][:key])
        raise ValidationError, "#{name} job: cache:key parameter should be a string"
      end

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

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

260
    def validate_job_artifacts!(name, job)
261 262 263 264
      if job[:artifacts][:name] && !validate_string(job[:artifacts][:name])
        raise ValidationError, "#{name} job: artifacts:name parameter should be a string"
      end

265 266 267 268 269 270 271 272
      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
    end
D
Douwe Maan 已提交
273

274 275 276 277 278 279 280 281
    def validate_job_dependencies!(name, job)
      if !validate_array_of_strings(job[:dependencies])
        raise ValidationError, "#{name} job: dependencies parameter should be an array of strings"
      end

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

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

284
        unless stages.index(@jobs[dependency.to_sym][:stage]) < stage_index
285 286 287 288 289
          raise ValidationError, "#{name} job: dependency #{dependency} is not defined in prior stages"
        end
      end
    end

D
Douwe Maan 已提交
290
    def validate_array_of_strings(values)
K
Kamil Trzcinski 已提交
291
      values.is_a?(Array) && values.all? { |value| validate_string(value) }
D
Douwe Maan 已提交
292 293 294
    end

    def validate_variables(variables)
K
Kamil Trzcinski 已提交
295 296 297 298 299
      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 已提交
300
    end
301

302 303 304 305
    def validate_boolean(value)
      value.in?([true, false])
    end

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

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

      true
    end

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

J
Jason Roehm 已提交
324
    def match_ref?(pattern, ref, tag, trigger_request)
325 326 327 328
      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 已提交
329
      return true if trigger_request.present? && pattern == 'triggers'
330 331 332 333 334 335 336

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