debian-mirror-gitlab/lib/gitlab/ci/config/entry/policy.rb

84 lines
2.7 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Ci
class Config
module Entry
##
2018-12-23 12:14:25 +05:30
# Base class for OnlyPolicy and ExceptPolicy
2018-03-17 18:26:18 +05:30
#
2018-12-23 12:14:25 +05:30
class Policy < ::Gitlab::Config::Entry::Simplifiable
2018-03-17 18:26:18 +05:30
strategy :RefsPolicy, if: -> (config) { config.is_a?(Array) }
strategy :ComplexPolicy, if: -> (config) { config.is_a?(Hash) }
2018-12-23 12:14:25 +05:30
class RefsPolicy < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Validatable
2018-03-17 18:26:18 +05:30
validations do
validates :config, array_of_strings_or_regexps: true
end
def value
{ refs: @config }
end
end
2018-12-23 12:14:25 +05:30
class ComplexPolicy < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Validatable
include ::Gitlab::Config::Entry::Attributable
2018-03-17 18:26:18 +05:30
2018-12-05 23:21:45 +05:30
ALLOWED_KEYS = %i[refs kubernetes variables changes].freeze
attributes :refs, :kubernetes, :variables, :changes
2018-03-17 18:26:18 +05:30
validations do
validates :config, presence: true
2018-12-05 23:21:45 +05:30
validates :config, allowed_keys: ALLOWED_KEYS
2018-05-09 12:01:36 +05:30
validate :variables_expressions_syntax
2018-03-17 18:26:18 +05:30
with_options allow_nil: true do
validates :refs, array_of_strings_or_regexps: true
validates :kubernetes, allowed_values: %w[active]
2018-05-09 12:01:36 +05:30
validates :variables, array_of_strings: true
2018-12-05 23:21:45 +05:30
validates :changes, array_of_strings: true
2018-05-09 12:01:36 +05:30
end
def variables_expressions_syntax
return unless variables.is_a?(Array)
statements = variables.map do |statement|
::Gitlab::Ci::Pipeline::Expression::Statement.new(statement)
end
statements.each do |statement|
unless statement.valid?
errors.add(:variables, "Invalid expression syntax")
end
end
2018-03-17 18:26:18 +05:30
end
end
end
2018-12-23 12:14:25 +05:30
class UnknownStrategy < ::Gitlab::Config::Entry::Node
2018-03-17 18:26:18 +05:30
def errors
["#{location} has to be either an array of conditions or a hash"]
end
end
def self.default
end
2018-12-23 12:14:25 +05:30
##
# Class-level execution won't be inherited by subclasses by default.
# Therefore, we need to explicitly execute that for OnlyPolicy and ExceptPolicy
def self.inherited(klass)
super
klass.strategy :RefsPolicy, if: -> (config) { config.is_a?(Array) }
klass.strategy :ComplexPolicy, if: -> (config) { config.is_a?(Hash) }
end
2018-03-17 18:26:18 +05:30
end
end
end
end
end