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

132 lines
3.3 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
2018-12-05 23:21:45 +05:30
#
# Base GitLab CI Configuration facade
#
class Config
2018-11-20 20:47:30 +05:30
ConfigError = Class.new(StandardError)
2019-12-21 20:55:43 +05:30
TIMEOUT_SECONDS = 30.seconds
TIMEOUT_MESSAGE = 'Resolving config took longer than expected'
2018-11-20 20:47:30 +05:30
2019-09-30 21:07:59 +05:30
RESCUE_ERRORS = [
Gitlab::Config::Loader::FormatError,
Extendable::ExtensionError,
2021-03-11 19:13:27 +05:30
External::Processor::IncludeError,
Config::Yaml::Tags::TagError
2019-09-30 21:07:59 +05:30
].freeze
attr_reader :root
2020-04-08 14:13:33 +05:30
def initialize(config, project: nil, sha: nil, user: nil, parent_pipeline: nil)
@context = build_context(project: project, sha: sha, user: user, parent_pipeline: parent_pipeline)
@context.set_deadline(TIMEOUT_SECONDS)
2019-12-21 20:55:43 +05:30
@config = expand_config(config)
2019-09-30 21:07:59 +05:30
@root = Entry::Root.new(@config)
@root.compose!
rescue *rescue_errors => e
2018-11-20 20:47:30 +05:30
raise Config::ConfigError, e.message
end
2016-08-24 12:49:21 +05:30
def valid?
2019-09-30 21:07:59 +05:30
@root.valid?
2016-08-24 12:49:21 +05:30
end
def errors
2019-09-30 21:07:59 +05:30
@root.errors
2016-08-24 12:49:21 +05:30
end
2020-07-28 23:09:34 +05:30
def warnings
@root.warnings
end
def to_hash
@config
end
2017-08-17 22:00:37 +05:30
##
# Temporary method that should be removed after refactoring
#
def variables
2019-09-30 21:07:59 +05:30
root.variables_value
2017-08-17 22:00:37 +05:30
end
2021-01-03 14:25:43 +05:30
def variables_with_data
root.variables_entry.value_with_data
end
2017-08-17 22:00:37 +05:30
def stages
2019-09-30 21:07:59 +05:30
root.stages_value
2017-08-17 22:00:37 +05:30
end
def jobs
2019-09-30 21:07:59 +05:30
root.jobs_value
2017-08-17 22:00:37 +05:30
end
2018-11-20 20:47:30 +05:30
2020-11-24 15:15:51 +05:30
def normalized_jobs
@normalized_jobs ||= Ci::Config::Normalizer.new(jobs).normalize_jobs
end
2021-03-08 18:12:59 +05:30
def included_templates
@context.expandset.filter_map { |i| i[:template] }
end
2018-12-05 23:21:45 +05:30
private
2019-12-21 20:55:43 +05:30
def expand_config(config)
build_config(config)
rescue Gitlab::Config::Loader::Yaml::DataTooLargeError => e
2020-01-01 13:55:28 +05:30
track_and_raise_for_dev_exception(e)
2019-12-21 20:55:43 +05:30
raise Config::ConfigError, e.message
rescue Gitlab::Ci::Config::External::Context::TimeoutError => e
2020-01-01 13:55:28 +05:30
track_and_raise_for_dev_exception(e)
2019-12-21 20:55:43 +05:30
raise Config::ConfigError, TIMEOUT_MESSAGE
end
def build_config(config)
2021-03-11 19:13:27 +05:30
initial_config = Config::Yaml.load!(config)
2019-12-21 20:55:43 +05:30
initial_config = Config::External::Processor.new(initial_config, @context).perform
initial_config = Config::Extendable.new(initial_config).to_hash
2021-03-11 19:13:27 +05:30
initial_config = Config::Yaml::Tags::Resolver.new(initial_config).to_hash
2020-04-08 14:13:33 +05:30
initial_config = Config::EdgeStagesInjector.new(initial_config).to_hash
2019-12-21 20:55:43 +05:30
initial_config
2018-12-05 23:21:45 +05:30
end
2021-04-17 20:07:23 +05:30
def find_sha(project)
branches = project&.repository&.branches || []
unless branches.empty?
project.repository.root_ref_sha
end
end
2020-04-08 14:13:33 +05:30
def build_context(project:, sha:, user:, parent_pipeline:)
2019-12-21 20:55:43 +05:30
Config::External::Context.new(
2019-02-15 15:39:39 +05:30
project: project,
2021-04-17 20:07:23 +05:30
sha: sha || find_sha(project),
2020-04-08 14:13:33 +05:30
user: user,
2021-03-08 18:12:59 +05:30
parent_pipeline: parent_pipeline,
variables: project&.predefined_variables&.to_runner_variables)
2019-12-21 20:55:43 +05:30
end
2020-01-01 13:55:28 +05:30
def track_and_raise_for_dev_exception(error)
Gitlab::ErrorTracking.track_and_raise_for_dev_exception(error, @context.sentry_payload)
2018-11-20 20:47:30 +05:30
end
2019-09-30 21:07:59 +05:30
2020-07-28 23:09:34 +05:30
# Overridden in EE
2019-09-30 21:07:59 +05:30
def rescue_errors
RESCUE_ERRORS
end
end
end
end
2019-12-04 20:38:33 +05:30
Gitlab::Ci::Config.prepend_if_ee('EE::Gitlab::Ci::ConfigEE')