1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
|
#
# Author:: Adam Jacob (<adam@opscode.com>)
# Author:: Nuo Yan (<nuo@opscode.com>)
# Author:: Christopher Brown (<cb@opscode.com>)
# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'chef/config'
require 'chef/mixin/params_validate'
require 'chef/mixin/from_file'
require 'chef/couchdb'
require 'chef/run_list'
require 'chef/index_queue'
require 'extlib'
require 'json'
class Chef
class Role
include Chef::Mixin::FromFile
include Chef::Mixin::ParamsValidate
include Chef::IndexQueue::Indexable
DESIGN_DOCUMENT = {
"version" => 6,
"language" => "javascript",
"views" => {
"all" => {
"map" => <<-EOJS
function(doc) {
if (doc.chef_type == "role") {
emit(doc.name, doc);
}
}
EOJS
},
"all_id" => {
"map" => <<-EOJS
function(doc) {
if (doc.chef_type == "role") {
emit(doc.name, doc.name);
}
}
EOJS
}
}
}
attr_accessor :couchdb_rev, :couchdb
attr_reader :couchdb_id
# Create a new Chef::Role object.
def initialize(couchdb=nil)
@name = ''
@description = ''
@default_attributes = Mash.new
@override_attributes = Mash.new
@run_list = Chef::RunList.new
@couchdb_rev = nil
@couchdb_id = nil
@couchdb = couchdb || Chef::CouchDB.new
end
def couchdb_id=(value)
@couchdb_id = value
self.index_id = value
end
def chef_server_rest
Chef::REST.new(Chef::Config[:chef_server_url])
end
def self.chef_server_rest
Chef::REST.new(Chef::Config[:chef_server_url])
end
def name(arg=nil)
set_or_return(
:name,
arg,
:regex => /^[\-[:alnum:]_]+$/
)
end
def description(arg=nil)
set_or_return(
:description,
arg,
:kind_of => String
)
end
def run_list(*args)
(args.length > 0) ? @run_list.reset!(args) : @run_list
end
alias_method :recipes, :run_list
# def recipes(*args)
# Chef::Log.warn "Chef::Role#recipes method is deprecated. Please use Chef::Role#run_list"
# run_list(*args)
# end
def default_attributes(arg=nil)
set_or_return(
:default_attributes,
arg,
:kind_of => Hash
)
end
def override_attributes(arg=nil)
set_or_return(
:override_attributes,
arg,
:kind_of => Hash
)
end
def to_hash
result = {
"name" => @name,
"description" => @description,
'json_class' => self.class.name,
"default_attributes" => @default_attributes,
"override_attributes" => @override_attributes,
"chef_type" => "role",
"run_list" => @run_list.run_list
}
result["_rev"] = couchdb_rev if couchdb_rev
result
end
# Serialize this object as a hash
def to_json(*a)
to_hash.to_json(*a)
end
# Create a Chef::Role from JSON
def self.json_create(o)
role = new
role.name(o["name"])
role.description(o["description"])
role.default_attributes(o["default_attributes"])
role.override_attributes(o["override_attributes"])
role.run_list(if o.has_key?("run_list")
o["run_list"]
else
o["recipes"]
end)
role.couchdb_rev = o["_rev"] if o.has_key?("_rev")
role.index_id = role.couchdb_id
role.couchdb_id = o["_id"] if o.has_key?("_id")
role
end
# List all the Chef::Role objects in the CouchDB. If inflate is set to true, you will get
# the full list of all Roles, fully inflated.
def self.cdb_list(inflate=false, couchdb=nil)
rs = (couchdb || Chef::CouchDB.new).list("roles", inflate)
lookup = (inflate ? "value" : "key")
rs["rows"].collect { |r| r[lookup] }
end
# Get the list of all roles from the API.
def self.list(inflate=false)
if inflate
response = Hash.new
Chef::Search::Query.new.search(:role) do |n|
response[n.name] = n unless n.nil?
end
response
else
chef_server_rest.get_rest("roles")
end
end
# Load a role by name from CouchDB
def self.cdb_load(name, couchdb=nil)
(couchdb || Chef::CouchDB.new).load("role", name)
end
# Load a role by name from the API
def self.load(name)
chef_server_rest.get_rest("roles/#{name}")
end
def self.exists?(rolename, couchdb)
begin
self.cdb_load(rolename, couchdb)
rescue Chef::Exceptions::CouchDBNotFound
nil
end
end
# Remove this role from the CouchDB
def cdb_destroy
couchdb.delete("role", @name, couchdb_rev)
rs = couchdb.get_view("nodes", "by_run_list", :startkey => "role[#{@name}]", :endkey => "role[#{@name}]", :include_docs => true)
rs["rows"].each do |row|
node = row["doc"]
node.run_list.remove("role[#{@name}]")
node.cdb_save
end
end
# Remove this role via the REST API
def destroy
chef_server_rest.delete_rest("roles/#{@name}")
Chef::Node.list.each do |node|
n = Chef::Node.load(node[0])
n.run_list.remove("role[#{@name}]")
n.save
end
end
# Save this role to the CouchDB
def cdb_save
self.couchdb_rev = couchdb.store("role", @name, self)["rev"]
end
# Save this role via the REST API
def save
begin
chef_server_rest.put_rest("roles/#{@name}", self)
rescue Net::HTTPServerException => e
raise e unless e.response.code == "404"
chef_server_rest.post_rest("roles", self)
end
self
end
# Create the role via the REST API
def create
chef_server_rest.post_rest("roles", self)
self
end
# Set up our CouchDB design document
def self.create_design_document(couchdb=nil)
(couchdb || Chef::CouchDB.new).create_design_document("roles", DESIGN_DOCUMENT)
end
# As a string
def to_s
"role[#{@name}]"
end
# Load a role from disk - prefers to load the JSON, but will happily load
# the raw rb files as well.
def self.from_disk(name, force=nil)
js_file = File.join(Chef::Config[:role_path], "#{name}.json")
rb_file = File.join(Chef::Config[:role_path], "#{name}.rb")
if File.exists?(js_file) || force == "json"
JSON.parse(IO.read(js_file))
elsif File.exists?(rb_file) || force == "ruby"
role = Chef::Role.new
role.name(name)
role.from_file(rb_file)
role
end
end
# Sync all the json roles with couchdb from disk
def self.sync_from_disk_to_couchdb
Dir[File.join(Chef::Config[:role_path], "*.json")].each do |role_file|
short_name = File.basename(role_file, ".json")
Chef::Log.warn("Loading #{short_name}")
r = Chef::Role.from_disk(short_name, "json")
begin
couch_role = Chef::Role.cdb_load(short_name)
r.couchdb_rev = couch_role.couchdb_rev
Chef::Log.debug("Replacing role #{short_name} with data from #{role_file}")
rescue Chef::Exceptions::CouchDBNotFound
Chef::Log.debug("Creating role #{short_name} with data from #{role_file}")
end
r.cdb_save
end
end
end
end
|