Class: Puppet::Indirector::Couch

Inherits:
Terminus show all
Defined in:
lib/puppet/indirector/couch.rb

Direct Known Subclasses

Node::Facts::Couch

Constant Summary

Constants included from Util

Util::AbsolutePathPosix, Util::AbsolutePathWindows, Util::DEFAULT_POSIX_MODE, Util::DEFAULT_WINDOWS_MODE

Constants included from Util::POSIX

Util::POSIX::LOCALE_ENV_VARS, Util::POSIX::USER_ENV_VARS

Constants included from Util::SymbolicFileMode

Util::SymbolicFileMode::SetGIDBit, Util::SymbolicFileMode::SetUIDBit, Util::SymbolicFileMode::StickyBit, Util::SymbolicFileMode::SymbolicMode, Util::SymbolicFileMode::SymbolicSpecialToBit

Constants included from Util::Docs

Util::Docs::HEADER_LEVELS

Instance Attribute Summary

Attributes included from Util::Docs

#doc, #nodoc

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Terminus

abstract_terminus?, #allow_remote_requests?, const2name, #indirection, indirection_name, inherited, mark_as_abstract_terminus, #model, model, #name, name2const, register_terminus_class, terminus_class, terminus_classes, #terminus_type, #validate, #validate_key, #validate_model

Methods included from Util::InstanceLoader

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

Methods included from Util

absolute_path?, activerecord_version, benchmark, binread, chuser, classproxy, deterministic_rand, execfail, execpipe, execute, exit_on_fail, logmethods, memory, path_to_uri, pretty_backtrace, proxy, replace_file, safe_posix_fork, symbolizehash, thinmark, uri_to_path, which, withenv, withumask

Methods included from Util::POSIX

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

Methods included from Util::SymbolicFileMode

#normalize_symbolic_mode, #symbolic_mode_to_int, #valid_symbolic_mode?

Methods included from Util::Docs

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

Constructor Details

#initialize(*args) ⇒ Couch

Returns a new instance of Couch.



13
14
15
16
# File 'lib/puppet/indirector/couch.rb', line 13

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

Class Method Details

.dbObject

The CouchRest database instance. One database instance per Puppet runtime should be sufficient.



6
# File 'lib/puppet/indirector/couch.rb', line 6

def self.db; @db ||= CouchRest.database! Puppet[:couchdb_url] end

Instance Method Details

#dbObject



7
# File 'lib/puppet/indirector/couch.rb', line 7

def db; self.class.db end

#find(request) ⇒ Object



9
10
11
# File 'lib/puppet/indirector/couch.rb', line 9

def find(request)
  attributes_of get(request)
end

#save(request) ⇒ Object

Create or update the couchdb document with the request’s data hash.

Raises:

  • (ArgumentError)


20
21
22
23
# File 'lib/puppet/indirector/couch.rb', line 20

def save(request)
  raise ArgumentError, "PUT does not accept options" unless request.options.empty?
  update(request) || create(request)
end