2023-03-04 22:38:38 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
class Config
|
|
|
|
module External
|
|
|
|
class Mapper
|
|
|
|
# Fetches file contents and verifies them
|
|
|
|
class Verifier < Base
|
|
|
|
private
|
|
|
|
|
2023-05-27 22:25:52 +05:30
|
|
|
# rubocop: disable Metrics/CyclomaticComplexity
|
2023-03-04 22:38:38 +05:30
|
|
|
def process_without_instrumentation(files)
|
2023-05-27 22:25:52 +05:30
|
|
|
if ::Feature.disabled?(:ci_batch_project_includes_context, context.project)
|
|
|
|
return legacy_process_without_instrumentation(files)
|
|
|
|
end
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
files.each do |file|
|
2023-05-27 22:25:52 +05:30
|
|
|
if YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
|
|
|
# When running a pipeline, some Ci::ProjectConfig sources prepend the config content with an
|
|
|
|
# "internal" `include`. We use this condition to exclude that `include` from the included file set.
|
|
|
|
context.expandset << file unless context.internal_include?
|
|
|
|
verify_max_includes!
|
|
|
|
end
|
|
|
|
|
|
|
|
verify_execution_time!
|
|
|
|
|
|
|
|
file.validate_location!
|
|
|
|
file.preload_context if file.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
# We do not combine the loops because we need to load the context of all files via `BatchLoader`.
|
|
|
|
files.each do |file| # rubocop:disable Style/CombinableLoops
|
|
|
|
verify_execution_time!
|
|
|
|
|
|
|
|
file.validate_context! if file.valid?
|
|
|
|
file.preload_content if file.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
# We do not combine the loops because we need to load the content of all files via `BatchLoader`.
|
|
|
|
files.each do |file| # rubocop:disable Style/CombinableLoops
|
|
|
|
verify_max_includes! unless YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
|
|
|
verify_execution_time!
|
|
|
|
|
|
|
|
file.validate_content! if file.valid?
|
|
|
|
file.load_and_validate_expanded_hash! if file.valid?
|
|
|
|
|
|
|
|
context.expandset << file unless YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# rubocop: enable Metrics/CyclomaticComplexity
|
|
|
|
|
|
|
|
def legacy_process_without_instrumentation(files)
|
|
|
|
files.each do |file|
|
|
|
|
if YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
|
|
|
# When running a pipeline, some Ci::ProjectConfig sources prepend the config content with an
|
|
|
|
# "internal" `include`. We use this condition to exclude that `include` from the included file set.
|
|
|
|
context.expandset << file unless context.internal_include?
|
|
|
|
verify_max_includes!
|
|
|
|
end
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
verify_execution_time!
|
|
|
|
|
|
|
|
file.validate_location!
|
|
|
|
file.validate_context! if file.valid?
|
|
|
|
file.content if file.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
# We do not combine the loops because we need to load the content of all files before continuing
|
|
|
|
# to call `BatchLoader` for all locations.
|
|
|
|
files.each do |file| # rubocop:disable Style/CombinableLoops
|
2023-05-27 22:25:52 +05:30
|
|
|
verify_max_includes! unless YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
2023-03-04 22:38:38 +05:30
|
|
|
verify_execution_time!
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
file.validate_content! if file.valid?
|
|
|
|
file.load_and_validate_expanded_hash! if file.valid?
|
2023-03-04 22:38:38 +05:30
|
|
|
|
2023-05-27 22:25:52 +05:30
|
|
|
context.expandset << file unless YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
2023-03-04 22:38:38 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_max_includes!
|
2023-05-27 22:25:52 +05:30
|
|
|
if YamlProcessor::FeatureFlags.enabled?(:ci_fix_max_includes)
|
|
|
|
return if context.expandset.count <= context.max_includes
|
|
|
|
else
|
|
|
|
return if context.expandset.count < context.max_includes # rubocop:disable Style/IfInsideElse
|
|
|
|
end
|
2023-03-04 22:38:38 +05:30
|
|
|
|
|
|
|
raise Mapper::TooManyIncludesError, "Maximum of #{context.max_includes} nested includes are allowed!"
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_execution_time!
|
|
|
|
context.check_execution_time!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|