Class: Morpheus::Cli::VirtualImages

Inherits:
Object
  • Object
show all
Includes:
CliCommand
Defined in:
lib/morpheus/cli/virtual_images.rb

Instance Method Summary collapse

Methods included from CliCommand

#build_common_options, included

Constructor Details

#initializeVirtualImages

Returns a new instance of VirtualImages.



11
12
13
# File 'lib/morpheus/cli/virtual_images.rb', line 11

def initialize() 
	@appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance	
end

Instance Method Details

#add(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 245

def add(args)
	image_name = args[0]
	lb_type_name = nil
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus virtual-images add [lb] -t LB_TYPE"
		opts.on( '-t', '--type LB_TYPE', "Lb Type" ) do |val|
			lb_type_name = val
		end
		build_common_options(opts, options, [:options, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)
	connect(options)

	if lb_type_name.nil?
		puts "LB Type must be specified...\n#{optparse.banner}"
		exit 1
	end

	lb_type = find_lb_type_by_name(lb_type_name)
	if lb_type.nil?
		puts "LB Type not found!"
		exit 1
	end
	input_options = Morpheus::Cli::OptionTypes.prompt(lb_type['optionTypes'],options[:options],@api_client, options[:params])
	payload = {task: {name: image_name, taskOptions: input_options['taskOptions'], type: {code: lb_type['code'], id: lb_type['id']}}}
	begin
		json_response = @virtual_images_interface.create(payload)
		if options[:json]
			print JSON.pretty_generate(json_response)
		else
			print "\n", cyan, "LB #{json_response['virtualImage']['name']} created successfully", reset, "\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#connect(opts) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/morpheus/cli/virtual_images.rb', line 15

def connect(opts)
	if opts[:remote]
		@appliance_url = opts[:remote]
		@appliance_name = opts[:remote]
		@access_token = Morpheus::Cli::Credentials.new(@appliance_name,@appliance_url).request_credentials(opts)
	else
		@access_token = Morpheus::Cli::Credentials.new(@appliance_name,@appliance_url).request_credentials(opts)
	end
	@api_client = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url)		
	@virtual_images_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).virtual_images
	
	if @access_token.empty?
		print_red_alert "Invalid Credentials. Unable to acquire access token. Please verify your credentials and try again."
		exit 1
	end
end

#details(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 115

def details(args)
			image_name = args[0]
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus virtual-images details [name]"
		build_common_options(opts, options, [:json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)
	connect(options)
	begin
		lb = find_lb_by_name(image_name)

		exit 1 if lb.nil?
		lb_type = find_lb_type_by_name(lb['type']['name'])
		if options[:json]
				puts JSON.pretty_generate({task:task})
		else
			print "\n", cyan, "Lb #{lb['name']} - #{lb['type']['name']}\n\n"
			lb_type['optionTypes'].sort { |x,y| x['displayOrder'].to_i <=> y['displayOrder'].to_i }.each do |optionType|
				puts "  #{optionType['fieldLabel']} : " + (optionType['type'] == 'password' ? "#{task['taskOptions'][optionType['fieldName']] ? '************' : ''}" : "#{task['taskOptions'][optionType['fieldName']] || optionType['defaultValue']}")
			end
			print reset,"\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#handle(args) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/morpheus/cli/virtual_images.rb', line 33

def handle(args) 
	if args.empty?
		puts "\nUsage: morpheus virtual-images [list,add, update,remove, details, lb-types]\n\n"
		return 
	end

	case args[0]
		when 'list'
			list(args[1..-1])
		when 'add'
			add(args[1..-1])
		when 'update'
			# update(args[1..-1])	
		when 'details'
			details(args[1..-1])
		when 'remove'
			remove(args[1..-1])
		when 'virtual-image-types'
			virtual_image_types(args[1..-1])
		else
			puts "\nUsage: morpheus virtual-images [list,add, update,remove, details, lb-types]\n\n"
			exit 127
	end
end

#list(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 58

def list(args)
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus virtual-images list [-s] [-o] [-m] [-t]"
		opts.on( '-t', '--type IMAGE_TYPE', "Image Type" ) do |val|
			options[:imageType] = val.downcase
		end

		opts.on( '', '--all', "All Images" ) do |val|
			options[:filterType] = 'All'
		end
		opts.on( '', '--user', "User Images" ) do |val|
			options[:filterType] = 'User'
		end
		opts.on( '', '--system', "System Images" ) do |val|
			options[:filterType] = 'System'
		end
		build_common_options(opts, options, [:list, :json, :remote])
	end
	optparse.parse(args)
	connect(options)
	begin
		params = {}
		[:phrase, :offset, :max, :sort, :direction].each do |k|
			params[k] = options[k] unless options[k].nil?
		end
		if options[:imageType]
			params[:imageType] = options[:imageType]
		end
		if options[:filterType]
			params[:filterType] = options[:filterType]
		end
		json_response = @virtual_images_interface.get(params)
		if options[:json]
				print JSON.pretty_generate(json_response)
		else
			images = json_response['virtualImages']
			print "\n" ,cyan, bold, "Morpheus Virtual Images\n","=======================", reset, "\n\n"
			if images.empty?
				puts yellow,"No virtual images currently exist.",reset
			else
				print cyan
				image_table_data = images.collect do |image|
					{name: image['name'], id: image['id'], type: image['imageType'].upcase, source: image['userUploaded'] ? "#{green}UPLOADED#{cyan}" : (image['systemImage'] ? 'SYSTEM' : "#{white}SYNCED#{cyan}"), storage: !image['storageProvider'].nil? ? image['storageProvider']['name'] : 'Default', size: image['rawSize'].nil? ? 'Unknown' : "#{Filesize.from("#{image['rawSize']} B").pretty}"}
				end
				tp image_table_data, :id, :name, :type, :storage, :size, :source
			end
			print reset,"\n\n"
		end
		
		
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#remove(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 288

def remove(args)
	image_name = args[0]
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus virtual-images remove [name]"
		build_common_options(opts, options, [:auto_confirm, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)
	connect(options)
	begin
		image = find_image_by_name(image_name)
		exit 1 if image.nil?
		unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the virtual image #{image['name']}?")
			exit
		end
		json_response = @virtual_images_interface.destroy(image['id'])
		if options[:json]
				print JSON.pretty_generate(json_response)
		else
			print "\n", cyan, "Virtual Image #{image['name']} removed", reset, "\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#update(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 148

def update(args)
	image_name = args[0]
	options = {}
	 = nil
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus tasks update [task] [options]"
		build_common_options(opts, options, [:options, :json, :remote])
	end
	if args.count < 1
		puts "\n#{optparse.banner}\n\n"
		exit 1
	end
	optparse.parse(args)

	connect(options)
	
	begin


		task = find_task_by_name_or_code_or_id(image_name)
		exit 1 if task.nil?
		lb_type = find_lb_type_by_name(task['type']['name'])

		#params = Morpheus::Cli::OptionTypes.prompt(add_user_option_types, options[:options], @api_client, options[:params]) # options[:params] is mysterious
		params = options[:options] || {}

		if params.empty?
			puts "\n#{optparse.banner}\n\n"
			option_lines = update_task_option_types(lb_type).collect {|it| "\t-O #{it['fieldContext'] ? (it['fieldContext'] + '.') : ''}#{it['fieldName']}=\"value\"" }.join("\n")
			puts "\nAvailable Options:\n#{option_lines}\n\n"
			exit 1
		end

		#puts "parsed params is : #{params.inspect}"
		task_keys = ['name']
		changes_payload = (params.select {|k,v| task_keys.include?(k) })
		task_payload = task
		if changes_payload
			task_payload.merge!(changes_payload)
		end
		puts params
		if params['taskOptions']
			task_payload['taskOptions'].merge!(params['taskOptions'])
		end

		request_payload = {task: task_payload}
		response = @virtual_images_interface.update(task['id'], request_payload)
		if options[:json]
			print JSON.pretty_generate(json_response)
			if !response['success']
				exit 1
			end
		else
			print "\n", cyan, "Task #{response['task']['name']} updated", reset, "\n\n"
		end
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end

#virtual_image_types(args) ⇒ Object



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
# File 'lib/morpheus/cli/virtual_images.rb', line 210

def virtual_image_types(args)
	options = {}
	optparse = OptionParser.new do|opts|
		opts.banner = "Usage: morpheus virtual-images lb-types"
		build_common_options(opts, options, [:json, :remote])
	end
	optparse.parse(args)
	connect(options)
	begin
		json_response = @virtual_images_interface.load_balancer_types()
		if options[:json]
				print JSON.pretty_generate(json_response)
		else
			lb_types = json_response['virtualImageTypes']
			print "\n" ,cyan, bold, "Morpheus Virtual Image Types\n","============================", reset, "\n\n"
			if lb_types.nil? || lb_types.empty?
				puts yellow,"No image types currently exist on this appliance. This could be a seed issue.",reset
			else
				print cyan
				lb_table_data = lb_types.collect do |lb_type|
					{name: lb_type['name'], id: lb_type['id'], code: lb_type['code']}
				end
				tp lb_table_data, :id, :name, :code
			end

			print reset,"\n\n"
		end
		
		
	rescue RestClient::Exception => e
		print_rest_exception(e, options)
		exit 1
	end
end