KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache
System : Linux cs317.bluehost.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : andertr9 ( 1047)
PHP Version : 8.2.18
Disable Function : NONE
Directory :  /usr/share/ruby/vendor_ruby/puppet/indirector/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/ruby/vendor_ruby/puppet/indirector/couch.rb
class Puppet::Indirector::Couch < Puppet::Indirector::Terminus

  # The CouchRest database instance. One database instance per Puppet runtime
  # should be sufficient.
  #
  def self.db; @db ||= CouchRest.database! Puppet[:couchdb_url] end
  def db; self.class.db end

  def find(request)
    attributes_of get(request)
  end

  def initialize(*args)
    raise "Couch terminus not supported without couchrest gem" unless Puppet.features.couchdb?
    super
  end

  # Create or update the couchdb document with the request's data hash.
  #
  def save(request)
    raise ArgumentError, "PUT does not accept options" unless request.options.empty?
    update(request) || create(request)
  end

  private

  # RKH:TODO: Do not depend on error handling, check if the document exists
  # first. (Does couchrest support this?)
  #
  def get(request)
    db.get(id_for(request))
  rescue RestClient::ResourceNotFound
    Puppet.debug "No couchdb document with id: #{id_for(request)}"
    return nil
  end

  def update(request)
    doc = get request
    return unless doc
    doc.merge!(hash_from(request))
    doc.save
    true
  end

  def create(request)
    db.save_doc hash_from(request)
  end

  # The attributes hash that is serialized to CouchDB as JSON. It includes
  # metadata that is used to help aggregate data in couchdb. Add
  # model-specific attributes in subclasses.
  #
  def hash_from(request)
    {
      "_id"         => id_for(request),
      "puppet_type" => document_type_for(request)
    }
  end

  # The couchdb response stripped of metadata, used to instantiate the model
  # instance that is returned by save.
  #
  def attributes_of(response)
    response && response.reject{|k,v| k =~ /^(_rev|puppet_)/ }
  end

  def document_type_for(request)
    request.indirection_name
  end

  # The id used to store the object in couchdb. Implemented in subclasses.
  #
  def id_for(request)
    raise NotImplementedError
  end

end


Anon7 - 2021