gitlab-org--gitlab-foss/lib/api/templates.rb

41 lines
1.1 KiB
Ruby
Raw Normal View History

2016-05-27 09:00:56 +00:00
module API
class Templates < Grape::API
GLOBAL_TEMPLATE_TYPES = {
gitignores: Gitlab::Template::GitignoreTemplate,
gitlab_ci_ymls: Gitlab::Template::GitlabCiYmlTemplate
2016-05-27 09:00:56 +00:00
}.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
GLOBAL_TEMPLATE_TYPES.each do |template_type, klass|
2016-05-27 09:00:56 +00:00
# Get the list of the available template
#
# Example Request:
# GET /gitignores
# GET /gitlab_ci_ymls
get template_type.to_s do
2016-05-27 09:00:56 +00:00
present klass.all, with: Entities::TemplatesList
end
# Get the text for a specific template present in local filesystem
2016-05-27 09:00:56 +00:00
#
# Parameters:
# name (required) - The name of a template
#
# Example Request:
# GET /gitignores/Elixir
# GET /gitlab_ci_ymls/Ruby
get "#{template_type}/:name" do
2016-05-27 09:00:56 +00:00
required_attributes! [:name]
new_template = klass.find(params[:name])
render_response(template_type, new_template)
2016-05-27 09:00:56 +00:00
end
end
end
end