debian-mirror-gitlab/lib/gitlab/ci/config/external/file/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

161 lines
4.4 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
class Config
module External
module File
class Base
include Gitlab::Utils::StrongMemoize
2019-02-15 15:39:39 +05:30
attr_reader :location, :params, :context, :errors
2018-12-13 13:39:08 +05:30
YAML_WHITELIST_EXTENSION = /.+\.(yml|yaml)$/i.freeze
2019-02-15 15:39:39 +05:30
def initialize(params, context)
@params = params
@context = context
2018-12-13 13:39:08 +05:30
@errors = []
end
2019-02-15 15:39:39 +05:30
def matching?
location.present?
end
2019-12-04 20:38:33 +05:30
def invalid_location_type?
!location.is_a?(String)
end
2018-12-13 13:39:08 +05:30
def invalid_extension?
2019-02-15 15:39:39 +05:30
location.nil? || !::File.basename(location).match?(YAML_WHITELIST_EXTENSION)
2018-12-13 13:39:08 +05:30
end
def valid?
errors.none?
end
def error_message
errors.first
end
def content
raise NotImplementedError, 'subclass must implement fetching raw content'
end
def to_hash
2019-07-07 11:18:12 +05:30
expanded_content_hash
2019-05-18 00:54:41 +05:30
end
2022-06-21 17:19:12 +05:30
def validate!
2023-01-13 00:05:48 +05:30
validate_execution_time!
validate_location!
validate_context! if valid?
fetch_and_validate_content! if valid?
load_and_validate_expanded_hash! if valid?
2022-06-21 17:19:12 +05:30
end
def metadata
{
context_project: context.project&.full_path,
context_sha: context.sha
}
end
def eql?(other)
other.hash == hash
end
def hash
[params, context.project&.full_path, context.sha].hash
end
2019-05-30 16:15:17 +05:30
protected
2019-07-07 11:18:12 +05:30
def expanded_content_hash
return unless content_hash
strong_memoize(:expanded_content_yaml) do
expand_includes(content_hash)
end
end
def content_hash
strong_memoize(:content_yaml) do
2021-03-11 19:13:27 +05:30
::Gitlab::Ci::Config::Yaml.load!(content)
2019-07-07 11:18:12 +05:30
end
rescue Gitlab::Config::Loader::FormatError
nil
end
2019-12-21 20:55:43 +05:30
def validate_execution_time!
context.check_execution_time!
end
2018-12-13 13:39:08 +05:30
def validate_location!
2019-12-04 20:38:33 +05:30
if invalid_location_type?
2022-04-01 21:47:47 +05:30
errors.push("Included file `#{masked_location}` needs to be a string")
2019-12-04 20:38:33 +05:30
elsif invalid_extension?
2022-04-01 21:47:47 +05:30
errors.push("Included file `#{masked_location}` does not have YAML extension!")
2018-12-13 13:39:08 +05:30
end
end
2023-01-13 00:05:48 +05:30
def validate_context!
raise NotImplementedError, 'subclass must implement validate_context'
end
def fetch_and_validate_content!
context.logger.instrument(:config_file_fetch_content) do
content # calling the method fetches then memoizes the result
end
return if errors.any?
context.logger.instrument(:config_file_validate_content) do
validate_content!
end
end
def load_and_validate_expanded_hash!
context.logger.instrument(:config_file_fetch_content_hash) do
content_hash # calling the method loads then memoizes the result
end
context.logger.instrument(:config_file_expand_content_includes) do
expanded_content_hash # calling the method expands then memoizes the result
end
validate_hash!
end
2018-12-13 13:39:08 +05:30
def validate_content!
if content.blank?
2022-04-01 21:47:47 +05:30
errors.push("Included file `#{masked_location}` is empty or does not exist!")
2018-12-13 13:39:08 +05:30
end
end
def validate_hash!
if to_hash.blank?
2022-04-01 21:47:47 +05:30
errors.push("Included file `#{masked_location}` does not have valid YAML syntax!")
2018-12-13 13:39:08 +05:30
end
end
2019-07-07 11:18:12 +05:30
def expand_includes(hash)
2019-12-21 20:55:43 +05:30
External::Processor.new(hash, context.mutate(expand_context_attrs)).perform
2019-07-07 11:18:12 +05:30
end
2019-12-21 20:55:43 +05:30
def expand_context_attrs
{}
2019-07-07 11:18:12 +05:30
end
2022-04-01 21:47:47 +05:30
def masked_location
strong_memoize(:masked_location) do
context.mask_variables_from(location)
end
end
2018-12-13 13:39:08 +05:30
end
end
end
end
end
end