Project

General

Profile

Download (1.61 KB) Statistics
| Branch: | Tag: | Revision:
class Environment < ActiveRecord::Base
include Taxonomix
include Authorizable

before_destroy EnsureNotUsedBy.new(:hosts)

has_many :environment_classes, :dependent => :destroy
has_many :puppetclasses, :through => :environment_classes, :uniq => true
has_many_hosts
has_many :hostgroups
has_many :trends, :as => :trendable, :class_name => "ForemanTrend"

validates :name, :uniqueness => true, :presence => true, :format => { :with => /\A[\w\d]+\Z/, :message => N_("is alphanumeric and cannot contain spaces") }
has_many :config_templates, :through => :template_combinations
has_many :template_combinations, :dependent => :destroy

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

scoped_search :on => :name, :complete_value => :true

def to_param
name
end

class << self

#TODO: this needs to be removed, as PuppetDOC generation no longer works
# if the manifests are not on the foreman host
# returns an hash of all puppet environments and their relative paths
def puppetEnvs proxy = nil

url = (proxy || SmartProxy.puppet_proxies.first).try(:url)
raise ::Foreman::Exception.new(N_("Can't find a valid Foreman Proxy with a Puppet feature")) if url.blank?
proxy = ProxyAPI::Puppet.new :url => url
HashWithIndifferentAccess[proxy.environments.map { |e|
[e, HashWithIndifferentAccess[proxy.classes(e).map {|k|
klass = k.keys.first
[klass, k[klass]["params"]]
}]]
}]
end

end

end
(11-11/56)