Class: Puppet::Node::Facts::InventoryActiveRecord

Inherits:
Indirector::ActiveRecord show all
Defined in:
lib/puppet/indirector/facts/inventory_active_record.rb

Instance Attribute Summary

Attributes included from Util::Docs

#doc, #nodoc

Instance Method Summary collapse

Methods inherited from Indirector::ActiveRecord

#ar_model, #initialize, use_ar_model

Methods inherited from Indirector::Terminus

abstract_terminus?, const2name, #indirection, indirection_name, inherited, #initialize, mark_as_abstract_terminus, #model, model, #name, name2const, register_terminus_class, terminus_class, terminus_classes, #terminus_type

Methods included from Util::InstanceLoader

#instance_docs, #instance_hash, #instance_load, #instance_loader, #instance_loading?, #loaded_instance, #loaded_instances

Methods included from Util

activerecord_version, benchmark, chuser, classproxy, #execfail, #execpipe, execute, logmethods, memory, proxy, recmkdir, secure_open, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, which, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Methods included from Util::Docs

#desc, #dochook, #doctable, #nodoc?, #pad, scrub

Constructor Details

This class inherits a constructor from Puppet::Indirector::ActiveRecord

Instance Method Details

#find(request) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/puppet/indirector/facts/inventory_active_record.rb', line 7

def find(request)
  node = Puppet::Rails::InventoryNode.find_by_name(request.key)
  return nil unless node
  facts = Puppet::Node::Facts.new(node.name, node.facts_to_hash)
  facts.timestamp = node.timestamp
  facts
end

#save(request) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/puppet/indirector/facts/inventory_active_record.rb', line 15

def save(request)
  facts = request.instance
  node = Puppet::Rails::InventoryNode.find_by_name(request.key) || Puppet::Rails::InventoryNode.create(:name => request.key, :timestamp => facts.timestamp)
  node.timestamp = facts.timestamp

  ActiveRecord::Base.transaction do
    Puppet::Rails::InventoryFact.delete_all(:node_id => node.id)
    # We don't want to save internal values as facts, because those are
    # metadata that belong on the node
    facts.values.each do |name,value|
      next if name.to_s =~ /^_/
      node.facts.build(:name => name, :value => value)
    end
    node.save
  end
end

#search(request) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/puppet/indirector/facts/inventory_active_record.rb', line 32

def search(request)
  return [] unless request.options
  matching_nodes = []
  fact_names = []
  fact_filters = Hash.new {|h,k| h[k] = []}
  meta_filters = Hash.new {|h,k| h[k] = []}
  request.options.each do |key,value|
    type, name, operator = key.to_s.split(".")
    operator ||= "eq"
    if type == "facts"
      fact_filters[operator] << [name,value]
    elsif type == "meta" and name == "timestamp"
      meta_filters[operator] << [name,value]
    end
  end

  matching_nodes = nodes_matching_fact_filters(fact_filters) + nodes_matching_meta_filters(meta_filters)

  # to_a because [].inject == nil
  matching_nodes.inject {|nodes,this_set| nodes & this_set}.to_a.sort
end