2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
2018-12-05 23:21:45 +05:30
|
|
|
#
|
2016-06-16 23:09:34 +05:30
|
|
|
# Base GitLab CI Configuration facade
|
|
|
|
#
|
|
|
|
class Config
|
2018-11-20 20:47:30 +05:30
|
|
|
ConfigError = Class.new(StandardError)
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def initialize(config, project: nil, sha: nil, user: nil)
|
2018-11-20 20:47:30 +05:30
|
|
|
@config = Config::Extendable
|
2019-02-15 15:39:39 +05:30
|
|
|
.new(build_config(config, project: project, sha: sha, user: user))
|
2018-11-20 20:47:30 +05:30
|
|
|
.to_hash
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
@global = Entry::Global.new(@config)
|
2016-09-29 09:46:39 +05:30
|
|
|
@global.compose!
|
2019-02-15 15:39:39 +05:30
|
|
|
rescue Gitlab::Config::Loader::FormatError,
|
2018-12-13 13:39:08 +05:30
|
|
|
Extendable::ExtensionError,
|
|
|
|
External::Processor::IncludeError => e
|
2018-11-20 20:47:30 +05:30
|
|
|
raise Config::ConfigError, e.message
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
def valid?
|
|
|
|
@global.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
def errors
|
|
|
|
@global.errors
|
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
def to_hash
|
|
|
|
@config
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
##
|
|
|
|
# Temporary method that should be removed after refactoring
|
|
|
|
#
|
|
|
|
def before_script
|
|
|
|
@global.before_script_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def image
|
|
|
|
@global.image_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
|
|
|
@global.services_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_script
|
|
|
|
@global.after_script_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def variables
|
|
|
|
@global.variables_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def stages
|
|
|
|
@global.stages_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache
|
|
|
|
@global.cache_value
|
|
|
|
end
|
|
|
|
|
|
|
|
def jobs
|
|
|
|
@global.jobs_value
|
|
|
|
end
|
2018-11-20 20:47:30 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
private
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def build_config(config, project:, sha:, user:)
|
|
|
|
initial_config = Gitlab::Config::Loader::Yaml.new(config).load!
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
if project
|
2019-02-15 15:39:39 +05:30
|
|
|
process_external_files(initial_config, project: project, sha: sha, user: user)
|
2018-12-05 23:21:45 +05:30
|
|
|
else
|
|
|
|
initial_config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def process_external_files(config, project:, sha:, user:)
|
|
|
|
Config::External::Processor.new(config,
|
|
|
|
project: project,
|
|
|
|
sha: sha || project.repository.root_ref_sha,
|
|
|
|
user: user).perform
|
2018-11-20 20:47:30 +05:30
|
|
|
end
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|