2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-27 05:00:56 -04:00
|
|
|
module API
|
2020-04-27 14:09:41 -04:00
|
|
|
class Templates < Grape::API::Instance
|
2017-01-16 23:45:07 -05:00
|
|
|
include PaginationParams
|
|
|
|
|
2016-06-24 15:43:46 -04:00
|
|
|
GLOBAL_TEMPLATE_TYPES = {
|
2016-08-08 07:42:24 -04:00
|
|
|
gitignores: {
|
|
|
|
gitlab_version: 8.8
|
|
|
|
},
|
|
|
|
gitlab_ci_ymls: {
|
|
|
|
gitlab_version: 8.9
|
2016-11-02 11:41:32 -04:00
|
|
|
},
|
2016-11-08 07:42:58 -05:00
|
|
|
dockerfiles: {
|
2016-12-16 04:17:15 -05:00
|
|
|
gitlab_version: 8.15
|
2016-11-08 07:42:58 -05:00
|
|
|
}
|
2016-05-27 05:00:56 -04:00
|
|
|
}.freeze
|
|
|
|
|
2016-06-24 15:43:46 -04:00
|
|
|
helpers do
|
|
|
|
def render_response(template_type, template)
|
|
|
|
not_found!(template_type.to_s.singularize) unless template
|
|
|
|
present template, with: Entities::Template
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-27 13:53:27 -05:00
|
|
|
desc 'Get the list of the available license template' do
|
|
|
|
detail 'This feature was introduced in GitLab 8.7.'
|
2017-10-05 04:48:05 -04:00
|
|
|
success ::API::Entities::License
|
2017-01-27 13:53:27 -05:00
|
|
|
end
|
|
|
|
params do
|
|
|
|
optional :popular, type: Boolean, desc: 'If passed, returns only popular licenses'
|
2017-01-16 23:45:07 -05:00
|
|
|
use :pagination
|
2017-01-27 13:53:27 -05:00
|
|
|
end
|
|
|
|
get "templates/licenses" do
|
2018-08-14 17:31:38 -04:00
|
|
|
popular = declared(params)[:popular]
|
|
|
|
popular = to_boolean(popular) if popular.present?
|
|
|
|
|
2018-10-02 19:00:38 -04:00
|
|
|
templates = TemplateFinder.build(:licenses, nil, popular: popular).execute
|
2018-08-14 17:31:38 -04:00
|
|
|
|
|
|
|
present paginate(::Kaminari.paginate_array(templates)), with: ::API::Entities::License
|
2016-08-08 07:42:24 -04:00
|
|
|
end
|
|
|
|
|
2017-01-27 13:53:27 -05:00
|
|
|
desc 'Get the text for a specific license' do
|
|
|
|
detail 'This feature was introduced in GitLab 8.7.'
|
2017-10-05 04:48:05 -04:00
|
|
|
success ::API::Entities::License
|
2017-01-27 13:53:27 -05:00
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :name, type: String, desc: 'The name of the template'
|
|
|
|
end
|
|
|
|
get "templates/licenses/:name", requirements: { name: /[\w\.-]+/ } do
|
2018-10-02 19:00:38 -04:00
|
|
|
template = TemplateFinder.build(:licenses, nil, name: params[:name]).execute
|
2018-08-14 17:31:38 -04:00
|
|
|
|
|
|
|
not_found!('License') unless template.present?
|
2016-08-08 07:42:24 -04:00
|
|
|
|
2018-08-14 17:31:38 -04:00
|
|
|
template.resolve!(
|
|
|
|
project_name: params[:project].presence,
|
|
|
|
fullname: params[:fullname].presence || current_user&.name
|
|
|
|
)
|
2016-08-08 07:42:24 -04:00
|
|
|
|
2017-10-05 04:48:05 -04:00
|
|
|
present template, with: ::API::Entities::License
|
2016-08-08 07:42:24 -04:00
|
|
|
end
|
2016-11-02 11:41:32 -04:00
|
|
|
|
2016-08-08 07:42:24 -04:00
|
|
|
GLOBAL_TEMPLATE_TYPES.each do |template_type, properties|
|
|
|
|
gitlab_version = properties[:gitlab_version]
|
|
|
|
|
2017-01-27 13:53:27 -05:00
|
|
|
desc 'Get the list of the available template' do
|
|
|
|
detail "This feature was introduced in GitLab #{gitlab_version}."
|
|
|
|
success Entities::TemplatesList
|
|
|
|
end
|
2017-01-16 23:45:07 -05:00
|
|
|
params do
|
|
|
|
use :pagination
|
|
|
|
end
|
2017-01-27 13:53:27 -05:00
|
|
|
get "templates/#{template_type}" do
|
2018-10-02 19:00:38 -04:00
|
|
|
templates = ::Kaminari.paginate_array(TemplateFinder.build(template_type, nil).execute)
|
2017-02-06 13:38:17 -05:00
|
|
|
present paginate(templates), with: Entities::TemplatesList
|
2016-08-08 07:42:24 -04:00
|
|
|
end
|
|
|
|
|
2017-01-27 13:53:27 -05:00
|
|
|
desc 'Get the text for a specific template present in local filesystem' 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 template'
|
|
|
|
end
|
2018-12-04 10:59:01 -05:00
|
|
|
get "templates/#{template_type}/:name", requirements: { name: /[\w\.-]+/ } do
|
2018-10-02 19:00:38 -04:00
|
|
|
finder = TemplateFinder.build(template_type, nil, name: declared(params)[:name])
|
2018-08-28 09:14:39 -04:00
|
|
|
new_template = finder.execute
|
2016-08-08 07:42:24 -04:00
|
|
|
|
2017-01-27 13:53:27 -05:00
|
|
|
render_response(template_type, new_template)
|
2016-05-27 05:00:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|