Sha256: f7ca88d8857d32bf5336e52c95d46c9d6c541e934dad3df0bce5234371a9b39b

Contents?: true

Size: 944 Bytes

Versions: 12

Compression:

Stored size: 944 Bytes

Contents

require 'puppet/rails/inventory_fact'

class Puppet::Rails::InventoryNode < ::ActiveRecord::Base
  has_many :facts, :class_name => "Puppet::Rails::InventoryFact", :foreign_key => :node_id, :dependent => :delete_all

  if Puppet::Util.activerecord_version < 3.0
    # For backward compatibility, add the newer name to older implementations.
    ActiveRecord::NamedScope::ClassMethods.module_eval { alias :scope :named_scope }
  end

  scope :has_fact_with_value, lambda { |name,value|
    {
      :conditions => ["inventory_facts.name = ? AND inventory_facts.value = ?", name, value.to_s],
      :joins => :facts
    }
  }

  scope :has_fact_without_value, lambda { |name,value|
    {
      :conditions => ["inventory_facts.name = ? AND inventory_facts.value != ?", name, value.to_s],
      :joins => :facts
    }
  }

  def facts_to_hash
    facts.inject({}) do |fact_hash,fact|
      fact_hash.merge(fact.name => fact.value)
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
puppet-3.0.0 lib/puppet/rails/inventory_node.rb
puppet-3.0.0.rc8 lib/puppet/rails/inventory_node.rb
puppet-3.0.0.rc7 lib/puppet/rails/inventory_node.rb
librarian-puppet-0.9.4 vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/inventory_node.rb
puppet-3.0.0.rc5 lib/puppet/rails/inventory_node.rb
puppet-3.0.0.rc4 lib/puppet/rails/inventory_node.rb
puppet-2.7.19 lib/puppet/rails/inventory_node.rb
librarian-puppet-0.9.3 vendor/gems/ruby/1.8/gems/puppet-2.7.18/lib/puppet/rails/inventory_node.rb
puppet-2.7.18 lib/puppet/rails/inventory_node.rb
puppet-2.7.17 lib/puppet/rails/inventory_node.rb
puppet-2.7.16 lib/puppet/rails/inventory_node.rb
puppet-2.7.14 lib/puppet/rails/inventory_node.rb