gitlab-org--gitlab-foss/app/finders/template_finder.rb

45 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class TemplateFinder
2018-10-02 23:00:38 +00:00
include Gitlab::Utils::StrongMemoize
prepend_if_ee('::EE::TemplateFinder') # rubocop: disable Cop/InjectEnterpriseEditionModule
2018-10-02 23:00:38 +00:00
VENDORED_TEMPLATES = HashWithIndifferentAccess.new(
dockerfiles: ::Gitlab::Template::DockerfileTemplate,
gitignores: ::Gitlab::Template::GitignoreTemplate,
gitlab_ci_ymls: ::Gitlab::Template::GitlabCiYmlTemplate
2018-10-02 23:00:38 +00:00
).freeze
class << self
2018-10-02 23:00:38 +00:00
def build(type, project, params = {})
if type.to_s == 'licenses'
LicenseTemplateFinder.new(project, params) # rubocop: disable CodeReuse/Finder
else
2018-10-02 23:00:38 +00:00
new(type, project, params)
end
end
end
2018-10-02 23:00:38 +00:00
attr_reader :type, :project, :params
attr_reader :vendored_templates
private :vendored_templates
2018-10-02 23:00:38 +00:00
def initialize(type, project, params = {})
@type = type
2018-10-02 23:00:38 +00:00
@project = project
@params = params
@vendored_templates = VENDORED_TEMPLATES.fetch(type)
end
def execute
if params[:name]
vendored_templates.find(params[:name])
else
vendored_templates.all
end
end
end