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
|
#
# 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 'rubygems'
require 'thin'
require 'openssl'
require 'chef_zero'
require 'chef_zero/rest_router'
require 'timeout'
require 'chef_zero/cookbook_data'
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
def initialize(options = {})
@options = options
options[:host] ||= '127.0.0.1'
options[:port] ||= 80
options[:generate_real_keys] = true if !options.has_key?(:generate_real_keys)
thin_options = {}
thin_options[:signals] = options[:signals] if options.has_key?(:signals)
@server = Thin::Server.new(options[:host], options[:port], make_app, thin_options)
@generate_real_keys = options[:generate_real_keys]
clear_data
end
attr_reader :server
attr_reader :data
attr_reader :options
attr_reader :generate_real_keys
include ChefZero::Endpoints
def url
"http://#{options[:host]}:#{options[:port]}"
end
def start
server.start
end
def start_background(timeout = 5)
@thread = Thread.new do
begin
server.start
rescue
@server_error = $!
Chef::Log.error("#{$!.message}\n#{$!.backtrace.join("\n")}")
end
end
Timeout::timeout(timeout) do
until server.running? || @server_error
sleep(0.01)
end
end
end
def running?
server.running?
end
def stop(timeout = 5)
begin
server.stop
@thread.join(timeout)
@thread = nil
rescue
Chef::Log.error("Server did not stop within #{timeout}s. Killing.")
@thread.kill if @thread
@thread = nil
end
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)
%w(clients environments nodes roles users).each do |data_type|
if contents[data_type]
data[data_type].merge!(dejsonize_children(contents[data_type]))
end
end
if contents['data']
new_data = {}
contents['data'].each_pair do |key, data_bag|
new_data[key] = dejsonize_children(data_bag)
end
data['data'].merge!(new_data)
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['cookbooks'][cookbook_data[:cookbook_name]] = {} if !data['cookbooks'][cookbook_data[:cookbook_name]]
data['cookbooks'][cookbook_data[:cookbook_name]][cookbook_data[:version]] = JSON.pretty_generate(cookbook_data)
cookbook_data.values.each do |files|
next unless files.is_a? Array
files.each do |file|
data['file_store'][file[:checksum]] = get_file(cookbook, file[:path])
end
end
end
end
end
def clear_data
@data = {
'clients' => {
'chef-validator' => '{ "validator": true }',
'chef-webui' => '{ "admin": true }'
},
'cookbooks' => {},
'data' => {},
'environments' => {
'_default' => '{ "description": "The default Chef environment" }'
},
'file_store' => {},
'nodes' => {},
'roles' => {},
'sandboxes' => {},
'users' => {
'admin' => '{ "admin": true }'
}
}
end
private
def make_app
router = RestRouter.new([
[ '/authenticate_user', AuthenticateUserEndpoint.new(self) ],
[ '/clients', ActorsEndpoint.new(self) ],
[ '/clients/*', ActorEndpoint.new(self) ],
[ '/cookbooks', CookbooksEndpoint.new(self) ],
[ '/cookbooks/*', CookbookEndpoint.new(self) ],
[ '/cookbooks/*/*', CookbookVersionEndpoint.new(self) ],
[ '/data', DataBagsEndpoint.new(self) ],
[ '/data/*', DataBagEndpoint.new(self) ],
[ '/data/*/*', DataBagItemEndpoint.new(self) ],
[ '/environments', RestListEndpoint.new(self) ],
[ '/environments/*', EnvironmentEndpoint.new(self) ],
[ '/environments/*/cookbooks', EnvironmentCookbooksEndpoint.new(self) ],
[ '/environments/*/cookbooks/*', EnvironmentCookbookEndpoint.new(self) ],
[ '/environments/*/cookbook_versions', EnvironmentCookbookVersionsEndpoint.new(self) ],
[ '/environments/*/nodes', EnvironmentNodesEndpoint.new(self) ],
[ '/environments/*/recipes', EnvironmentRecipesEndpoint.new(self) ],
[ '/environments/*/roles/*', EnvironmentRoleEndpoint.new(self) ],
[ '/nodes', RestListEndpoint.new(self) ],
[ '/nodes/*', NodeEndpoint.new(self) ],
[ '/principals/*', PrincipalEndpoint.new(self) ],
[ '/roles', RestListEndpoint.new(self) ],
[ '/roles/*', RoleEndpoint.new(self) ],
[ '/roles/*/environments', RoleEnvironmentsEndpoint.new(self) ],
[ '/roles/*/environments/*', EnvironmentRoleEndpoint.new(self) ],
[ '/sandboxes', SandboxesEndpoint.new(self) ],
[ '/sandboxes/*', SandboxEndpoint.new(self) ],
[ '/search', SearchesEndpoint.new(self) ],
[ '/search/*', SearchEndpoint.new(self) ],
[ '/users', ActorsEndpoint.new(self) ],
[ '/users/*', ActorEndpoint.new(self) ],
[ '/file_store/*', FileStoreFileEndpoint.new(self) ],
])
router.not_found = NotFoundEndpoint.new
return proc do |env|
request = RestRequest.new(env)
if @on_request_proc
@on_request_proc.call(request)
end
response = router.call(request)
if @on_response_proc
@on_response_proc.call(request, response)
end
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
|