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
|
# File 'lib/occi/bin/occi_opts.rb', line 17
def self.parse(args, test_env = false)
@@quiet = test_env
options = OpenStruct.new
options.debug = false
options.verbose = false
options.log = {}
options.log[:out] = STDERR
options.log[:level] = Occi::Log::WARN
options.filter = nil
options.dump_model = false
options.interactive = false
options.endpoint = "https://localhost:3300/"
options.auth = {}
options.auth[:type] = "none"
options.auth[:user_cert] = ENV['HOME'] + "/.globus/usercred.pem"
options.auth[:ca_path] = "/etc/grid-security/certificates"
options.auth[:username] = "anonymous"
options.auth[:ca_file] = nil
options.auth[:proxy_ca] = nil
options.output_format = :plain
options.mixins = nil
options.links = nil
options.attributes = nil
options.context_vars = nil
options.media_type = "text/plain,text/occi"
opts = OptionParser.new do |opts|
opts.banner = %{Usage: occi [OPTIONS]
Examples:
occi --interactive --endpoint https://localhost:3300/ --auth x509
occi --endpoint https://localhost:3300/ --action list --resource os_tpl --auth x509
occi --endpoint https://localhost:3300/ --action list --resource resource_tpl --auth x509
occi --endpoint https://localhost:3300/ --action describe --resource os_tpl#debian6 --auth x509
occi --endpoint https://localhost:3300/ --action create --resource compute --mixin os_tpl#debian6 --mixin resource_tpl#small --attributes title="My rOCCI VM" --auth x509
occi --endpoint https://localhost:3300/ --action delete --resource /compute/65sd4f654sf65g4-s5fg65sfg465sfg-sf65g46sf5g4sdfg --auth x509}
opts.separator ""
opts.separator "Options:"
opts.on("-i",
"--interactive",
"Run as an interactive client without additional arguments") do |interactive|
options.interactive = interactive
end
opts.on("-e",
"--endpoint URI",
String,
"OCCI server URI, defaults to '#{options.endpoint}'") do |endpoint|
options.endpoint = URI(endpoint).to_s
end
opts.on("-n",
"--auth METHOD",
AUTH_METHODS,
"Authentication method, defaults to '#{options.auth[:type]}'") do |auth|
options.auth[:type] = auth.to_s
end
opts.on("-u",
"--username USER",
String,
"Username for basic or digest authentication, defaults to '#{options.auth[:username]}'") do |username|
options.auth[:username] = username
end
opts.on("-p",
"--password PASSWORD",
String,
"Password for basic, digest and x509 authentication or an auth. token from OS Keystone") do |password|
options.auth[:password] = password
options.auth[:user_cert_password] = password
options.auth[:token] = password
end
opts.on("-c",
"--ca-path PATH",
String,
"Path to CA certificates directory, defaults to '#{options.auth[:ca_path]}'") do |ca_path|
raise ArgumentError, "Path specified in --ca-path is not a directory!" unless File.directory? ca_path
raise ArgumentError, "Path specified in --ca-path is not readable!" unless File.readable? ca_path
options.auth[:ca_path] = ca_path
end
opts.on("-f",
"--ca-file PATH",
String,
"Path to CA certificates in a file") do |ca_file|
raise ArgumentError, "File specified in --ca-file is not a file!" unless File.file? ca_file
raise ArgumentError, "File specified in --ca-file is not readable!" unless File.readable? ca_file
options.auth[:ca_file] = ca_file
end
opts.on("-F",
"--filter CATEGORY",
String,
"Category type identifier to filter categories from model, must be used together with the -m option") do |filter|
options.filter = filter
end
opts.on("-x",
"--user-cred FILE",
String,
"Path to user's x509 credentials, defaults to '#{options.auth[:user_cert]}'") do |user_cred|
raise ArgumentError, "File specified in --user-cred is not a file!" unless File.file? user_cred
raise ArgumentError, "File specified in --user-cred is not readable!" unless File.readable? user_cred
options.auth[:user_cert] = user_cred
end
opts.on("-X",
"--proxy-ca FILE",
String,
"Path to a file with GSI proxy's CA certificate(s)") do |proxy_ca|
raise ArgumentError, "File specified in --proxy-ca is not a file!" unless File.file? proxy_ca
raise ArgumentError, "File specified in --proxy-ca is not readable!" unless File.readable? proxy_ca
options.auth[:proxy_ca] = proxy_ca
end
opts.on("-y",
"--media-type MEDIA_TYPE",
MEDIA_TYPES,
"Media type for client <-> server communication, defaults to '#{options.media_type}'") do |media_type|
options.media_type = media_type
end
opts.on("-r",
"--resource RESOURCE",
String,
"Resource to be queried (e.g. network, compute, storage etc.), required") do |resource|
options.resource = resource
end
opts.on("-t",
"--attributes ATTRS",
Array,
"Comma separated attributes for new resources such as title=\"Name\", required") do |attributes|
options.attributes = {}
attributes.each do |attribute|
ary = /^(.+?)=(.+)$/.match(attribute).to_a.drop 1
raise ArgumentError, "Attributes must always contain ATTR=VALUE pairs!" if ary.length != 2
options.attributes[ary[0].to_sym] = ary[1]
end
end
opts.on("-T",
"--context CTX_VARS",
Array,
"Comma separated context variables for new compute resources such as SSH_KEY=\"ssh-rsa dfsdf...adfdf== user@localhost\"") do |context|
options.context_vars = {}
context.each do |ctx|
ary = /^(.+?)=(.+)$/.match(ctx).to_a.drop 1
raise ArgumentError, "Context variables must always contain ATTR=VALUE pairs!" if ary.length != 2
options.context_vars[ary[0].to_sym] = ary[1]
end
end
opts.on("-a",
"--action ACTION",
ACTIONS,
"Action to be performed on the resource, required") do |action|
options.action = action
end
opts.on("-M",
"--mixin NAME",
String,
"Type and name of the mixin as TYPE#NAME (e.g. os_tpl#monitoring, resource_tpl#medium)") do |mixin|
parts = mixin.split("#")
raise "Unknown mixin format! Use TYPE#NAME!" unless parts.length == 2
options.mixins = {} if options.mixins.nil?
options.mixins[parts[0]] = [] if options.mixins[parts[0]].nil?
options.mixins[parts[0]] << parts[1]
end
opts.on("-j",
"--link URI",
String,
"Link specified resource to the resource being created, only for action CREATE and resource COMPUTE") do |link|
link_relative_path = URI(link).path
raise ArgumentError, "Specified link URI is not valid!" unless link_relative_path.start_with? '/'
options.links = [] if options.links.nil?
options.links << link_relative_path
end
opts.on("-g",
"--trigger-action TRIGGER",
String,
"Action to be triggered on the resource") do |trigger_action|
options.trigger_action = trigger_action
end
opts.on("-l",
"--log-to OUTPUT",
LOG_OUTPUTS,
"Log to the specified device, defaults to 'STDERR'") do |log_to|
options.log[:out] = STDOUT if log_to == :stdout or log_to == :STDOUT
end
opts.on("-o",
"--output-format FORMAT",
Occi::Bin::ResourceOutputFactory.allowed_formats,
"Output format, defaults to human-readable 'plain'") do |output_format|
options.output_format = output_format
end
opts.on_tail("-m",
"--dump-model",
"Contact the endpoint and dump its model, cannot be used with the interactive mode") do |dump_model|
options.dump_model = dump_model
end
opts.on_tail("-d",
"--debug",
"Enable debugging messages") do |debug|
options.debug = debug
options.log[:level] = Occi::Log::DEBUG
end
opts.on_tail("-b",
"--verbose",
"Be more verbose, less intrusive than debug mode") do |verbose|
options.verbose = verbose
options.log[:level] = Occi::Log::INFO unless options.log[:level] == Occi::Log::DEBUG
end
opts.on_tail("-h",
"--help",
"Show this message") do
if @@quiet
exit true
else
puts opts
exit! true
end
end
opts.on_tail("-v",
"--version",
"Show version") do
if @@quiet
exit true
else
puts Occi::VERSION
exit! true
end
end
end
begin
opts.parse!(args)
rescue Exception => ex
if @@quiet
exit false
else
puts ex.message.capitalize
puts opts
exit!
end
end
check_restrictions options, opts
options
end
|