Project

General

Profile

Download (5.46 KB) Statistics
| Branch: | Tag: | Revision:
class Hostgroup < ActiveRecord::Base
has_ancestry :orphan_strategy => :restrict
include Authorizable
include Taxonomix
include HostCommon
include NestedAncestryCommon

before_destroy EnsureNotUsedBy.new(:hosts)
has_many :hostgroup_classes, :dependent => :destroy
has_many :puppetclasses, :through => :hostgroup_classes
has_many :user_hostgroups, :dependent => :destroy
has_many :users, :through => :user_hostgroups
validates :name, :format => { :with => /\A(\S+\s?)+\Z/, :message => N_("can't be blank or contain trailing white spaces.")}
has_many :group_parameters, :dependent => :destroy, :foreign_key => :reference_id
accepts_nested_attributes_for :group_parameters, :reject_if => lambda { |a| a[:value].blank? }, :allow_destroy => true
has_many_hosts
has_many :template_combinations, :dependent => :destroy
has_many :config_templates, :through => :template_combinations
before_save :remove_duplicated_nested_class

alias_attribute :os, :operatingsystem
has_many :trends, :as => :trendable, :class_name => "ForemanTrend"

nested_attribute_for :compute_profile_id, :environment_id, :domain_id, :puppet_proxy_id, :puppet_ca_proxy_id,
:operatingsystem_id, :architecture_id, :medium_id, :ptable_id, :subnet_id

# with proc support, default_scope can no longer be chained
# include all default scoping here
default_scope lambda {
with_taxonomy_scope do
order("hostgroups.title")
end
}

scoped_search :on => :name, :complete_value => :true
scoped_search :in => :group_parameters, :on => :value, :on_key=> :name, :complete_value => true, :only_explicit => true, :rename => :params
scoped_search :in => :hosts, :on => :name, :complete_value => :true, :rename => "host"
scoped_search :in => :puppetclasses, :on => :name, :complete_value => true, :rename => :class, :operators => ['= ', '~ ']
scoped_search :in => :environment, :on => :name, :complete_value => :true, :rename => :environment
scoped_search :on => :id, :complete_value => :true
if SETTINGS[:unattended]
scoped_search :in => :architecture, :on => :name, :complete_value => :true, :rename => :architecture
scoped_search :in => :operatingsystem, :on => :name, :complete_value => true, :rename => :os
scoped_search :in => :medium, :on => :name, :complete_value => :true, :rename => "medium"
scoped_search :in => :config_templates, :on => :name, :complete_value => :true, :rename => "template"
end

# returns reports for hosts in the User's filter set
scope :my_groups, lambda {
user = User.current
unless user.admin?
conditions = sanitize_sql_for_conditions([" (hostgroups.id in (?))", user.hostgroup_ids])
conditions.sub!(/\s*\(\)\s*/, "")
conditions.sub!(/^(?:\(\))?\s?(?:and|or)\s*/, "")
conditions.sub!(/\(\s*(?:or|and)\s*\(/, "((")
end
where(conditions)
}

class Jail < Safemode::Jail
allow :name, :diskLayout, :puppetmaster, :operatingsystem, :architecture,
:environment, :ptable, :url_for_boot, :params, :puppetproxy
end

#TODO: add a method that returns the valid os for a hostgroup

def all_puppetclasses
classes
end

def hostgroup
self
end

def diskLayout
ptable.layout.gsub("\r","")
end

def classes
Puppetclass.joins(:hostgroups).where(:hostgroups => {:id => path_ids})
end

def puppetclass_ids
classes.reorder('').pluck('puppetclasses.id')
end

def inherited_lookup_value key
ancestors.reverse.each do |hg|
if(v = LookupValue.where(:lookup_key_id => key.id, :id => hg.lookup_values).first)
return v.value, hg.to_label
end
end if key.path_elements.flatten.include?("hostgroup") && Setting["host_group_matchers_inheritance"]
return key.default_value, _("Default value")
end

# returns self and parent parameters as a hash
def parameters include_source = false
hash = {}
ids = ancestor_ids
ids << id unless new_record? or self.frozen?
# need to pull out the hostgroups to ensure they are sorted first,
# otherwise we might be overwriting the hash in the wrong order.
groups = ids.size == 1 ? [self] : Hostgroup.includes(:group_parameters).sort_by_ancestry(Hostgroup.find(ids))
groups.each do |hg|
hg.group_parameters.each {|p| hash[p.name] = include_source ? {:value => p.value, :source => N_('hostgroup').to_sym} : p.value }
end
hash
end

def params
parameters = {}
# read common parameters
CommonParameter.scoped.each {|p| parameters.update Hash[p.name => p.value] }
# read OS parameters
operatingsystem.os_parameters.each {|p| parameters.update Hash[p.name => p.value] } if operatingsystem
# read group parameters only if a host belongs to a group
parameters.update self.parameters if hostgroup
parameters
end

# no need to store anything in the db if the password is our default
def root_pass
read_attribute(:root_pass) || nested_root_pw || Setting[:root_pass]
end

private

def lookup_value_match
"hostgroup=#{to_label}"
end

def nested_root_pw
Hostgroup.sort_by_ancestry(ancestors).reverse.each do |a|
return a.root_pass unless a.root_pass.blank?
end if ancestry.present?
nil
end

def remove_duplicated_nested_class
self.puppetclasses -= ancestors.map(&:puppetclasses).flatten
end

# overwrite method in taxonomix, since hostgroup has ancestry
def used_taxonomy_ids(type)
return [] if new_record? && parent_id.blank?
Host::Base.where(:hostgroup_id => self.path_ids).pluck(type).compact.uniq
end

end
(20-20/56)