Class: Chef::DataBag
- Inherits:
-
Object
- Object
- Chef::DataBag
- Defined in:
- lib/chef/data_bag.rb
Constant Summary collapse
- DESIGN_DOCUMENT =
{ "version" => 2, "language" => "javascript", "views" => { "all" => { "map" => <<-EOJS function(doc) { if (doc.chef_type == "data_bag") { emit(doc.name, doc); } } EOJS }, "all_id" => { "map" => <<-EOJS function(doc) { if (doc.chef_type == "data_bag") { emit(doc.name, doc.name); } } EOJS }, "entries" => { "map" => <<-EOJS function(doc) { if (doc.chef_type == "data_bag_item") { emit(doc.data_bag, doc.raw_data.id); } } EOJS } } }
Instance Attribute Summary collapse
-
#couchdb ⇒ Object
Returns the value of attribute couchdb.
-
#couchdb_id ⇒ Object
Returns the value of attribute couchdb_id.
-
#couchdb_rev ⇒ Object
Returns the value of attribute couchdb_rev.
Attributes included from IndexQueue::Indexable
Class Method Summary collapse
-
.cdb_list(inflate = false, couchdb = nil) ⇒ Object
List all the Chef::DataBag objects in the CouchDB.
-
.cdb_load(name, couchdb = nil) ⇒ Object
Load a Data Bag by name from CouchDB.
- .chef_server_rest ⇒ Object
-
.create_design_document(couchdb = nil) ⇒ Object
Set up our CouchDB design document.
-
.json_create(o) ⇒ Object
Create a Chef::Role from JSON.
- .list(inflate = false) ⇒ Object
-
.load(name) ⇒ Object
Load a Data Bag by name via the RESTful API.
Instance Method Summary collapse
-
#cdb_destroy ⇒ Object
Remove this Data Bag from CouchDB.
-
#cdb_save ⇒ Object
Save this Data Bag to the CouchDB.
- #chef_server_rest ⇒ Object
-
#create ⇒ Object
create a data bag via RESTful API.
- #destroy ⇒ Object
-
#initialize(couchdb = nil) ⇒ DataBag
constructor
Create a new Chef::DataBag.
-
#list(inflate = false) ⇒ Object
List all the items in this Bag from CouchDB The self.load method does this through the REST API.
- #name(arg = nil) ⇒ Object
-
#save ⇒ Object
Save the Data Bag via RESTful API.
- #to_hash ⇒ Object
-
#to_json(*a) ⇒ Object
Serialize this object as a hash.
-
#to_s ⇒ Object
As a string.
Methods included from IndexQueue::Indexable
#add_to_index, #delete_from_index, included, #index_object_type, #with_indexer_metadata
Methods included from Mixin::ParamsValidate
Methods included from Mixin::FromFile
Constructor Details
Instance Attribute Details
#couchdb ⇒ Object
Returns the value of attribute couchdb.
71 72 73 |
# File 'lib/chef/data_bag.rb', line 71 def couchdb @couchdb end |
#couchdb_id ⇒ Object
Returns the value of attribute couchdb_id.
71 72 73 |
# File 'lib/chef/data_bag.rb', line 71 def couchdb_id @couchdb_id end |
#couchdb_rev ⇒ Object
Returns the value of attribute couchdb_rev.
71 72 73 |
# File 'lib/chef/data_bag.rb', line 71 def couchdb_rev @couchdb_rev end |
Class Method Details
.cdb_list(inflate = false, couchdb = nil) ⇒ Object
List all the Chef::DataBag objects in the CouchDB. If inflate is set to true, you will get the full list of all Roles, fully inflated.
124 125 126 127 128 |
# File 'lib/chef/data_bag.rb', line 124 def self.cdb_list(inflate=false, couchdb=nil) rs = (couchdb || Chef::CouchDB.new).list("data_bags", inflate) lookup = (inflate ? "value" : "key") rs["rows"].collect { |r| r[lookup] } end |
.cdb_load(name, couchdb = nil) ⇒ Object
Load a Data Bag by name from CouchDB
143 144 145 |
# File 'lib/chef/data_bag.rb', line 143 def self.cdb_load(name, couchdb=nil) (couchdb || Chef::CouchDB.new).load("data_bag", name) end |
.chef_server_rest ⇒ Object
108 109 110 |
# File 'lib/chef/data_bag.rb', line 108 def self.chef_server_rest Chef::REST.new(Chef::Config[:chef_server_url]) end |
.create_design_document(couchdb = nil) ⇒ Object
Set up our CouchDB design document
204 205 206 |
# File 'lib/chef/data_bag.rb', line 204 def self.create_design_document(couchdb=nil) (couchdb || Chef::CouchDB.new).create_design_document("data_bags", DESIGN_DOCUMENT) end |
.json_create(o) ⇒ Object
Create a Chef::Role from JSON
113 114 115 116 117 118 119 120 |
# File 'lib/chef/data_bag.rb', line 113 def self.json_create(o) bag = new bag.name(o["name"]) bag.couchdb_rev = o["_rev"] if o.has_key?("_rev") bag.couchdb_id = o["_id"] if o.has_key?("_id") bag.index_id = bag.couchdb_id bag end |
.list(inflate = false) ⇒ Object
130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/chef/data_bag.rb', line 130 def self.list(inflate=false) if inflate # Can't search for all data bags like other objects, fall back to N+1 :( list(false).inject({}) do |response, bag_and_uri| response[bag_and_uri.first] = load(bag_and_uri.first) response end else Chef::REST.new(Chef::Config[:chef_server_url]).get_rest("data") end end |
Instance Method Details
#cdb_destroy ⇒ Object
Remove this Data Bag from CouchDB
153 154 155 156 157 158 159 160 161 |
# File 'lib/chef/data_bag.rb', line 153 def cdb_destroy removed = @couchdb.delete("data_bag", @name, @couchdb_rev) rs = @couchdb.get_view("data_bags", "entries", :include_docs => true, :startkey => @name, :endkey => @name) rs["rows"].each do |row| row["doc"].couchdb = couchdb row["doc"].cdb_destroy end removed end |
#cdb_save ⇒ Object
Save this Data Bag to the CouchDB
168 169 170 171 |
# File 'lib/chef/data_bag.rb', line 168 def cdb_save results = @couchdb.store("data_bag", @name, self) @couchdb_rev = results["rev"] end |
#chef_server_rest ⇒ Object
104 105 106 |
# File 'lib/chef/data_bag.rb', line 104 def chef_server_rest Chef::REST.new(Chef::Config[:chef_server_url]) end |
#create ⇒ Object
create a data bag via RESTful API
185 186 187 188 |
# File 'lib/chef/data_bag.rb', line 185 def create chef_server_rest.post_rest("data", self) self end |
#destroy ⇒ Object
163 164 165 |
# File 'lib/chef/data_bag.rb', line 163 def destroy chef_server_rest.delete_rest("data/#{@name}") end |
#list(inflate = false) ⇒ Object
List all the items in this Bag from CouchDB The self.load method does this through the REST API
192 193 194 195 196 197 198 199 200 201 |
# File 'lib/chef/data_bag.rb', line 192 def list(inflate=false) rs = nil if inflate rs = @couchdb.get_view("data_bags", "entries", :include_docs => true, :startkey => @name, :endkey => @name) rs["rows"].collect { |r| r["doc"] } else rs = @couchdb.get_view("data_bags", "entries", :startkey => @name, :endkey => @name) rs["rows"].collect { |r| r["value"] } end end |
#name(arg = nil) ⇒ Object
81 82 83 84 85 86 87 |
# File 'lib/chef/data_bag.rb', line 81 def name(arg=nil) set_or_return( :name, arg, :regex => /^[\-[:alnum:]_]+$/ ) end |
#save ⇒ Object
Save the Data Bag via RESTful API
174 175 176 177 178 179 180 181 182 |
# File 'lib/chef/data_bag.rb', line 174 def save begin chef_server_rest.put_rest("data/#{@name}", self) rescue Net::HTTPServerException => e raise e unless e.response.code == "404" chef_server_rest.post_rest("data", self) end self end |
#to_hash ⇒ Object
89 90 91 92 93 94 95 96 97 |
# File 'lib/chef/data_bag.rb', line 89 def to_hash result = { "name" => @name, 'json_class' => self.class.name, "chef_type" => "data_bag", } result["_rev"] = @couchdb_rev if @couchdb_rev result end |
#to_json(*a) ⇒ Object
Serialize this object as a hash
100 101 102 |
# File 'lib/chef/data_bag.rb', line 100 def to_json(*a) to_hash.to_json(*a) end |
#to_s ⇒ Object
As a string
209 210 211 |
# File 'lib/chef/data_bag.rb', line 209 def to_s "data_bag[#{@name}]" end |