Project

General

Profile

Download (2.15 KB) Statistics
| Branch: | Tag: | Revision:
# This module extract repeating methods which handle host assoications of hostgroups, os etc
# Mainly used within the host and the hostgroup controllers

module Foreman::Controller::HostDetails

def architecture_selected
assign_parameter "architecture", "common/os_selection/"
end

def os_selected
assign_parameter "operatingsystem", "common/os_selection/"
end

def medium_selected
# Maybe this method can be folded into assign_parameter
render :partial => "common/os_selection/image_details", :locals => { :item => item_object }
end

def domain_selected
respond_to do |format|
format.html {assign_parameter "domain", "common/"}
format.json do
@organization = params[:organization_id].blank? ? nil : Organization.find(params[:organization_id])
@location = params[:location_id].blank? ? nil : Location.find(params[:location_id])
Taxonomy.as_taxonomy @organization, @location do
if (domain = Domain.find(params[:domain_id]))
render :json => domain.subnets
else
not_found
end
end
end
end
end

def use_image_selected
item = item_object
render :json => {:use_image => item.use_image, :image_file => item.image_file}
end

private
def assign_parameter name, root = ""
@organization = params[:organization_id] ? Organization.find(params[:organization_id]) : nil
@location = params[:location_id] ? Location.find(params[:location_id]) : nil
Taxonomy.as_taxonomy @organization, @location do
if params["#{name}_id"].to_i > 0 and eval("@#{name} = #{name.capitalize}.find(params['#{name}_id'])")
item = eval("@#{controller_name.singularize} || #{controller_name.singularize.capitalize}.new(params[:#{controller_name.singularize}])")
render :partial => root + name, :locals => { :item => item }
else
head(:not_found)
end
end
end

def item_name
controller_name.singularize
end

# Initiate a new object based on current context, e.g:
# @host = Host.new params[:host]
def item_object
name = item_name
eval("@#{name} = #{name.capitalize}.new params[:#{name}]")
end

end
(3-3/4)