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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
#
# Author:: John Keiser (<jkeiser@opscode.com>)
# Copyright:: Copyright (c) 2012 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 'openssl'
require 'open-uri'
require 'rubygems'
require 'timeout'
require 'stringio'
require 'rack'
require 'webrick'
require 'chef_zero'
require 'chef_zero/cookbook_data'
require 'chef_zero/rest_router'
require 'chef_zero/data_store/memory_store'
require 'chef_zero/version'
require 'chef_zero/endpoints/authenticate_user_endpoint'
require 'chef_zero/endpoints/actors_endpoint'
require 'chef_zero/endpoints/actor_endpoint'
require 'chef_zero/endpoints/cookbooks_endpoint'
require 'chef_zero/endpoints/cookbook_endpoint'
require 'chef_zero/endpoints/cookbook_version_endpoint'
require 'chef_zero/endpoints/data_bags_endpoint'
require 'chef_zero/endpoints/data_bag_endpoint'
require 'chef_zero/endpoints/data_bag_item_endpoint'
require 'chef_zero/endpoints/rest_list_endpoint'
require 'chef_zero/endpoints/environment_endpoint'
require 'chef_zero/endpoints/environment_cookbooks_endpoint'
require 'chef_zero/endpoints/environment_cookbook_endpoint'
require 'chef_zero/endpoints/environment_cookbook_versions_endpoint'
require 'chef_zero/endpoints/environment_nodes_endpoint'
require 'chef_zero/endpoints/environment_recipes_endpoint'
require 'chef_zero/endpoints/environment_role_endpoint'
require 'chef_zero/endpoints/node_endpoint'
require 'chef_zero/endpoints/principal_endpoint'
require 'chef_zero/endpoints/role_endpoint'
require 'chef_zero/endpoints/role_environments_endpoint'
require 'chef_zero/endpoints/sandboxes_endpoint'
require 'chef_zero/endpoints/sandbox_endpoint'
require 'chef_zero/endpoints/searches_endpoint'
require 'chef_zero/endpoints/search_endpoint'
require 'chef_zero/endpoints/file_store_file_endpoint'
require 'chef_zero/endpoints/not_found_endpoint'
module ChefZero
class Server
DEFAULT_OPTIONS = {
:host => '127.0.0.1',
:port => 8889,
:log_level => :info,
:generate_real_keys => true,
:multi_org => true
}.freeze
def initialize(options = {})
@options = DEFAULT_OPTIONS.merge(options)
@options.freeze
ChefZero::Log.level = @options[:log_level].to_sym
end
# @return [Hash]
attr_reader :options
# @return [WEBrick::HTTPServer]
attr_reader :server
include ChefZero::Endpoints
#
# The URL for this Chef Zero server. If the given host is an IPV6 address,
# it is escaped in brackets according to RFC-2732.
#
# @see http://www.ietf.org/rfc/rfc2732.txt RFC-2732
#
# @return [String]
#
def url
@url ||= if @options[:host].include?(':')
"http://[#{@options[:host]}]:#{@options[:port]}"
else
"http://#{@options[:host]}:#{@options[:port]}"
end
end
#
# The data store for this server (default is in-memory).
#
# @return [~ChefZero::DataStore]
#
def data_store
@data_store ||= @options[:data_store] || DataStore::MemoryStore.new
end
#
# Boolean method to determine if real Public/Private keys should be
# generated.
#
# @return [Boolean]
# true if real keys should be created, false otherwise
#
def generate_real_keys?
!!@options[:generate_real_keys]
end
#
# Start a Chef Zero server in the current thread. You can stop this server
# by canceling the current thread.
#
# @param [Boolean] publish
# publish the server information to STDOUT
#
# @return [nil]
# this method will block the main thread until interrupted
#
def start(publish = true)
publish = publish[:publish] if publish.is_a?(Hash) # Legacy API
if publish
puts <<-EOH.gsub(/^ {10}/, '')
>> Starting Chef Zero (v#{ChefZero::VERSION})...
>> WEBrick (v#{WEBrick::VERSION}) on Rack (v#{Rack.release}) is listening at #{url}
>> Press CTRL+C to stop
EOH
end
thread = start_background
%w[INT TERM].each do |signal|
Signal.trap(signal) do
puts "\n>> Stopping Chef Zero..."
@server.shutdown
end
end
# Move the background process to the main thread
thread.join
end
#
# Start a Chef Zero server in a forked process. This method returns the PID
# to the forked process.
#
# @param [Fixnum] wait
# the number of seconds to wait for the server to start
#
# @return [Thread]
# the thread the background process is running in
#
def start_background(wait = 5)
@server = WEBrick::HTTPServer.new(
:BindAddress => @options[:host],
:Port => @options[:port],
:AccessLog => [],
:Logger => WEBrick::Log.new(StringIO.new, 7)
)
@server.mount('/', Rack::Handler::WEBrick, app)
@thread = Thread.new { @server.start }
@thread.abort_on_exception = true
@thread
end
#
# Boolean method to determine if the server is currently ready to accept
# requests. This method will attempt to make an HTTP request against the
# server. If this method returns true, you are safe to make a request.
#
# @return [Boolean]
# true if the server is accepting requests, false otherwise
#
def running?
if @server.nil? || @server.status != :Running
return false
end
uri = URI.join(url, 'cookbooks')
headers = { 'Accept' => 'application/json' }
Timeout.timeout(0.1) { !open(uri, headers).nil? }
rescue SocketError, Errno::ECONNREFUSED, Timeout::Error
false
end
#
# Gracefully stop the Chef Zero server.
#
# @param [Fixnum] wait
# the number of seconds to wait before raising force-terminating the
# server
#
def stop(wait = 5)
Timeout.timeout(wait) do
@server.shutdown
@thread.join(wait) if @thread
end
rescue Timeout::Error
if @thread
ChefZero::Log.error("Chef Zero did not stop within #{wait} seconds! Killing...")
@thread.kill
end
ensure
@server = nil
@thread = nil
end
def gen_key_pair
if generate_real_keys?
private_key = OpenSSL::PKey::RSA.new(2048)
public_key = private_key.public_key.to_s
public_key.sub!(/^-----BEGIN RSA PUBLIC KEY-----/, '-----BEGIN PUBLIC KEY-----')
public_key.sub!(/-----END RSA PUBLIC KEY-----(\s+)$/, '-----END PUBLIC KEY-----\1')
[private_key.to_s, public_key]
else
[PRIVATE_KEY, PUBLIC_KEY]
end
end
def on_request(&block)
@on_request_proc = block
end
def on_response(&block)
@on_response_proc = block
end
# Load data in a nice, friendly form:
# {
# 'roles' => {
# 'desert' => '{ "description": "Hot and dry"' },
# 'rainforest' => { "description" => 'Wet and humid' }
# },
# 'cookbooks' => {
# 'apache2-1.0.1' => {
# 'templates' => { 'default' => { 'blah.txt' => 'hi' }}
# 'recipes' => { 'default.rb' => 'template "blah.txt"' }
# 'metadata.rb' => 'depends "mysql"'
# },
# 'apache2-1.2.0' => {
# 'templates' => { 'default' => { 'blah.txt' => 'lo' }}
# 'recipes' => { 'default.rb' => 'template "blah.txt"' }
# 'metadata.rb' => 'depends "mysql"'
# },
# 'mysql' => {
# 'recipes' => { 'default.rb' => 'file { contents "hi" }' },
# 'metadata.rb' => 'version "1.0.0"'
# }
# }
# }
def load_data(contents, org_name = 'chef')
create_dir('organizations', org_name)
%w(clients environments nodes roles users).each do |data_type|
if contents[data_type]
dejsonize_children(contents[data_type]).each_pair do |name, data|
data_store.set(['organizations', org_name, data_type, name], data, :create)
end
end
end
if contents['data']
contents['data'].each_pair do |key, data_bag|
data_store.create_dir(['organizations', org_name, 'data'], key, :recursive)
dejsonize_children(data_bag).each do |item_name, item|
data_store.set(['organizations', org_name, 'data', key, item_name], item, :create)
end
end
end
if contents['cookbooks']
contents['cookbooks'].each_pair do |name_version, cookbook|
if name_version =~ /(.+)-(\d+\.\d+\.\d+)$/
cookbook_data = CookbookData.to_hash(cookbook, $1, $2)
else
cookbook_data = CookbookData.to_hash(cookbook, name_version)
end
raise "No version specified" if !cookbook_data[:version]
data_store.create_dir(['organizations', org_name, 'cookbooks'], cookbook_data[:cookbook_name], :recursive)
data_store.set(['organizations', org_name, 'cookbooks', cookbook_data[:cookbook_name], cookbook_data[:version]], JSON.pretty_generate(cookbook_data), :create)
cookbook_data.values.each do |files|
next unless files.is_a? Array
files.each do |file|
data_store.set(['organizations', org_name, 'file_store', 'checksums', file[:checksum]], get_file(cookbook, file[:path]), :create)
end
end
end
end
end
def clear_data
data_store.clear
end
def request_handler(&block)
@request_handler = block
end
def to_s
"#<#{self.class} #{url}>"
end
def inspect
"#<#{self.class} @url=#{url.inspect}>"
end
private
def open_source_endpoints
[
[ "/organizations/*/authenticate_user", AuthenticateUserEndpoint.new(self) ],
[ "/organizations/*/clients", ActorsEndpoint.new(self) ],
[ "/organizations/*/clients/*", ActorEndpoint.new(self) ],
[ "/organizations/*/cookbooks", CookbooksEndpoint.new(self) ],
[ "/organizations/*/cookbooks/*", CookbookEndpoint.new(self) ],
[ "/organizations/*/cookbooks/*/*", CookbookVersionEndpoint.new(self) ],
[ "/organizations/*/data", DataBagsEndpoint.new(self) ],
[ "/organizations/*/data/*", DataBagEndpoint.new(self) ],
[ "/organizations/*/data/*/*", DataBagItemEndpoint.new(self) ],
[ "/organizations/*/environments", RestListEndpoint.new(self) ],
[ "/organizations/*/environments/*", EnvironmentEndpoint.new(self) ],
[ "/organizations/*/environments/*/cookbooks", EnvironmentCookbooksEndpoint.new(self) ],
[ "/organizations/*/environments/*/cookbooks/*", EnvironmentCookbookEndpoint.new(self) ],
[ "/organizations/*/environments/*/cookbook_versions", EnvironmentCookbookVersionsEndpoint.new(self) ],
[ "/organizations/*/environments/*/nodes", EnvironmentNodesEndpoint.new(self) ],
[ "/organizations/*/environments/*/recipes", EnvironmentRecipesEndpoint.new(self) ],
[ "/organizations/*/environments/*/roles/*", EnvironmentRoleEndpoint.new(self) ],
[ "/organizations/*/nodes", RestListEndpoint.new(self) ],
[ "/organizations/*/nodes/*", NodeEndpoint.new(self) ],
[ "/organizations/*/principals/*", PrincipalEndpoint.new(self) ],
[ "/organizations/*/roles", RestListEndpoint.new(self) ],
[ "/organizations/*/roles/*", RoleEndpoint.new(self) ],
[ "/organizations/*/roles/*/environments", RoleEnvironmentsEndpoint.new(self) ],
[ "/organizations/*/roles/*/environments/*", EnvironmentRoleEndpoint.new(self) ],
[ "/organizations/*/sandboxes", SandboxesEndpoint.new(self) ],
[ "/organizations/*/sandboxes/*", SandboxEndpoint.new(self) ],
[ "/organizations/*/search", SearchesEndpoint.new(self) ],
[ "/organizations/*/search/*", SearchEndpoint.new(self) ],
[ "/organizations/*/users", ActorsEndpoint.new(self) ],
[ "/organizations/*/users/*", ActorEndpoint.new(self) ],
[ "/organizations/*/file_store/**", FileStoreFileEndpoint.new(self) ],
]
end
def app
router = RestRouter.new(open_source_endpoints)
router.not_found = NotFoundEndpoint.new
if options[:multi_org]
rest_base_prefix = []
else
rest_base_prefix = [ 'organizations', 'chef' ]
end
return proc do |env|
request = RestRequest.new(env, rest_base_prefix)
if @on_request_proc
@on_request_proc.call(request)
end
response = nil
if @request_handler
response = @request_handler.call(request)
end
unless response
response = router.call(request)
end
if @on_response_proc
@on_response_proc.call(request, response)
end
# Insert Server header
response[1]['Server'] = 'chef-zero'
# Puma expects the response to be an array (chunked responses). Since
# we are statically generating data, we won't ever have said chunked
# response, so fake it.
response[-1] = Array(response[-1])
response
end
end
def dejsonize_children(hash)
result = {}
hash.each_pair do |key, value|
result[key] = value.is_a?(Hash) ? JSON.pretty_generate(value) : value
end
result
end
def get_file(directory, path)
value = directory
path.split('/').each do |part|
value = value[part]
end
value
end
end
end
|