Sha256: 628e96ed84e22bc1f0e8240691bef0120a946371077341e6d1d1623886d805b3

Contents?: true

Size: 1.91 KB

Versions: 232

Compression:

Stored size: 1.91 KB

Contents

require 'puppet/node/facts'
require 'puppet/indirector/yaml'

class Puppet::Node::Facts::Yaml < Puppet::Indirector::Yaml
  desc "Store client facts as flat files, serialized using YAML, or
    return deserialized facts from disk."

  def allow_remote_requests?
    false
  end

  def search(request)
    node_names = []
    Dir.glob(yaml_dir_path).each do |file|
      facts = YAML.load_file(file)
      node_names << facts.name if node_matches?(facts, request.options)
    end
    node_names
  end

  private

  # Return the path to a given node's file.
  def yaml_dir_path
    base = Puppet.run_mode.master? ? Puppet[:yamldir] : Puppet[:clientyamldir]
    File.join(base, 'facts', '*.yaml')
  end

  def node_matches?(facts, options)
    options.each do |key, value|
      type, name, operator = key.to_s.split(".")
      operator ||= 'eq'

      return false unless node_matches_option?(type, name, operator, value, facts)
    end
    return true
  end

  def node_matches_option?(type, name, operator, value, facts)
    case type
    when "meta"
      case name
      when "timestamp"
        compare_timestamp(operator, facts.timestamp, Time.parse(value))
      end
    when "facts"
      compare_facts(operator, facts.values[name], value)
    end
  end

  def compare_facts(operator, value1, value2)
    return false unless value1

    case operator
    when "eq"
      value1.to_s == value2.to_s
    when "le"
      value1.to_f <= value2.to_f
    when "ge"
      value1.to_f >= value2.to_f
    when "lt"
      value1.to_f < value2.to_f
    when "gt"
      value1.to_f > value2.to_f
    when "ne"
      value1.to_s != value2.to_s
    end
  end

  def compare_timestamp(operator, value1, value2)
    case operator
    when "eq"
      value1 == value2
    when "le"
      value1 <= value2
    when "ge"
      value1 >= value2
    when "lt"
      value1 < value2
    when "gt"
      value1 > value2
    when "ne"
      value1 != value2
    end
  end
end

Version data entries

232 entries across 232 versions & 3 rubygems

Version Path
puppet-retrospec-1.8.0 vendor/pup410/lib/puppet/indirector/facts/yaml.rb
puppet-retrospec-1.7.0 vendor/pup410/lib/puppet/indirector/facts/yaml.rb
puppet-5.3.7 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.7-x86-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.7-x64-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.7-universal-darwin lib/puppet/indirector/facts/yaml.rb
puppet-4.10.12 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.12-x86-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.12-x64-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.12-universal-darwin lib/puppet/indirector/facts/yaml.rb
puppet-4.10.11 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.11-x86-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.11-x64-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-4.10.11-universal-darwin lib/puppet/indirector/facts/yaml.rb
puppet-5.3.6 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.6-x86-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.6-x64-mingw32 lib/puppet/indirector/facts/yaml.rb
puppet-5.3.6-universal-darwin lib/puppet/indirector/facts/yaml.rb
bolt-0.17.1 vendored/puppet/lib/puppet/indirector/facts/yaml.rb
bolt-0.17.0 vendored/puppet/lib/puppet/indirector/facts/yaml.rb