Project

General

Profile

Download (3.87 KB) Statistics
| Branch: | Tag: | Revision:
module Api
module V1
class ConfigTemplatesController < V1::BaseController
include Foreman::Renderer
include Foreman::Controller::ProvisioningTemplates
include Foreman::Controller::Parameters::ProvisioningTemplate

before_action :deprecated

before_action :find_resource, :only => %w{show update destroy}
before_action :handle_template_upload, :only => [:create, :update]
before_action :process_template_kind, :only => [:create, :update]

api :GET, "/config_templates/", "List templates"
param :search, String, :desc => "filter results"
param :order, String, :desc => "sort results"
param :page, String, :desc => "paginate results"
param :per_page, String, :desc => "number of entries per request"

def index
@config_templates = ProvisioningTemplate.
authorized(:view_provisioning_templates).
search_for(*search_options).paginate(paginate_options).
includes(:operatingsystems, :template_combinations, :template_kind)
end

api :GET, "/config_templates/:id", "Show template details"
param :id, :identifier, :required => true

def show
end

api :POST, "/config_templates/", "Create a template"
param :config_template, Hash, :required => true do
param :name, String, :required => true, :desc => "template name"
param :template, String, :required => true
param :snippet, :bool, :allow_nil => true
param :audit_comment, String, :allow_nil => true
param :template_kind_id, :number, :allow_nil => true, :desc => "not relevant for snippet"
param :template_combinations_attributes, Array,
:desc => "Array of template combinations (hostgroup_id, environment_id)"
param :operatingsystem_ids, Array, :desc => "Array of operating systems ID to associate the template with"
end

def create
@config_template = ProvisioningTemplate.new(provisioning_template_params)
process_response @config_template.save
end

api :PUT, "/config_templates/:id", "Update a template"
param :id, :identifier, :required => true
param :config_template, Hash, :required => true do
param :name, String, :desc => "template name"
param :template, String
param :snippet, :bool
param :audit_comment, String, :allow_nil => true
param :template_kind_id, :number, :allow_nil => true, :desc => "not relevant for snippet"
param :template_combinations_attributes, Array, :desc => "Array of template combinations (hostgroup_id, environment_id)"
param :operatingsystem_ids, Array, :desc => "Array of operating systems ID to associate the template with"
end

def update
process_response @config_template.update_attributes(provisioning_template_params)
end

api :GET, "/config_templates/revision"
param :version, String, :desc => "template version"

def revision
audit = Audit.authorized(:view_audit_logs).find(params[:version])
render :json => audit.revision.template
end

api :DELETE, "/config_templates/:id", "Delete a template"
param :id, :identifier, :required => true

def destroy
process_response @config_template.destroy
end

api :GET, "/config_templates/build_pxe_default", "Change the default PXE menu on all configured TFTP servers"

def build_pxe_default
status, msg = ProvisioningTemplate.authorized(:deploy_provisioning_templates).build_pxe_default(self)
render :json => msg, :status => status
end

private

def type_name_singular
@type_name_singular ||= resource_name
end

def resource_class
ProvisioningTemplate
end

def deprecated
Foreman::Deprecation.api_deprecation_warning("Config templates were renamed to provisioning templates")
end
end
end
end
(9-9/32)