102 lines
3.5 KiB
Ruby
102 lines
3.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
class Templates < ::API::Base
|
|
include PaginationParams
|
|
|
|
GLOBAL_TEMPLATE_TYPES = {
|
|
gitignores: {
|
|
gitlab_version: 8.8,
|
|
feature_category: :source_code_management,
|
|
file_type: '.gitignore'
|
|
},
|
|
gitlab_ci_ymls: {
|
|
gitlab_version: 8.9,
|
|
feature_category: :pipeline_authoring,
|
|
file_type: 'GitLab CI/CD YAML'
|
|
},
|
|
dockerfiles: {
|
|
gitlab_version: 8.15,
|
|
feature_category: :source_code_management,
|
|
file_type: 'Dockerfile'
|
|
}
|
|
}.freeze
|
|
|
|
helpers do
|
|
def render_response(template_type, template)
|
|
not_found!(template_type.to_s.singularize) unless template
|
|
present template, with: Entities::Template
|
|
end
|
|
end
|
|
|
|
desc 'Get all license templates' do
|
|
detail 'This feature was introduced in GitLab 8.7.'
|
|
success ::API::Entities::License
|
|
end
|
|
params do
|
|
optional :popular, type: Boolean, desc: 'If passed, returns only popular licenses'
|
|
use :pagination
|
|
end
|
|
get "templates/licenses", feature_category: :source_code_management do
|
|
popular = declared(params)[:popular]
|
|
popular = to_boolean(popular) if popular.present?
|
|
|
|
templates = TemplateFinder.build(:licenses, nil, popular: popular).execute
|
|
|
|
present paginate(::Kaminari.paginate_array(templates)), with: ::API::Entities::License
|
|
end
|
|
|
|
desc 'Get a single license template' do
|
|
detail 'This feature was introduced in GitLab 8.7.'
|
|
success ::API::Entities::License
|
|
end
|
|
params do
|
|
requires :name, type: String, desc: 'The name of the license template'
|
|
optional :project, type: String, desc: 'The copyrighted project name'
|
|
optional :fullname, type: String, desc: 'The full-name of the copyright holder'
|
|
end
|
|
get "templates/licenses/:name", requirements: { name: /[\w\.-]+/ }, feature_category: :source_code_management do
|
|
template = TemplateFinder.build(:licenses, nil, name: params[:name]).execute
|
|
|
|
not_found!('License') unless template.present?
|
|
|
|
template.resolve!(
|
|
project_name: params[:project].presence,
|
|
fullname: params[:fullname].presence || current_user&.name
|
|
)
|
|
|
|
present template, with: ::API::Entities::License
|
|
end
|
|
|
|
GLOBAL_TEMPLATE_TYPES.each do |template_type, properties|
|
|
gitlab_version = properties[:gitlab_version]
|
|
file_type = properties[:file_type]
|
|
|
|
desc "Get all #{file_type} templates" do
|
|
detail "This feature was introduced in GitLab #{gitlab_version}."
|
|
success Entities::TemplatesList
|
|
end
|
|
params do
|
|
use :pagination
|
|
end
|
|
get "templates/#{template_type}", feature_category: properties[:feature_category] do
|
|
templates = ::Kaminari.paginate_array(TemplateFinder.build(template_type, nil).execute)
|
|
present paginate(templates), with: Entities::TemplatesList
|
|
end
|
|
|
|
desc "Get a single #{file_type} template" do
|
|
detail "This feature was introduced in GitLab #{gitlab_version}."
|
|
success Entities::Template
|
|
end
|
|
params do
|
|
requires :name, type: String, desc: "The name of the #{file_type} template"
|
|
end
|
|
get "templates/#{template_type}/:name", requirements: { name: /[\w\.-]+/ }, feature_category: properties[:feature_category] do
|
|
finder = TemplateFinder.build(template_type, nil, name: declared(params)[:name])
|
|
new_template = finder.execute
|
|
|
|
render_response(template_type, new_template)
|
|
end
|
|
end
|
|
end
|
|
end
|